powerpc: wordcopy/memmove cleanup for ppc64
[glibc.git] / ChangeLog
blob89443945f891c2c2ea2558c5c473b08b621c453a
1 2015-02-09  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
3         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
4         Remove wordcopy-power6 obejct.
5         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c (__memmove_ppc):
6         Use local call for wordcopy and memcpy symbols.
7         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: Remove file.
8         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: Add default
9         implementation for loader.
10         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Remove file.
12         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
13         Remove wordcopy-power7 object.
14         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: Remove file.
15         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c
16         (_wordcopy_fwd_aligned): Remove POWER7 specialization.
17         (_wordcopy_fwd_dest_aligned): Likewise.
18         (_wordcopy_bwd_aligned): Likewise.
19         (_wordcopy_bwd_dest_aligned): Likewise.
21         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c (__bcopy_ppc):
22         Rewrite to call __memmove_ppc instead of include default
23         implementation.
25         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
26         Remove wide chars objects.
27         [wcsmbs]: New rule for wide char objects.
29 2015-02-09  Andreas Schwab  <schwab@suse.de>
31         [BZ #17912]
32         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
33         in terms of __O_DIRECTORY.
35 2015-02-08  Samuel Thibault  <samuel.thibault@ens-lyon.org>
37         * time/getdate.c: Include <stdbool.h>.
38         * sysdeps/gnu/unwind-resume.c [!PTR_MANGLE] (__libgcc_s_init): Do not
39         call PTR_MANGLE.
40         [!PTR_DEMANGLE] (_Unwind_Resume, __gcc_personality_v0): Do not call
41         PTR_DEMANGLE.
43 2015-02-07  Paul Eggert  <eggert@cs.ucla.edu>
45         Add ersatz _Static_assert on older C hosts
46         * misc/sys/cdefs.h (_Static_assert): Define a substitute, if on a
47         pre-C11 C platform that is not known to support _Static_assert.
49 2015-02-07  Richard Braun  <rbraun@sceen.net>
51         * hurd/hurd/signal.h (_hurd_critical_section_lock): Don't unlock
52         sigstate.
53         * sysdeps/mach/hurd/mmap.c (__mmap): Also handle PROT_NONE case.
55 2015-02-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
57         * sysdeps/pthread/aio_misc.c [!AIO_PRIO_DELTA_MAX]: Do not check
58         priority against unexistent AIO_PRIO_DELTA_MAX.
59         * misc/chflags.c (chflags): Set flags parameter type to unsigned long
60         instead of int.
61         * misc/fchflags.c (fchflags): Likewise.
62         * sysdeps/mach/hurd/chflags.c (chflags): Likewise.
63         * sysdeps/mach/hurd/fchflags.c (fchflags): Likewise.
64         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC] (UF_SETTABLE, UF_NODUMP,
65         UF_IMMUTABLE, UF_APPEND, UF_OPAQUE, UF_NOUNLINK, SF_SETTABLE,
66         SF_ARCHIVED, SF_IMMUTABLE, SF_APPEND, SF_NOUNLINK, SF_SNAPSHOT):
67         Declare macros.
68         [__USE_MISC] (chflags, fchflags): Declare functions.
69         * hurd/hurdselect.c (_hurd_select): In the poll case, do not return
70         EINVAL when nfds is greater than FD_SETSIZE.
71         * hurd/hurd/resource.h (MACH_PRIORITY_TO_NICE,
72         NICE_TO_MACH_PRIORITY): Align nice levels on Mach priorities from 5 to
73         45.
74         * hurd/hurdselect.c (_hurd_select): Pass MACH_RCV_INTERRUPT to
75         __mach_msg.  If that returns MACH_RCV_INTERRUPTED, set ERR to EINTR.
76         * hurd/hurdselect.c (_hurd_select): Remove unreachable check for
77         MACH_RCV_TIMED_OUT.
78         * hurd/hurd/signal.h (_hurd_self_sigstate,
79         _hurd_critical_section_lock, _hurd_critical_section_unlock):
80         Explicit casts from void *.
81         * sysdeps/mach/hurd/tls.h: Include <stdint.h> and <sysdep.h>.
82         * abi-tags: Rename gnu-gnu os into gnu.
84         [BZ #4719]
85         * sysdeps/mach/hurd/bits/ioctls.h (_IOT__IOTBASE_long, _IOT_char,
86         _IOT_short, _IOT_int, _IOT_long, _IOT__IOTBASE_int8_t,
87         _IOT__IOTBASE_uint8_t, _IOT__IOTBASE_int16_t, _IOT__IOTBASE_uint16_t,
88         _IOT__IOTBASE_int32_t, _IOT__IOTBASE_uint32_t, _IOT__IOTBASE_int64_t,
89         _IOT__IOTBASE_uint64_t, _IOT__IOTBASE_size_t, _IOT__IOTBASE_ssize_t,
90         _IOTBASE_unsigned, _IOTBASE_signed): Define macros.
92         [BZ #17944]
93         * hurd/hurdsocket.h: New file, defines _hurd_sun_path_dupa which
94         duplicates ADDR->sun_path with sockaddr LEN limitation.
95         * sysdeps/mach/hurd/connect.c: Include <string.h>
96         (__connect): Give result of _hurd_sun_path_dupa to name lookup.
97         * sysdeps/mach/hurd/sendmsg.c: Likewise.
98         * sysdeps/mach/hurd/sendto.c: Likewise.
99         * sysdeps/mach/hurd/bind.c: Call _hurd_sun_path_dupa instead of
100         implementing it by hand.
102 2015-02-06  Roland McGrath  <roland@hack.frob.com>
104         * sysdeps/arm/sysdep.h [!PROF] [ARCH_HAS_T2 && !PIC] (LDR_GLOBAL):
105         Use sfi_breg on ldr.
106         [!PROF] [ARCH_HAS_T2 && PIC && ARM_PCREL_MOVW_OK] (LDR_GLOBAL):
107         Likewise.
109         * nptl/tst-cancel25.c (tf2): Test for SIGCANCEL being blocked only if
110         it's defined.
111         * nptl/tst-signal7.c (do_test): Test SIGCANCEL only if it's defined.
112         Test SIGSETXID only if it's defined.
114         * nptl/tst-locale1.c (useless): Use SIGRTMIN only if it's defined.
116         * rt/tst-timer2.c (do_test): Don't initialize SIGEV.sigev_signo, which
117         will not be used.  Use NULL rather than 0 for .sigev_notify_attributes.
119         * nptl/tst-align2.c: Moved ...
120         * sysdeps/unix/sysv/linux/tst-align-clone.c: ... here.
121         * nptl/Makefile (tests): Remove tst-align2.
122         * sysdeps/unix/sysv/linux/Makefile
123         [$(subdir) = nptl] (tests): Add tst-align-clone.
124         * nptl/tst-getpid1.c: Moved ...
125         * sysdeps/unix/sysv/linux/tst-getpid1.c: ... here.
126         * nptl/tst-getpid2.c: Moved ...
127         * sysdeps/unix/sysv/linux/tst-getpid2.c: ... here.
128         * nptl/Makefile (tests): Move tst-getpid1 and tst-getpid2 ...
129         * sysdeps/unix/sysv/linux/Makefile
130         [$(subdir) = nptl] (tests): ... here.
131         * nptl/Makefile (tst-getpid2-ENV): Move variable ...
132         * sysdeps/unix/sysv/linux/Makefile
133         [$(subdir) = nptl] (tst-getpid2-ENV): ... here.
135         * nptl/tst-cleanup2.c (do_test): Use signal rather than sigaction.
136         Drop trailing \n from perror argument.  Use return rather than exit.
138         * nptl/tst-cancel20.c (do_test): Conditionalize SA_SIGINFO-using tests
139         on [SA_SIGINFO].
140         * nptl/tst-cancel21.c (do_test): Likewise.
141         * debug/tst-backtrace6.c: Include <signal.h> first thing.
142         Conditionalize inclusion of tst-backtrace5.c on [SA_SIGINFO].
143         [!SA_SIGINFO]: Make it a stub test.
145         * misc/tst-pselect.c (do_test): Don't set SA_NOCLDWAIT in sa_flags for
146         SIGCHLD; it's redundant with SIG_IGN as sa_handler.
148         * posix/tst-getlogin.c: Move to ...
149         * login/tst-getlogin.c: ... here.
150         * posix/Makefile (tests): Move tst-getlogin to ...
151         * login/Makefile (tests): ... here.
153         * libio/tst-atime.c (do_test): Move local variables SV and E
154         inside [ST_NOATIME] conditional.
156         * dirent/tst-fdopendir.c (O_NOATIME): If not defined, #define to 0.
158         * nptl/tst-kill5.c (do_test): Use INT_MAX rather than SIGRTMAX + 10.
160         * nptl/tst-join5.c: Drop #include <sys/syscall.h>.
161         (wait_code): New function replaces macro.
162         Call nanosleep rather than syscall.
164         * nptl/pt-system.c: Rewritten.  Put everything under
165         [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
166         Use IFUNC to redirect when possible.
168         * nptl/pt-longjmp.c: Rewritten.  Put everything under
169         [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
170         Use IFUNC to redirect when possible.
172         * nptl/pt-fork.c: Rewritten.  Put everything under
173         [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
174         Use IFUNC to redirect when possible.
175         * nptl/Versions (libpthread: GLIBC_2.22): New (empty) version set.
177         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Remove all
178         code under [!__ASSUME_FUTEX_CLOCK_REALTIME], since that is defined
179         unconditionally nowadays.  This included the only reference to
180         __vdso_clock_gettime that appears outside libc proper.
181         * sysdeps/unix/sysv/linux/x86_64/Versions (libc: GLIBC_PRIVATE):
182         Remove version set (containing only __vdso_clock_gettime).
183         * sysdeps/unix/sysv/linux/x86/libc-vdso.h (__vdso_clock_gettime):
184         Add attribute_hidden.
185         * sysdeps/unix/sysv/linux/i386/init-first.c (__vdso_clock_gettime):
186         Likewise.  Drop __attribute__ ((nocommon)), libc_hidden_proto, and
187         libc_hidden_data_def.
188         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
189         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
191         * inet/Versions (libc: GLIBC_2.0): Move getrpcbyname, getrpcbyname_r,
192         getrpcbynumber, getrpcbynumber_r, getrpcent, getrpcent_r, endrpcent,
193         setrpcent, and getrpcport to ...
194         * sunrpc/Versions (libc: GLIBC_2.0): ... here.
195         * inet/Versions (libc: GLIBC_2.1.2): Move getrpcbyname_r,
196         getrpcbynumber_r, and getrpcent_r to ...
197         * sunrpc/Versions (libc: GLIBC_2.1.2): ... this new set.
198         * inet/getrpcbyname.c: Moved ...
199         * sunrpc/getrpcbyname.c: ... here.
200         * inet/getrpcbyname_r.c: Moved ...
201         * sunrpc/getrpcbyname_r.c: ... here.
202         * inet/getrpcbynumber.c: Moved ...
203         * sunrpc/getrpcbynumber.c: ... here.
204         * inet/getrpcbynumber_r.c: Moved ...
205         * sunrpc/getrpcbynumber_r.c: ... here.
206         * inet/getrpcent.c: Moved ...
207         * sunrpc/getrpcent.c: ... here.
208         * inet/getrpcent_r.c: Moved ...
209         * sunrpc/getrpcent_r.c: ... here.
210         * inet/Makefile (routines): Move those to ...
211         * sunrpc/Makefile (routines): ... here.
212         * nss/Makefile (databases): Add key and rpc only if sunrpc appears in
213         the $(subdirs) list.
214         (CPPFLAGS-getent.c): New variable.  Pass -D option to set HAVE_SUNRPC
215         to 0 or 1, indicating whether sunrpc appears in the $(subdirs) list.
216         * nss/getent.c (print_rpc, rpc_keys): Conditionalize on [HAVE_SUNRPC].
217         (databases): Conditionalize rpc entry on [HAVE_SUNRPC].
219         * elf/Makefile (routines): Include $(all-dl-routines), not just
220         $(dl-routines).
221         (rtld-routines): Likewise.  Use = rather than :=.
222         * sysdeps/aarch64/Makefile [$(subdir) = elf]
223         (sysdep_routines, sysdep-rtld-routines): Don't add tlsdesc and
224         dl-tlsdesc to these; sysdep-dl-routines alone is enough.
225         * sysdeps/arm/Makefile: Likewise.
226         * sysdeps/i386/Makefile: Likewise.
227         * sysdeps/x86_64/Makefile: Likewise.
228         * sysdeps/hppa/Makefile [$(subdir) = elf]
229         (sysdep_routines, sysdep-rtld-routines): Don't add
230         $(sysdep-dl-routines) to these.
231         * sysdeps/ia64/Makefile: Likewise.
232         * sysdeps/unix/sysv/linux/ia64/Makefile: Likewise.
233         * sysdeps/unix/sysv/linux/aarch64/Makefile [$(subdir) = elf]
234         [$(build-shared) = yes] (sysdep_routines, sysdep-rtld-routines):
235         Don't add dl-static to these; sysdep-dl-routines alone is enough.
236         * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
237         * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
238         * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
239         * sysdeps/unix/sysv/linux/tile/Makefile: Likewise.
240         * sysdeps/powerpc/Makefile [$(subdir) = elf]
241         (sysdep_routines, sysdep-rtld-routines): Don't add dl-machine to
242         these; sysdep-dl-routines alone is enough.
244 2015-02-06  Joseph Myers  <joseph@codesourcery.com>
246         [BZ #17932]
247         * soft-fp/op-common.h (_FP_FMA): Set exponent of result in case
248         where multiplication results in zero and third argument is finite
249         and nonzero.
250         * math/auto-libm-test-in: Add more tests of fma.
251         * math/auto-libm-test-out: Regenerated.
253         * soft-fp/op-common.h (_FP_CMP_CHECK_DENORM): New macro.
254         (_FP_CMP_CHECK_FLUSH_ZERO): Likewise.
255         (_FP_CMP): Use_FP_CMP_CHECK_DENORM and _FP_CMP_CHECK_FLUSH_ZERO.
256         (_FP_CMP_EQ): Likewise.
257         (_FP_CMP_UNORD): Use _FP_CMP_CHECK_DENORM.
259         * soft-fp/op-common.h (FP_EXTEND): Rename to _FP_EXTEND_CNAN with
260         extra argument CHECK_NAN.  Redefine as wrapper around
261         _FP_EXTEND_CNAN.
263 2015-02-06  Carlos O'Donell  <carlos@systemhalted.org>
265         * version.h (RELEASE): Set to "stable".
266         (VERSION): Set to "2.21"
267         * include/features.h (__GLIBC_MINOR__): Set to 21.
269         * sysdeps/unix/sysv/linux/hppa/pthread.h: Sync with pthread.h.
271 2015-02-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
272             Paul Eggert  <eggert@cs.ucla.edu>
274         [BZ #16618]
275         * stdio-common/tst-sscanf.c (main): Test for buffer overflow.
276         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Compute needed
277         size in bytes. Store needed elements in wpmax. Use needed size
278         in bytes for extend_alloca.
280 2015-02-05  Carlos O'Donell  <carlos@systemhalted.org>
282         * manual/install.texi: Latest tested versions are GCC 4.9.2,
283         binutls 2.25, and texinfo 5.2.
284         * INSTALL: Regenerate.
285         * sysdeps/nios2/configure: Regenerate.
286         * sysdeps/unix/sysv/linux/nios2/configure: Regenerate.
287         * manual/contrib.texi: Update.
288         * po/be.po: Update.
289         * po/bg.po: Update.
290         * po/ca.po: Update.
291         * po/cs.po: Update.
292         * po/da.po: Update.
293         * po/de.po: Update.
294         * po/el.po: Update.
295         * po/eo.po: Update.
296         * po/es.po: Update.
297         * po/fi.po: Update.
298         * po/fr.po: Update.
299         * po/gl.po: Update.
300         * po/hr.po: Update.
301         * po/hu.po: Update.
302         * po/ia.po: Update.
303         * po/id.po: Update.
304         * po/it.po: Update.
305         * po/ja.po: Update.
306         * po/ko.po: Update.
307         * po/lt.po: Update.
308         * po/nb.po: Update.
309         * po/nl.po: Update.
310         * po/pl.po: Update.
311         * po/pt_BR.po: Update.
312         * po/ru.po: Update.
313         * po/rw.po: Update.
314         * po/sk.po: Update.
315         * po/sl.po: Update.
316         * po/sv.po: Update.
317         * po/tr.po: Update.
318         * po/uk.po: Update.
319         * po/vi.po: Update.
320         * po/zh_CN.po: Update.
321         * po/zh_TW.po: Update.
323         * sysdeps/hppa/Makefile (CFLAGS-dl-fptr.c): Add -Wno-error.
324         * sysdeps/hppa/bits/setjmp.h: Union is named __jmp_buf_internal_tag.
325         * sysdeps/hppa/dl-irel.h: Remove #warning.
326         * sysdeps/hppa/entry.h: Provide prototype for
327         __canonicalize_funcptr_for_compare and cast argument.
328         * sysdeps/hppa/fpu/fegetexcept.c (fegetexcept): Add semicolon.
329         * sysdeps/hppa/fpu/ftestexcept.c (fetestexcept): Likewise.
330         * sysdeps/hppa/sotruss-lib.c: New file.
331         * sysdeps/unix/sysv/linux/hppa/bits/atomic.h
332         (atomic_compare_and_exchange_val_acq): Use __typeof__.
333         (atomic_compare_and_exchange_bool_acq): Likewise.
334         * sysdeps/unix/sysv/linux/hppa/mmap.c: Use weak alias.
335         * sysdeps/unix/sysv/linux/hppa/pthread.h: Include pthread.h.
337         * sysdeps/unix/sysv/linux/hppa/syscall.S: Delete file.
338         * sysdeps/unix/sysv/linux/hppa/sysdep.c: Move syscall from here...
339         * sysdeps/unix/sysv/linux/hppa/syscall.c: ... to here.
341 2015-02-05  Chung-Lin Tang  <cltang@codesourcery.com>
343         * sysdeps/nios2/machine-gmon.h (NIOS2_MCOUNT_CALL): Correct name of
344         called function in non-PIC case.
346 2015-01-31  David S. Miller  <davem@davemloft.net>
348         * sysdeps/sparc/sparc32/bits/atomic.h
349         (__sparc32_atomic_do_unlock24): Put the memory barrier before the
350         unlock not after it.
351         (__v9_compare_and_exchange_val_32_acq): Use unions to avoid getting
352         volatile register usage warnings from the compiler.
354         * sysdeps/sparc/nptl/sem_init.c: Delete.
355         * sysdeps/sparc/nptl/sem_post.c: Delete.
356         * sysdeps/sparc/nptl/sem_timedwait.c: Delete.
357         * sysdeps/sparc/nptl/sem_wait.c: Delete.
358         * sysdeps/sparc/sparc32/sem_init.c: New file.
359         * sysdeps/sparc/sparc32/sem_waitcommon.c: New file.
360         * sysdeps/sparc/sparc32/sem_open.c: Generic nptl version with
361         padding explicitly initialized.
362         * sysdeps/sparc/sparc32/sem_post.c: Generic nptl version using
363         padding for in-semaphore spinlock.
364         * sysdeps/sparc/sparc32/sem_wait.c: Likewise.
365         * sysdeps/sparc/sparc32/sem_trywait.c: Delete.
366         * sysdeps/sparc/sparc32/sem_timedwait.c: Delete.
367         * sysdeps/sparc/sparc32/sparcv9/sem_init.c: New file.
368         * sysdeps/sparc/sparc32/sparcv9/sem_open.c: New file.
369         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: New file.
370         * sysdeps/sparc/sparc32/sparcv9/sem_waitcommon.c: New file.
371         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: Redirect to nptl
372         version.
373         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: Delete.
374         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Delete.
376 2015-01-30  H.J. Lu  <hongjiu.lu@intel.com>
378         [BZ #17801]
379         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
380         Set the bit_AVX_Fast_Unaligned_Load bit for AVX2.
381         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX_Fast_Unaligned_Load):
382         New.
383         (index_AVX_Fast_Unaligned_Load): Likewise.
384         (HAS_AVX_FAST_UNALIGNED_LOAD): Likewise.
385         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Check the
386         bit_AVX_Fast_Unaligned_Load bit instead of the bit_AVX_Usable bit.
387         * sysdeps/x86_64/multiarch/memcpy_chk.S (__memcpy_chk): Likewise.
388         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy): Likewise.
389         * sysdeps/x86_64/multiarch/mempcpy_chk.S (__mempcpy_chk): Likewise.
390         * sysdeps/x86_64/multiarch/memmove.c (__libc_memmove): Replace
391         HAS_AVX with HAS_AVX_FAST_UNALIGNED_LOAD.
392         * sysdeps/x86_64/multiarch/memmove_chk.c (__memmove_chk): Likewise.
394 2015-01-29  Andreas Schwab  <schwab@suse.de>
396         * sysdeps/nptl/allocrtsig.c: Include <signal.h>.
398 2015-01-29  Siddhesh Poyarekar <siddhesh@redhat.com>
400         [BZ #17892]
401         * nscd/nscd_stat.c (send_stats): Initialize DATA.
403 2015-01-28  Martin Sebor  <msebor@redhat.com>
405         * math/README.libm-test: Clarify. Add "How to read the test output."
407 2015-01-28  Chris Metcalf  <cmetcalf@ezchip.com>
409         * sysdeps/tile/tilegx/bits/atomic.h [!_LP64] (__HAVE_64B_ATOMICS):
410         Define to 0.
412 2015-01-28  Joseph Myers  <joseph@codesourcery.com>
414         * sysdeps/mips/bits/atomic.h [_MIPS_SIM == _ABIN32]
415         (__HAVE_64B_ATOMICS): Define to 0.
417 2015-01-28  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
419         [BZ #17885]
420         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Fix correct
421         value to set as new flag.
423         [BZ #16576]
424         * sysdeps/powerpc/fpu/math_private.h [__CPU_HAS_FSQRT]: Remove define
425         and use _ARCH_PPCSQ instead.
426         (__ieee754_sqrt): Likewise.
427         (__ieee754_sqrtf): Likewise.
428         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Build only if
429         _ARCH_PPCSQ is defined.
430         (__ieee754_sqrt): Use _ARCH_PPCSQ to select wheter to use hardware
431         fsqrt instruction.
432         * sysdeps/powerpc/fpu/e_sqrtf.c (__ieee754_sqrtf): Build only if
433         _ARCH_PPCSQ is defined.
434         (__ieee754_sqrtf): Use _ARCH_PPCSQ to select wheter to use hardware
435         fsqrts instruction.
436         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Remove file.
438 2015-01-27  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
440         * iconv/loop.c: Suppress array out of bound warning caused by GCC
441         bug (GCC BZ #64739).
443 2015-01-25  Andreas Schwab  <schwab@linux-m68k.org>
445         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (lll_futex_requeue):
446         Mark _retval as used.
447         (lll_futex_wake_unlock): Likewise.
448         (lll_futex_timed_wait_requeue_pi): Likewise.
450         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
451         (atomic_compare_and_exchange_val_acq): Use uint32_t for the
452         register variables.
454         * sysdeps/m68k/m680x0/fpu/fraiseexcpt.c (__feraiseexcept): Use
455         libm_hidden_def.
457         * sysdeps/m68k/bits/byteswap.h (__bswap_16, __bswap_32)
458         (__bswap_64): Mark as __always_inline.
460 2015-01-25  Bram  <bug_rh@spam.wizbit.be>
462         [BZ #15378]
463         * elf/dl-load.c (open_path): Avoid writing to 'env_path_list'
464         when none of the search directories exist.
466 2015-01-24  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
468         [BZ #17869]
469         * sysdeps/powerpc/powerpc64/power8/memset.S: Use power7 instead of
470         power8 in .machine directive.
472         [BZ #17868]
473         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Force value
474         set dependency from opd value.
476 2015-01-23  H.J. Lu  <hongjiu.lu@intel.com>
478         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
479         Treat model numbers 0x4a/0x4d/0x5a/0x5d as Intel Silvermont
480         architecture.
482 2015-01-23  H.J. Lu  <hongjiu.lu@intel.com>
484         [BZ #17870]
485         * nptl/sem_post.c (__new_sem_post): Replace unsigned long int
486         with uint64_t.
487         * nptl/sem_waitcommon.c (__sem_wait_cleanup): Replace 1UL with
488         (uint64_t) 1.
489         (__new_sem_wait_fast): Replace unsigned long with uint64_t.
490         (__new_sem_wait_slow): Replace unsigned long int with uint64_t.
491         Replace 1UL with (uint64_t) 1.
492         * sysdeps/nptl/internaltypes.h (new_sem): Replace unsigned long
493         int with uint64_t.
495 2015-01-23  Roland McGrath  <roland@hack.frob.com>
497         * inet/if_index.c (if_nameindex): Add missing libc_hidden_weak.
498         (if_freenameindex): Likewise.
500         * resource/getrlimit64.c: Add missing libc_hidden_def.
502 2015-01-22  Joseph Myers  <joseph@codesourcery.com>
504         * soft-fp/op-common.h (_FP_ADD_INTERNAL): Declare labels with
505         __label__.
506         (_FP_FMA): Likewise.
507         (_FP_TO_INT_ROUND): Likewise.
508         (_FP_FROM_INT): Likewise.
510 2015-01-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
512         [BZ #16418]
513         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
514         Make code racy and cancel safe.
516 2015-01-21  Carlos O'Donell  <carlos@redhat.com>
518         * sysdeps/arm/unwind-resume.h: Fix copyright year.
519         * dlfcn/tst-rec-dlopen.c: Fix incorrect copyright year and
520         attribution.
522         * pwd/tst-getpw.c: Rewrite.
524         [BZ #17702]
525         * dlfcn/Makefile (tests): Add tst-rec-dlopen.
526         (modules-names): Add moddummy1 and moddummy2.
527         ($(objpfx)tst-rec-dlopen): Define.
528         * dlfcn/moddummy1.c: New file.
529         * dlfcn/moddummy2.c: New file.
530         * dlfcn/tst-rec-dlopen.c: New file.
531         * elf/dl-cache.c (_dl_load_cache_lookup):
532         Return char*. Copy result with alloca/strcpy/strdup.
533         * elf/dl-load.c (_dl_map_object): _dl_load_cached_lookup
534         returns char*. Free cached. If not saving realname
535         free cached.
536         * elf/dl-open.c (dl_open_worker): Do not assert that
537         _r_debug->r_state is RT_CONSISTENT.
538         * sysdeps/generic/ldsodefs.h: _dl_load_cache_lookup
539         returns char*.
541 2015-01-21  Torvald Riegel  <triegel@redhat.com>
542             Carlos O'Donell  <carlos@redhat.com>
544         [BZ #12674]
545         * nptl/sem_waitcommon.c: New file.
546         * nptl/sem_wait.c: Include sem_waitcommon.c.
547         (__sem_wait_cleanup, do_futex_wait): Remove.
548         (__new_sem_wait): Adapt.
549         (__new_sem_trywait): New function.
550         (__old_sem_trywait): Moved here from nptl/sem_trywait.c.
551         * nptl/sem_timedwait.c: Include sem_waitcommon.c.
552         (__sem_wait_cleanup, do_futex_timed_wait): Remove.
553         (sem_timedwait): Adapt.
554         * nptl/sem_post.c (__new_sem_post): Adapt.
555         (futex_wake): New function.
556         (__old_sem_post): Add release MO fence.
557         * nptl/sem_open.c (sem_open): Adapt.
558         * nptl/sem_init.c (__new_sem_init): Adapt.
559         (futex_private_if_supported): New function.
560         * nptl/sem_getvalue.c (__new_sem_getvalue): Adapt.
561         (__old_sem_getvalue): Add using previous code.
562         * sysdeps/nptl/internaltypes.h: Adapt.
563         * nptl/tst-sem13.c (do_test): Adapt.
564         * nptl/tst-sem11.c (main): Adapt.
565         * nptl/sem_trywait.c: Remove.
566         * nptl/DESIGN-sem.txt: Remove.
567         * nptl/Makefile (libpthread-routines): Remove sem_trywait.
568         (gen-as-const-headers): Remove structsem.sym.
569         * nptl/structsem.sym: Remove.
570         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Remove.
571         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Remove.
572         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Remove.
573         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Remove.
574         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Remove.
575         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Remove.
576         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Remove.
577         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Remove.
578         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Remove.
579         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Remove.
580         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Remove.
581         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Remove.
582         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Remove.
583         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: Remove.
584         * sysdeps/unix/sysv/linux/sh/sem_post.S: Remove.
585         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Remove.
586         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Remove.
587         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Remove.
588         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Remove.
589         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Remove.
590         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Remove.
591         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Remove.
593 2015-01-20  Carlos O'Donell  <carlos@redhat.com>
595         * INSTALL: Regenerated.
597         * po/libc.pot: Regenerated.
599 2015-01-18  Chung-Lin Tang  <cltang@codesourcery.com>
600             Sandra Loosemore  <sandra@codesourcery.com>
601             Andrew Jenner  <andrew@codesourcery.com>
602             Joseph Myers  <joseph@codesourcery.com>
603             Nathan Sidwell  <nathan@codesourcery.com>
605         * NEWS: Mention new Nios II port.
606         * sysdeps/nios2/Implies: New file.
607         * sysdeps/nios2/Makefile: New file.
608         * sysdeps/nios2/Subdirs: New file.
609         * sysdeps/nios2/Versions: New file.
610         * sysdeps/nios2/__longjmp.S: New file.
611         * sysdeps/nios2/abort-instr.h: New file.
612         * sysdeps/nios2/backtrace.c: New file.
613         * sysdeps/nios2/bits/endian.h: New file.
614         * sysdeps/nios2/bits/fenv.h: New file.
615         * sysdeps/nios2/bits/link.h: New file.
616         * sysdeps/nios2/bits/setjmp.h: New file.
617         * sysdeps/nios2/bsd-_setjmp.S: New file.
618         * sysdeps/nios2/bsd-setjmp.S: New file.
619         * sysdeps/nios2/configure: New generated file.
620         * sysdeps/nios2/configure.ac: New file.
621         * sysdeps/nios2/crti.S: New file.
622         * sysdeps/nios2/crtn.S: New file.
623         * sysdeps/nios2/dl-init.c: New file.
624         * sysdeps/nios2/dl-machine.h: New file.
625         * sysdeps/nios2/dl-sysdep.h: New file.
626         * sysdeps/nios2/dl-tls.h: New file.
627         * sysdeps/nios2/dl-trampoline.S: New file.
628         * sysdeps/nios2/gccframe.h: New file.
629         * sysdeps/nios2/gmp-mparam.h: New file.
630         * sysdeps/nios2/jmpbuf-offsets.h: New file.
631         * sysdeps/nios2/jmpbuf-unwind.h: New file.
632         * sysdeps/nios2/ldsodefs.h: New file.
633         * sysdeps/nios2/libc-tls.c: New file.
634         * sysdeps/nios2/libm-test-ulps: New file.
635         * sysdeps/nios2/machine-gmon.h: New file.
636         * sysdeps/nios2/math-tests.h: New file.
637         * sysdeps/nios2/math_private.h: New file.
638         * sysdeps/nios2/memusage.h: New file.
639         * sysdeps/nios2/nptl/Makefile: New file.
640         * sysdeps/nios2/nptl/bits/pthreadtypes.h: New file.
641         * sysdeps/nios2/nptl/bits/semaphore.h: New file.
642         * sysdeps/nios2/nptl/pthread_spin_lock.c: New file.
643         * sysdeps/nios2/nptl/pthreaddef.h: New file.
644         * sysdeps/nios2/nptl/tcb-offsets.sym: New file.
645         * sysdeps/nios2/nptl/tls.h: New file.
646         * sysdeps/nios2/preconfigure: New file.
647         * sysdeps/nios2/s_fma.c: New file.
648         * sysdeps/nios2/s_fmaf.c: New file.
649         * sysdeps/nios2/setjmp.S: New file.
650         * sysdeps/nios2/sfp-machine.h: New file.
651         * sysdeps/nios2/sotruss-lib.c: New file.
652         * sysdeps/nios2/stackguard-macros.h: New file.
653         * sysdeps/nios2/stackinfo.h: New file.
654         * sysdeps/nios2/start.S: New file.
655         * sysdeps/nios2/sysdep.h: New file.
656         * sysdeps/nios2/tls-macros.h: New file.
657         * sysdeps/nios2/tst-audit.h: New file.
658         * sysdeps/unix/sysv/linux/nios2/Implies: New file.
659         * sysdeps/unix/sysv/linux/nios2/Makefile: New file.
660         * sysdeps/unix/sysv/linux/nios2/Versions: New file.
661         * sysdeps/unix/sysv/linux/nios2/arch-fork.h: New file.
662         * sysdeps/unix/sysv/linux/nios2/bits/atomic.h: New file.
663         * sysdeps/unix/sysv/linux/nios2/bits/mman.h: New file.
664         * sysdeps/unix/sysv/linux/nios2/cacheflush.c: New file.
665         * sysdeps/unix/sysv/linux/nios2/clone.S: New file.
666         * sysdeps/unix/sysv/linux/nios2/configure: New generated file.
667         * sysdeps/unix/sysv/linux/nios2/configure.ac: New file.
668         * sysdeps/unix/sysv/linux/nios2/getcontext.S: New file.
669         * sysdeps/unix/sysv/linux/nios2/kernel-features.h: New file.
670         * sysdeps/unix/sysv/linux/nios2/kernel_rt_sigframe.h: New file.
671         * sysdeps/unix/sysv/linux/nios2/makecontext.c: New file.
672         * sysdeps/unix/sysv/linux/nios2/profil-counter.h: New file.
673         * sysdeps/unix/sysv/linux/nios2/setcontext.S: New file.
674         * sysdeps/unix/sysv/linux/nios2/shlib-versions: New file.
675         * sysdeps/unix/sysv/linux/nios2/sigcontextinfo.h: New file.
676         * sysdeps/unix/sysv/linux/nios2/swapcontext.S: New file.
677         * sysdeps/unix/sysv/linux/nios2/sys/cachectl.h: New file.
678         * sysdeps/unix/sysv/linux/nios2/sys/procfs.h: New file.
679         * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h: New file.
680         * sysdeps/unix/sysv/linux/nios2/sys/user.h: New file.
681         * sysdeps/unix/sysv/linux/nios2/syscall.S: New file.
682         * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h: New file.
683         * sysdeps/unix/sysv/linux/nios2/sysdep.S: New file.
684         * sysdeps/unix/sysv/linux/nios2/sysdep.h: New file.
685         * sysdeps/unix/sysv/linux/nios2/ucontext_i.sym: New file.
686         * sysdeps/unix/sysv/linux/nios2/vfork.S: New file.
687         * sysdeps/unix/sysv/linux/nios2/c++-types.data: New file.
688         * sysdeps/unix/sysv/linux/nios2/ld.abilist: New file.
689         * sysdeps/unix/sysv/linux/nios2/libBrokenLocale.abilist: New file.
690         * sysdeps/unix/sysv/linux/nios2/libanl.abilist: New file.
691         * sysdeps/unix/sysv/linux/nios2/libc.abilist: New file.
692         * sysdeps/unix/sysv/linux/nios2/libcrypt.abilist: New file.
693         * sysdeps/unix/sysv/linux/nios2/libdl.abilist: New file.
694         * sysdeps/unix/sysv/linux/nios2/libm.abilist: New file.
695         * sysdeps/unix/sysv/linux/nios2/libnsl.abilist: New file.
696         * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: New file.
697         * sysdeps/unix/sysv/linux/nios2/libresolv.abilist: New file.
698         * sysdeps/unix/sysv/linux/nios2/librt.abilist: New file.
699         * sysdeps/unix/sysv/linux/nios2/libthread_db.abilist: New file.
700         * sysdeps/unix/sysv/linux/nios2/libutil.abilist: New file.
701         * sysdeps/unix/sysv/linux/nios2/localplt.data: New file.
703 2015-01-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
705         [BZ #17844]
706         * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c
707         (getutent): Use weak_alias in non SHARED case
708         and default_symbol_version in SHARED case.
709         * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c
710         (getutent_r, pututline): Likewise.
711         * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c
712         (getutid): Likewise.
713         * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c
714         (getutid_r): Likewise.
715         * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c
716         (getutline): Likewise.
717         * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c
718         (getutline_r): Likewise.
719         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c
720         (updwtmp): Likewise.
722 2015-01-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
724         [BZ #17848]
725         * sysdeps/s390/s390-32/memcmp.S
726         (memcmp_g5): Rename to __memcmp_g5.
727         * sysdeps/s390/s390-32/memcpy.S
728         (memcpy_g5): Rename to __memcpy_g5.
729         Jump to __memcpy_mvcle instead of memcpy_mvcle.
730         (memcpy_mvcle) Rename to __memcpy_mvcle.
731         * sysdeps/s390/s390-32/memset.S
732         (memset_g5): Rename to __memset_g5.
733         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
734         (IFUNC_RESOLVE): Prefix ifunc-resolve function
735         and use prefixed functions.
736         * sysdeps/s390/s390-32/multiarch/memcmp.S
737         (memcmp_z196): Rename to __memcmp_z196.
738         (memcmp_z10): Rename to __memcmp_z10.
739         (memcmp): Set alias to __memcmp_g5.
740         (bcmp): Set alias to __memcmp_g5.
741         * sysdeps/s390/s390-32/multiarch/memcpy.S
742         (memcpy_z196): Rename to __memcpy_z196.
743         Jump to __memcpy_mvcle instead of memcpy_mvcle.
744         (memcpy_z10): Rename to __memcpy_z10.
745         Jump to __memcpy_mvcle instead of memcpy_mvcle.
746         (memcpy): Set alias to __memcpy_g5.
747         * sysdeps/s390/s390-32/multiarch/memset.S
748         (memset_z196): Rename to __memset_z196.
749         Jump to __memset_mvcle instead of memset_mvcle.
750         (memset_z10): Rename to __memset_z10.
751         Jump to __memset_mvcle instead of memset_mvcle.
752         (memset_mvcle) Rename to __memset_mvcle.
753         (memset): Set alias to __memset_g5.
754         * sysdeps/s390/s390-64/memcmp.S
755         (memcmp_z900): Rename to __memcmp_z900.
756         * sysdeps/s390/s390-64/memcpy.S
757         (memcpy_z900): Rename to __memcpy_z900.
758         Jump to __memcpy_mvcle instead of memcpy_mvcle.
759         (memcpy_mvcle) Rename to __memcpy_mvcle.
760         * sysdeps/s390/s390-64/memset.S
761         (memset_z900): Rename to __memset_z900.
762         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c
763         (IFUNC_RESOLVE): Prefix ifunc-resolve function
764         and use prefixed functions.
765         * sysdeps/s390/s390-64/multiarch/memcmp.S
766         (memcmp_z196): Rename to __memcmp_z196.
767         (memcmp_z10): Rename to __memcmp_z10.
768         (memcmp): Set alias to __memcmp_z900.
769         (bcmp): Set alias to __memcmp_z900.
770         * sysdeps/s390/s390-64/multiarch/memcpy.S
771         (memcpy_z196): Rename to __memcpy_z196.
772         Jump to __memcpy_mvcle instead of memcpy_mvcle.
773         (memcpy_z10): Rename to __memcpy_z10.
774         Jump to __memcpy_mvcle instead of memcpy_mvcle.
775         (memcpy): Set alias to __memcpy_z900.
776         * sysdeps/s390/s390-64/multiarch/memset.S
777         (memset_z196): Rename to __memset_z196.
778         Jump to __memset_mvcle instead of memset_mvcle.
779         (memset_z10): Rename to __memset_z10.
780         Jump to __memset_mvcle instead of memset_mvcle.
781         (memset_mvcle) Rename to __memset_mvcle.
782         (memset): Set alias to __memset_z900.
784 2015-01-14  Joseph Myers  <joseph@codesourcery.com>
786         [BZ #17748]
787         * sysdeps/powerpc/nofpu/feholdexcpt.c (__feholdexcept): Call
788         __fesetenv instead of fesetenv.
790 2015-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
792         * sysdeps/s390/dl-tls.h [IS_IN (rtld)]: Define __tls_get_addr
793         macro.
795 2015-01-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
797         * sysdeps/powerpc/powerpc64/power7/memcmp.S (memcmp): Fix performance
798         regression on LE.
800         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: New file.
801         * sysdeps/powerpc/powerpc64/power8/strncmp.S: New file.
802         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
803         strncmp-power8 object.
804         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
805         (__libc_ifunc_impl_list): Add __strncmp_power8 implementation.
806         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c (strncmp): Likewise.
807         * NEWS: Update.
809 2015-01-13  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
810             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
812         * sysdeps/powerpc/powerpc64/power7/strcmp.S (strcmp): Optimize
813         trailing byte check.
815 2015-01-13  David S. Miller  <davem@davemloft.net>
817         * include/signal.h (__sigreturn): Guard with __USE_MISC.
819 2015-01-13  Roland McGrath  <roland@hack.frob.com>
821         * login/logout.c (logout): Use memset rather than bzero.
822         * nis/nss_compat/compat-pwd.c (getpwent_next_file): Likewise.
823         * nis/nss_compat/compat-spwd.c (getspent_next_file): Likewise.
824         * resolv/gethnamaddr.c (gethostbyaddr): Use memcmp rather than bcmp.
825         (_gethtbyaddr): Likewise.
826         * locale/programs/simple-hash.c (bcopy): Macro removed.
828 2015-01-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
830         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
831         Add strcmp-power8 object.
832         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
833         (__libc_ifunc_impl_list): Add __strcmp_power8 implementation.
834         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: New file.
835         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c (strcmp): Add
836         __strcmp_power8 implementation.
837         * sysdeps/powerpc/powerpc64/power8/strcmp.S: New file.
838         * NEWS: Update.
840         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
841         Add strncpy-power8 and stpncpy-power8 objects.
842         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
843         (__libc_ifunc_impl_list): Add __strncpy_power8 and stpncpy_power8
844         implementations.
845         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: New file.
846         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c (__stpncpy): Add
847         __stpncpy_power8 implementation.
848         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: New file.
849         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c (strncpy): Add
850         __strncpy_power8 implementation.
851         * sysdeps/powerpc/powerpc64/power8/stpncpy.S: New file.
852         * sysdeps/powerpc/powerpc64/power8/strncpy.S: New file.
853         * NEWS: Update.
855         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.c: New file.
856         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: Remove file.
857         * sysdeps/powerpc/powerpc64/power7/strncat.S: Likewise.
859         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
860         strncat-power8 object.
861         * sysdeps/powerpc/powerpc64/multiarch/strcat.c (strcat): Add
862         __strcat_power8 implementation.
863         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
864         (__libc_ifunc_impl_list): Add __strcat_power8 implementation.
865         * sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c: New file:
866         optimized strcat for power8.
868         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
869         strcpy-power8 and stpcpy-power8 objects.
870         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
871         (__libc_ifunc_impl_list): Add __strcpy_power8 and __stpcpy_power8
872         implementations.
873         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: New file:
874         multiarch stpcpy implementation for POWER8.
875         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: New file;
876         multiarch strcpy implementation for POWER8.
877         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c (strcpy): Add
878         __strcpy_power8 function.
879         * sysdeps/powerpc/powerpc64/power8/stpcpy.S: New file: optimized
880         stpcpy for POWER8.
881         * sysdeps/powerpc/powerpc64/power8/strcpy.S: New file: optimized
882         strcpy for POWER8.
883         * NEWS: Update.
885 2015-01-13  Leonhard Holz  <leonhard.holz@web.de>
887         [BZ #16009]
888         * string/strxfrm_l.c (STRXFRM): Allocate fixed size cache for
889         weights and rules. Use do_xfrm_cached if data fits in cache,
890         do_xfrm otherwise.  Moved former main loop to...
891         * (do_xfrm_cached): New function.
892         * (do_xfrm): Non-caching version of do_xfrm_cached. Uses
893         find_idx, find_position and stack_push.
894         * (find_idx): New function.
895         * (find_position): Likewise.
896         * localedata/sort-test.sh: Added test run for do_xfrm.
897         * localedata/xfrm-test.c (main): Added command line option
898         -nocache to run the test with strings that are too large for
899         the STRXFRM cache.
901 2015-01-13  Torvald Riegel  <triegel@redhat.com>
903         * sysdeps/nptl/fork.c (__libc_fork): Provide address of futex
904         variable to lll_futex_wake call, not the value itself.
906 2015-01-12  Joseph Myers  <joseph@codesourcery.com>
908         [BZ #17803]
909         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (twom63): Rename to
910         twom64.  Adjust value to 0x1p-64L.
911         (__scalblnl): Only return standard underflowing result for K <=
912         -64 not K <= -63; adjust exponent for underflowing result by 64
913         not 63.
914         * math/libm-test.inc (scalbn_test_data): Add more tests.
915         (scalbln_test_data): Likewise.
917         [BZ #17834]
918         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (two63): Change value to
919         0x1p63L.
920         (__scalblnl): Get new exponent of adjusted subnormal value from ES
921         not HX.
922         * math/libm-test.inc (scalbn_test_data): Add more tests.
923         (scalbln_test_data): Likewise.
925 2015-01-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
926             Stefani Seibold  <stefani@seibold.net>
928         * sysdeps/unix/sysv/linux/x86_64/Makefile [$(subdir) = elf]
929         (sysdep_routines): Add dl-vdso here, ...
930         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = elf]
931         (sysdep_routines): ... not here.
932         * sysdeps/unix/sysv/linux/i386/gettimeofday.c: New file: set syscall
933         fallback when vDSO is not presented.
934         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_clock_gettime):
935         Define with libc_hidden_proto/libc_hidden_data_def definitions.
936         (_libc_vdso_platform_setup): Rename to __vdso_platform_setup.
937         * sysdeps/unix/sysv/linux/i386/init-first.c: New file: likewise.
938         * sysdeps/unix/sysv/linux/i386/time.c: New file: likewise.
939         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Moved to ...
940         * sysdeps/unix/sysv/linux/x86/libc-vdso.h: ... here.
941         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: Move to ...
942         * sysdeps/unix/sysv/linux/x86/clock_gettime.c: ... here.
943         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: Move to ...
944         * sysdeps/unix/sysv/linux/x86/gettimeofday.c: ... here.  Also added
945         fallback configurable symbol when vDSO is not available.
946         * sysdeps/unix/sysv/linux/x86_64/time.c: Move to ...
947         * sysdeps/unix/sysv/linux/x86/time.c: ... here.  Also refactored to
948         be able to redefine fallback symbol when vDSO is not available.
949         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: Move to ...
950         * sysdeps/unix/sysv/linux/x86/timespec_get.c: ... here.
952 2015-01-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
954         * sysdeps/powerpc/nptl/tls.h (tcbhead_t): Add tm_capable field.
955         (TLS_INIT_TP): Add tm_capable initialization.
956         (TLS_DEFINE_INIT_TP): Likewise.
957         (THREAD_GET_TM_CAPABLE): New file: get tm_capable field value from
958         TCB.
959         (THREAD_SET_TM_CAPABLE): New file: set tm_capable field value in TCB.
960         * sysdeps/powerpc/nptl/tcb-offsets.sym (TM_CAPABLE): Add field offset
961         calculation.
962         * sysdeps/powerpc/powerpc32/sysdep.h (DO_CALL): Abort hardware
963         transactoion is lock elision is built and TCB tm_capable is set.
964         * sysdeps/powerpc/powerpc64/sysdep.h (DO_CALL): Likewise.
965         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
966         (INTERNAL_SYSCALL_NCS): Likewise.
967         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
968         (INTERNAL_SYSCALL_NCS): Likewise.
969         * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): New define.
971         * sysdeps/powerpc/nptl/elide.h: New file: generic lock elision support
972         for powerpc.
973         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
974         [pthread_rwlock_t] (__pad1): Change size to 7 bytes in 64 bits case
975         and remove it for 32 bits case.
976         [pthread_rwlock_t] (__rwelision): New field for lock elision.
977         (__PTHREAD_RWLOCK_ELISION_EXTRA): Adjust for new lock elision field
978         initialization.
979         * sysdeps/unix/sysv/linux/powerpc/elision-conf.c (elision_init):
980         Disable lock elision with rdlocks if elision is not available.
982         * sysdeps/unix/sysv/linux/powerpc/Makefile [nptl]
983         (sysdep_routines): Add lock elision objects.
984         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
985         [pthread_mutex_t] (__spins): Rework to add lock elision field.
986         [pthread_mutex_t] (__elision): Add field.
987         [__PTHREAD_SPINS]: Adjust to init lock elision field.
988         * sysdeps/unix/sysv/linux/powerpc/elision-conf.c: New file: lock
989         elision definitions for powerpc.
990         * sysdeps/unix/sysv/linux/powerpc/elision-lock.c: New file:
991         implementation of lock elision for powerpc.
992         * sysdeps/unix/sysv/linux/powerpc/elision-timed.c: New file:
993         implementation of timed lock elision for powerpc.
994         * sysdeps/unix/sysv/linux/powerpc/elision-trylock.c: New file:
995         implementation of trylock with lock elision for powerpc.
996         * sysdeps/unix/sysv/linux/powerpc/elision-unlock.c: New file:
997         implementaion of unlock for lock elision for powerpc.
998         * sysdeps/unix/sysv/linux/powerpc/force-elision.h: New file:
999         automatic enable lock elision for mutexes.
1000         * sysdeps/unix/sysv/linux/powerpc/htm.h: New file: hardware
1001         transaction execution definitions for powerpc.
1002         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: New file: add TLE
1003         definitions.
1004         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_cond_lock.c: New file.
1005         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_lock.c: Likewise.
1006         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_timedlock.c: Likewise.
1007         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_trylock.c: Likewise.
1008         * NEWS: Update.
1010 2015-01-09  Roland McGrath  <roland@hack.frob.com>
1012         * sysdeps/posix/shm-directory.c: Use <> rather than ""
1013         for #include of <shm-directory.h>.
1015 2015-01-09  Chung-Lin Tang  <cltang@codesourcery.com>
1017         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Remove MIN() and
1018         assign raw DT_REL[A]COUNT value to ranges[0].nrelative.
1020 2015-01-09  Matthew Fortune <matthew.fortune@imgtec.com>
1022         [BZ #17791]
1023         * NEWS: Mention bug fix.
1024         * sysdepsysdeps/unix/sysv/linux/microblaze/sys/user.h
1025         (PAGE_SHIFT, PAGE_SIZE, PAGE_MASK, NBPG, UPAGES): Remove.
1026         (HOST_TEXT_START_ADDR, HOST_STACK_END_ADDR): Remove.
1028 2015-01-09  Torvald Riegel <triegel@redhat.com>
1030         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Delete file.
1032 2015-01-09  Torvald Riegel <triegel@redhat.com>
1034         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: Delete file.
1036 2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
1038         * sysdeps/microblaze/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as void
1039         pointer and cast to uintptr_t.
1041 2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
1043         * sysdeps/microblaze/nptl/tls.h (__microblaze_get_thread_area): Function
1044         removed.
1045         (READ_THREAD_POINTER): Use __microblaze_thread_area instead.
1047 2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
1049         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Use NULL instead
1050         of 0.
1052 2015-01-08  Roland McGrath  <roland@hack.frob.com>
1054         * sysdeps/pthread/timer_routines.c: Fix <pthreadP.h> include to use
1055         <nptl/pthreadP.h> instead.
1056         * sysdeps/pthread/aio_notify.c: Include <signal.h> for raise decl.
1058         * signal/allocrtsig.c (RESERVED_SIGRT): New macro, defined to 0 if not
1059         already defined.
1060         [__SIGRTMIN] (init): Function removed.
1061         [__SIGRTMIN] (initialized): Variable removed.
1062         [!__SIGRTMIN] (current_rtmin, current_rtmax): Variables removed.
1063         [__SIGRTMIN] (current_rtmin, current_rtmax): Initialize to
1064         __SIGRTMIN + RESERVED_SIGRT and __SIGRTMAX, respectively.
1065         (__libc_current_sigrtmin) [__SIGRTMIN]: Don't call init.
1066         (__libc_current_sigrtmin) [!__SIGRTMIN]: Just return -1.
1067         (__libc_current_sigrtmin): Add __libc_current_sigrtmin_private alias.
1068         (__libc_current_sigrtmax) [__SIGRTMIN]: Don't call init.
1069         (__libc_current_sigrtmax) [!__SIGRTMIN]: Just return -1.
1070         (__libc_current_sigrtmax): Add __libc_current_sigrtmax_private alias.
1071         (__libc_allocate_rtsig) [__SIGRTMIN]: Don't call init.
1072         (__libc_allocate_rtsig): Add __libc_allocate_rtsig_private alias.
1073         * sysdeps/nptl/allocrtsig.c: New file.
1074         * sysdeps/unix/sysv/linux/allocrtsig.c: File removed.
1075         * sysdeps/unix/sysv/linux/testrtsig.h: File removed.
1076         * sysdeps/generic/testrtsig.h: File removed.
1078         * nptl/pthread_sigmask.c [SIGCANCEL || SIGTIMER || SIGSETXID]: #error.
1079         (pthread_sigmask): Call sigprocmask, not __sigprocmask.
1081         * nptl/nptl-init.c (pthread_functions): Conditionalize
1082         .ptr__nptl_setxid initialization on [SIGSETXID].
1084         * sysdeps/nptl/sys/procfs.h: New file.
1085         * nptl_db/Makefile (headers): Add it.
1086         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add it.
1088         * nptl/pthreadP.h (check_cpuset_attr): Moved ...
1089         * sysdeps/unix/sysv/linux/check-cpuset.h: ... to this new file.
1090         * nptl/pthread_attr_setaffinity.c: Include it.
1091         * nptl/pthread_setattr_default_np.c: Likewise.
1092         * nptl/check-cpuset.h: New file.
1094 2015-01-08  Richard Henderson  <rth@redhat.com>
1096         * elf/Makefile (CFLAGS-tst-execstack-mod.c): Add -Wno-trampolines
1097         (CFLAGS-tst-execstack-prog.c): Likewise.
1098         * nptl/Makefile (CFLAGS-tst-execstack-mod.c): Likewise.
1100 2015-01-08  Chung-Lin Tang  <cltang@codesourcery.com>
1101             Sandra Loosemore  <sandra@codesourcery.com>
1102             Andrew Jenner  <andrew@codesourcery.com>
1103             Joseph Myers  <joseph@codesourcery.com>
1104             Nathan Sidwell  <nathan@codesourcery.com>
1106         * elf/elf.h (EM_ALTERA_NIOS2): New machine number for Altera Nios II.
1107         (DT_NIOS2_GP): New dynamic entry type for Nios II _gp address.
1108         (R_NIOS2_NONE,R_NIOS2_S16,R_NIOS2_U16): Define Nios II relocations.
1109         (R_NIOS2_PCREL16,R_NIOS2_CALL26,R_NIOS2_IMM5): Likewise.
1110         (R_NIOS2_CACHE_OPX,R_NIOS2_IMM6,R_NIOS2_IMM8,R_NIOS2_HI16): Likewise.
1111         (R_NIOS2_LO16,R_NIOS2_HIADJ16,R_NIOS2_BFD_RELOC_32): Likewise.
1112         (R_NIOS2_BFD_RELOC_16,R_NIOS2_BFD_RELOC_8,R_NIOS2_GPREL): Likewise.
1113         (R_NIOS2_GNU_VTINHERIT,R_NIOS2_GNU_VTENTRY,R_NIOS2_UJMP): Likewise.
1114         (R_NIOS2_CJMP,R_NIOS2_CALLR,R_NIOS2_ALIGN,R_NIOS2_GOT16): Likewise.
1115         (R_NIOS2_CALL16,R_NIOS2_GOTOFF_LO,R_NIOS2_GOTOFF_HA): Likewise.
1116         (R_NIOS2_PCREL_LO,R_NIOS2_PCREL_HA,R_NIOS2_TLS_GD16): Likewise.
1117         (R_NIOS2_TLS_LDM16,R_NIOS2_TLS_LDO16,R_NIOS2_TLS_IE16): Likewise.
1118         (R_NIOS2_TLS_LE16,R_NIOS2_TLS_DTPMOD,R_NIOS2_TLS_DTPREL): Likewise.
1119         (R_NIOS2_TLS_TPREL,R_NIOS2_COPY,R_NIOS2_GLOB_DAT): Likewise.
1120         (R_NIOS2_JUMP_SLOT,R_NIOS2_RELATIVE,R_NIOS2_GOTOFF): Likewise.
1121         (R_NIOS2_CALL26_NOAT,R_NIOS2_GOT_LO,R_NIOS2_GOT_HA): Likewise.
1122         (R_NIOS2_CALL_LO,R_NIOS2_CALL_HA): Likewise.
1124 2015-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1126         * sysdeps/unix/sysv/linux/futimens.c (futimens): Use address of first
1127         timespec struct member in syscall macro.
1128         * sysdeps/unix/sysv/linux/utimensat.c (utimensat): Likewise.
1129         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Use address of
1130         first timeval struct member in syscall macro.
1131         * sysdeps/unix/sysv/linux/utimes.c (__utimeS): Likewise.
1133 2015-01-07  Joseph Myers  <joseph@codesourcery.com>
1135         [BZ #17748]
1136         * include/fenv.h (__feupdateenv): Use libm_hidden_proto.
1137         * math/feupdateenv.c (__feupdateenv): Use libm_hidden_def.
1138         * sysdeps/aarch64/fpu/feupdateenv.c (feupdateenv): Rename to
1139         __feupdateenv and define as weak alias of __feupdateenv.  Use
1140         libm_hidden_weak.
1141         * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Use
1142         libm_hidden_def.
1143         * sysdeps/arm/feupdateenv.c (feupdateenv): Rename to __feupdateenv
1144         and define as weak alias of __feupdateenv.  Use libm_hidden_weak.
1145         * sysdeps/hppa/fpu/feupdateenv.c (feupdateenv): Likewise.
1146         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Use
1147         libm_hidden_def.
1148         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Rename to
1149         __feupdateenv and define as weak alias of __feupdateenv.  Use
1150         libm_hidden_weak.
1151         * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Use
1152         libm_hidden_def.
1153         * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Rename to
1154         __feupdateenv and define as weak alias of __feupdateenv.  Use
1155         libm_hidden_weak.
1156         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Use
1157         libm_hidden_def.
1158         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
1159         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c
1160         (__feupdateenv): Likewise.
1161         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Rename to
1162         __feupdateenv and define as weak alias of __feupdateenv.  Use
1163         libm_hidden_weak.
1164         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
1165         * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Use
1166         libm_hidden_def.
1167         * sysdeps/tile/math_private.h (__feupdateenv): New inline
1168         function.
1169         * sysdeps/x86_64/fpu/feupdateenv.c (__feupdateenv): Use
1170         libm_hidden_def.
1171         * sysdeps/generic/math_private.h (default_libc_feupdateenv): Call
1172         __feupdateenv instead of feupdateenv.
1173         (default_libc_feupdateenv_test): Likewise.
1174         (libc_feresetround_ctx): Likewise.
1176 2015-01-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1178         * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Fix function
1179         prototype.
1181 2015-01-07  Chris Metcalf  <cmetcalf@ezchip.com>
1183         * posix/regcomp.c (parse_bracket_exp): Initialize type to
1184         COLL_SYM in a couple of places to avoid uninitialized variable
1185         wanings on tilegx gcc 4.8.2.
1187 2015-01-07  Richard Earnshaw  <rearnsha@arm.com>
1189         * sysdeps/aarch64/strcpy.S: New file.
1190         * sysdeps/aarch64/stpcpy.S: New file.
1191         * NEWS: Updated.
1193 2015-01-07  Richard Earnshaw  <rearnsha@arm.com>
1195         * sysdeps/aarch64/strrchr.S: New file.
1196         * NEWS: Updated.
1198 2015-01-07  Eric Biggers  <ebiggers3@gmail.com>
1200         [BZ #17658]
1201         * stdlib/setenv.c: Fix memory leak when setting large,
1202         duplicate string.
1204 2015-01-06  Vladimir A. Nazarenko  <naszar@ya.ru>
1206         [BZ #17273]
1207         * misc/mntent_r.c (__getmntent_r): Cut off trailing spaces
1208         and tabs from buffer before parsing fstab entry.
1209         * misc/tst-mntent.c (main): Add test for mount entry with
1210         trailing spaces and tabs.
1212 2015-01-06  Joseph Myers  <joseph@codesourcery.com>
1214         [BZ #17748]
1215         * include/fenv.h (__fesetround): Declare.  Use libm_hidden_proto.
1216         * math/fesetround.c (fesetround): Rename to __fesetround and
1217         define as weak alias of __fesetround.  Use libm_hidden_weak.
1218         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Likewise.
1219         * sysdeps/alpha/fpu/fesetround.c (fesetround): Likewise.
1220         * sysdeps/arm/fesetround.c (fesetround): Likewise.
1221         * sysdeps/hppa/fpu/fesetround.c (fesetround): Likewise.
1222         * sysdeps/i386/fpu/fesetround.c (fesetround): Likewise.
1223         * sysdeps/ia64/fpu/fesetround.c (fesetround): Likewise.
1224         * sysdeps/m68k/fpu/fesetround.c (fesetround): Likewise.
1225         * sysdeps/mips/fpu/fesetround.c (fesetround): Likewise.
1226         * sysdeps/powerpc/fpu/fenv_libc.h (__fesetround): Rename to
1227         __fesetround_inline.
1228         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetround_ppc): Call
1229         __fesetround_inline instead of __fesetround.
1230         * sysdeps/powerpc/fpu/fesetround.c (fesetround): Rename to
1231         __fesetround and define as weak alias of __fesetround.  Use
1232         libm_hidden_weak.  Call __fesetround_inline instead of
1233         __fesetround.
1234         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Rename to
1235         __fesetround and define as weak alias of __fesetround.  Use
1236         libm_hidden_weak.
1237         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c (fesetround):
1238         Likewise.
1239         * sysdeps/s390/fpu/fesetround.c (fesetround): Likewise.
1240         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
1241         * sysdeps/sparc/fpu/fesetround.c (fesetround): Likewise.
1242         * sysdeps/tile/math_private.h (__fesetround): New inline function.
1243         * sysdeps/x86_64/fpu/fesetround.c (fesetround): Rename to
1244         __fesetround and define as weak alias of __fesetround.  Use
1245         libm_hidden_weak.
1246         * sysdeps/generic/math_private.h (default_libc_fesetround): Call
1247         __fesetround instead of fesetround.
1248         (default_libc_feholdexcept_setround): Likewise.
1249         (libc_feholdsetround_ctx): Likewise.
1250         (libc_feholdsetround_noex_ctx): Likewise.
1252         [BZ #17748]
1253         * include/fenv.h (__fesetenv): Use libm_hidden_proto.
1254         * math/fesetenv.c (__fesetenv): Use libm_hidden_def.
1255         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv
1256         and define as weak alias of __fesetenv.  Use libm_hidden_weak.
1257         * sysdeps/alpha/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1258         * sysdeps/arm/fesetenv.c (fesetenv): Rename to __fesetenv and
1259         define as weak alias of __fesetenv.  Use libm_hidden_weak.
1260         * sysdeps/hppa/fpu/fesetenv.c (fesetenv): Likewise.
1261         * sysdeps/i386/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1262         * sysdeps/ia64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
1263         define as weak alias of __fesetenv.  Use libm_hidden_weak.
1264         * sysdeps/m68k/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1265         * sysdeps/mips/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
1266         define as weak alias of __fesetenv.  Use libm_hidden_weak.
1267         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Use
1268         libm_hidden_def.
1269         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Likewise.
1270         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c (__fesetenv):
1271         Likewise.
1272         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
1273         define as weak alias of __fesetenv.  Use libm_hidden_weak.
1274         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
1275         * sysdeps/sparc/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1276         * sysdeps/tile/math_private.h (__fesetenv): New inline function.
1277         * sysdeps/x86_64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv
1278         and define as weak alias of __fesetenv.  Use libm_hidden_weak.
1279         * sysdeps/generic/math_private.h (default_libc_fesetenv): Use
1280         __fesetenv instead of fesetenv.
1281         (libc_feresetround_noex_ctx): Likewise.
1282         * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Likewise.
1283         * sysdeps/hppa/fpu/feupdateenv.c (feupdateenv): Likewise.
1284         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Likewise.
1285         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Likewise.
1286         * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Likewise.
1287         * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Likewise.
1288         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
1289         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c
1290         (__feupdateenv): Likewise.
1291         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
1292         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
1293         * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Likewise.
1294         * sysdeps/x86_64/fpu/feupdateenv.c (__feupdateenv): Likewise.
1296 2015-01-06  Aurelien Jarno  <aurelien@aurel32.net>
1298         [BZ #17806]
1299         * resolv/res_init.c (__res_iclose): Only clear nsinit if the
1300         addresses have been freed.
1302 2015-01-06  Aurelien Jarno  <aurelien@aurel32.net>
1304         * resolv/res_init.c (__res_vinit): Improve comments about nserv
1305         and nservall.
1307 2015-01-06  Ondřej Bílka  <neleai@seznam.cz>
1309         * sysdeps/unix/sysv/linux/check_pf.c (make_request):
1310         Clean up check_pf allocation pattern. addresses
1312 2015-01-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1314         * nptl/pthread_cancel.c (pthread_cancel): Use ANSI prototype.
1315         * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
1316         * nptl/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
1317         * nptl/pthread_exit.c (__pthread_exit): Likewise.
1318         * nptl/pthread_join.c (pthread_join): Likewise.
1319         * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
1320         * sysdeps/posix/waitid.c (__waitid): Likewise.
1321         * sysdeps/unix/sysv/linux/arm/pread.c (__libc_pread): Likewise.
1322         * sysdeps/unix/sysv/linux/arm/pread64.c (__libc_pread64): Likewise.
1323         * sysdeps/unix/sysv/linux/arm/pwrite.c (__libc_pwrite): Likewise.
1324         * sysdeps/unix/sysv/linux/arm/pwrite64.c (__libc_pwrite64): Likewise.
1325         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c (__libc_pread):
1326         Likewise.
1327         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c
1328         (__libc_pread64): Likewise.
1329         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c
1330         (__libc_pwrite): Likewise.
1331         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c
1332         (__libc_pwrite64): Likewsie.
1333         * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Likewise.
1334         * sysdeps/unix/sysv/linux/mips/pread64.c (__libc_pread64): Likewise.
1335         * sysdeps/unix/sysv/linux/mips/pwrite.c (__libc_pwrite): Likewise.
1336         * sysdeps/unix/sysv/linux/mips/pwrite64.c (__libc_pwrite64): Likewise.
1337         * sysdeps/unix/sysv/linux/msgrcv.c (__libc_msgrcv): Likewise.
1338         * sysdeps/unix/sysv/linux/msgsnd.c (__libc_msgsnd): Likewise.
1339         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
1340         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c (__libc_pread):
1341         Likewise.
1342         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
1343         (__libc_pread64): Likewise.
1344         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c (__libc_pwrite):
1345         Likewise.
1346         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
1347         (__libc_pwrite64): Likewise.
1348         * sysdeps/unix/sysv/linux/pread.c (__libc_pread): Likewise.
1349         * sysdeps/unix/sysv/linux/pread64.c (__libc_pread64): Likewise.
1350         * sysdeps/unix/sysv/linux/preadv.c (PREADV): Likewise.
1351         * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Likewise.
1352         * sysdeps/unix/sysv/linux/pwrite.c (__libc_pwrite): Likewise.
1353         * sysdeps/unix/sysv/linux/pwrite64.c (__libc_pwrite64): Likewise.
1354         * sysdeps/unix/sysv/linux/pwritev.c (__libc_pwritev): Likewise.
1355         * sysdeps/unix/sysv/linux/sh/pread.c (__libc_pread): Likewise.
1356         * sysdeps/unix/sysv/linux/sh/pread64.c (__libc_pread64): Likewise.
1357         * sysdeps/unix/sysv/linux/sh/pwrite.c (__libc_pwrite): Likewise.
1358         * sysdeps/unix/sysv/linux/sh/pwrite64.c (__libc_write64): Likewise.
1359         * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Likewise.
1360         * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Likewise.
1361         * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Likewise.
1362         * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
1363         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c (__libc_msgrcv):
1364         Likewise.
1366 2015-01-06  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
1368         * math/Makefile (CFLAGS-test-float.c): Remove -frounding-math.
1369         (CFLAGS-test-double.c): Likewise.
1370         (CFLAGS-test-ldouble.c): Likewise.
1371         (CPPFLAGS-test-ifloat.c): Likewise.
1372         (CPPFLAGS-test-idouble.c): Likewise.
1373         (CPPFLAGS-test-ildoubl.c): Likewise.
1374         (CFLAGS-test-test-fenv.c): Remove variable.
1375         (CFLAGS-test-misc.c): Likewise.
1377 2015-01-06  H.J. Lu  <hongjiu.lu@intel.com>
1379         [BZ #17797]
1380         * bits/time.h (CLOCKS_PER_SEC): Changed to ((clock_t) 1000000).
1381         * sysdeps/unix/sysv/linux/bits/time.h (CLOCKS_PER_SEC): Likewise.
1382         * sysdeps/unix/sysv/linux/clock.c (clock): _Static_assert
1383         CLOCKS_PER_SEC == 1000000.
1384         * time/clocktest.c (main): Replace %ld with %jd and cast to
1385         intmax_t.
1387 2015-01-05  Roland McGrath  <roland@hack.frob.com>
1389         * sysdeps/generic/unwind-resume.h: New file.
1390         * sysdeps/gnu/unwind-resume.c: Include it.
1391         (libgcc_s_personality): Use PERSONALITY_PROTO macro for the prototype.
1392         (__gcc_personality_v0): Likewise, and PERSONALITY_ARGS for the callee
1393         argument list.
1394         (libgcc_s_resume): Variable renamed to __libgcc_s_resume, made hidden
1395         global rather than static.
1396         (_Unwind_Resume): Update user.
1397         Conditionalize definition on [!HAVE_ARCH_UNWIND_RESUME].
1398         (init): Likewise.  Renamed to __libgcc_s_init, made hidden global
1399         rather than static.  Add __attribute__ ((cold)).
1400         (_Unwind_Resume, __gcc_personality_v0): Update callers.
1401         * sysdeps/nptl/unwind-forcedunwind.c: Likewise.
1402         * sysdeps/arm/arm-unwind-resume.S: New file.
1403         * sysdeps/arm/rt-arm-unwind-resume.S: New file.
1404         * sysdeps/arm/pt-arm-unwind-resume.S: New file.
1405         * sysdeps/arm/Makefile [$(subdir) = csu]
1406         (sysdep_routines, shared-only-routines): Add arm-unwind-resume.
1407         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
1408         Add rt-arm-unwind-resume.
1409         [$(subdir) = nptl]
1410         (libpthread-sysdep_routines, libpthread-shared-only-routines):
1411         Add pt-arm-unwind-resume.
1412         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: File removed.
1413         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: File removed.
1415 2015-01-05  Joseph Myers  <joseph@codesourcery.com>
1417         [BZ #17748]
1418         * include/fenv.h (__feholdexcept): Declare.  Use
1419         libm_hidden_proto.
1420         * math/feholdexcpt.c (feholdexcept): Rename to __feholdexcept and
1421         define as weak alias of __feholdexcept.  Use libm_hidden_weak.
1422         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Likewise.
1423         * sysdeps/alpha/fpu/feholdexcpt.c (feholdexcept): Likewise.
1424         * sysdeps/arm/feholdexcpt.c (feholdexcept): Likewise.
1425         * sysdeps/hppa/fpu/feholdexcpt.c (feholdexcept): Likewise.
1426         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Likewise.
1427         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Likewise.
1428         * sysdeps/m68k/fpu/feholdexcpt.c (feholdexcept): Likewise.
1429         * sysdeps/mips/fpu/feholdexcpt.c (feholdexcept): Likewise.
1430         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
1431         * sysdeps/powerpc/nofpu/feholdexcpt.c (feholdexcept): Likewise.
1432         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c
1433         (feholdexcept): Likewise.
1434         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
1435         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
1436         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Likewise.
1437         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
1438         * sysdeps/generic/math_private.h (default_libc_feholdexcept): Use
1439         __feholdexcept instead of feholdexcept.
1440         (default_libc_feholdexcept_setround): Likewise.
1442 2015-01-05  Steve Ellcey  <sellcey@imgtec.com>
1444         * sysdeps/mips/memset.S (memset): Modify for mips32r6/mips64r6
1445         to avoid using stl/str to align destination.
1447 2015-01-05  Steve Ellcey  <sellcey@imgtec.com>
1449         * sysdeps/mips/memcpy.S: Add support for mips32r6/mips64r6.
1451 2015-01-05  Joseph Myers  <joseph@codesourcery.com>
1453         [BZ #17796]
1454         * sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c
1455         [!SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)] (posix_fadvise64):
1456         Define as weak alias not strong alias.
1458 2015-01-05  Steve Ellcey  <sellcey@imgtec.com>
1460         * sysdeps/mips/dl-machine.h (elf_machine_load_address): Replace
1461         bltzal with addiupc.
1462         (RTLD_START): Ditto.
1464 2015-01-05  Chris Metcalf  <cmetcalf@ezchip.com>
1466         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h: Fix return type
1467         for __vdso_* functions in declarations.
1468         * sysdeps/unix/sysv/linux/tile/init-first.c: Likewise for
1469         definitions.
1470         * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL,
1471         INTERNAL_VSYSCALL): Use struct return types to check for error.
1473         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c [!defined _LP64
1474         && REGISTER_CAST_INT32_TO_INT64]: Provide explicit lround()
1475         function with cast from llround().
1476         * sysdeps/tile/sysdep.h (REGISTER_CAST_INT32_TO_INT64): Define.
1477         * sysdeps/x86_64/x32/sysdep.h (REGISTER_CAST_INT32_TO_INT64):
1478         Define.
1480 2015-01-05  Joseph Myers  <joseph@codesourcery.com>
1482         [BZ #17793]
1483         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c (posix_fadvise64):
1484         Define as weak alias not strong alias.
1486         [BZ #17635]
1487         * ctype/ctype-c99.c: New file.  isblank implementation moved from
1488         ...
1489         * ctype/ctype-extn.c: ... here.
1490         (__isblank_l): Move to ...
1491         * ctype/ctype-c99_l.c: ... here.  New file.
1492         * ctype/Makefile (routines): Add ctype-c99 and ctype-c99_l.
1493         * conform/Makefile (test-xfail-ISO99/ctype.h/linknamespace):
1494         Remove variable.
1495         (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
1496         (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
1497         (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
1498         (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
1499         (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
1501         [BZ #17777]
1502         * sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c
1503         (posix_fadvise64): Define as weak alias not strong alias.
1504         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
1505         (posix_fallocate64): Likewise.
1506         * conform/Makefile (test-xfail-XOPEN2K/fcntl.h/linknamespace):
1507         Remove variable.
1508         (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
1509         (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
1510         (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
1511         (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
1512         (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
1514 2015-01-05  Matthew Fortune  <matthew.fortune@imgtec.com>
1516         [BZ #16191]
1517         * NEWS: Mention bug fix.
1518         * sysdeps/unix/sysv/linux/mips/sys/user.h (PAGE_SHIFT): Remove.
1519         (PAGE_SIZE, PAGE_MASK, NBPG, UPAGES): Likewise.
1520         (HOST_TEXT_START_ADDR, HOST_DATA_START_ADDR): Likewise.
1521         (HOST_STACK_END_ADDR): Likewise.
1523 2015-01-02  Joseph Myers  <joseph@codesourcery.com>
1525         [BZ #17748]
1526         * include/fenv.h (__fegetround): Declare.  Use libm_hidden_proto.
1527         * math/fegetround.c (fegetround): Rename to __fegetround and
1528         define as weak alias of __fegetround.  Use libm_hidden_weak.
1529         * sysdeps/aarch64/fpu/fegetround.c (fegetround): Likewise.
1530         * sysdeps/alpha/fpu/fegetround.c (fegetround): Likewise.
1531         * sysdeps/arm/fegetround.c (fegetround): Likewise.
1532         * sysdeps/hppa/fpu/fegetround.c (fegetround): Likewise.
1533         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
1534         * sysdeps/ia64/fpu/fegetround.c (fegetround): Likewise.
1535         * sysdeps/m68k/fpu/fegetround.c (fegetround): Likewise.
1536         * sysdeps/mips/fpu/fegetround.c (fegetround): Likewise.
1537         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
1538         Undefine after rather than before function definition; use
1539         parentheses around function name in definition.
1540         (__fegetround): Also undefine macro after function definition.
1541         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Rename to
1542         __fegetround and define as weak alias of __fegetround.  Use
1543         libm_hidden_weak.  Do not undefine as macro.
1544         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
1545         Likewise.
1546         * sysdeps/s390/fpu/fegetround.c (fegetround): Rename to
1547         __fegetround and define as weak alias of __fegetround.  Use
1548         libm_hidden_weak.
1549         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
1550         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
1551         * sysdeps/tile/math_private.h (__fegetround): New inline function.
1552         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Rename to
1553         __fegetround and define as weak alias of __fegetround.  Use
1554         libm_hidden_weak.
1555         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Use
1556         __fegetround instead of fegetround.
1558         [BZ #17782]
1559         * sysdeps/unix/sysv/linux/mips/bits/termios.h (TIOCSER_TEMT):
1560         Condition macro definition on [__USE_MISC].
1562         [BZ #17781]
1563         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h
1564         (struct sigaction): Change type of sa_flags field to int.
1566         [BZ #17780]
1567         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (struct flock)
1568         [!__USE_FILE_OFFSET64 && _MIPS_SIM != _ABI64]: Rename pad field to
1569         __glibc_reserved0.
1571         * nptl/version.c (banner): Use single year in copyright notice.
1573         * NEWS: Update copyright dates.
1574         * catgets/gencat.c (print_version): Likewise.
1575         * csu/version.c (banner): Likewise.
1576         * debug/catchsegv.sh: Likewise.
1577         * debug/pcprofiledump.c (print_version): Likewise.
1578         * debug/xtrace.sh (do_version): Likewise.
1579         * elf/ldconfig.c (print_version): Likewise.
1580         * elf/ldd.bash.in: Likewise.
1581         * elf/pldd.c (print_version): Likewise.
1582         * elf/sotruss.sh: Likewise.
1583         * elf/sprof.c (print_version): Likewise.
1584         * iconv/iconv_prog.c (print_version): Likewise.
1585         * iconv/iconvconfig.c (print_version): Likewise.
1586         * locale/programs/locale.c (print_version): Likewise.
1587         * locale/programs/localedef.c (print_version): Likewise.
1588         * login/programs/pt_chown.c (print_version): Likewise.
1589         * malloc/memusage.sh (do_version): Likewise.
1590         * malloc/memusagestat.c (print_version): Likewise.
1591         * malloc/mtrace.pl: Likewise.
1592         * manual/libc.texinfo: Likewise.
1593         * nptl/version.c (banner): Likewise.
1594         * nscd/nscd.c (print_version): Likewise.
1595         * nss/getent.c (print_version): Likewise.
1596         * nss/makedb.c (print_version): Likewise.
1597         * posix/getconf.c (main): Likewise.
1598         * scripts/test-installation.pl: Likewise.
1599         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
1601 2015-01-02  Will Newton  <will.newton@linaro.org>
1603         * sysdeps/arm/armv7/configure: Removed.
1604         * sysdeps/arm/armv7/configure.ac: Likewise.
1606 2015-01-02  Joseph Myers  <joseph@codesourcery.com>
1608         * All files with FSF copyright notices: Update copyright dates
1609         using scripts/update-copyrights.
1610         * intl/plural.c: Regenerated.
1611         * locale/programs/charmap-kw.h: Likewise.
1612         * locale/programs/locfile-kw.h: Likewise.
1614 2015-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
1616         * scripts/gen-posix-conf-vars.awk (END): Don't use sprintf.
1618 2014-12-31  Joseph Myers  <joseph@codesourcery.com>
1620         [BZ #17748]
1621         * include/fenv.h (__fegetenv): Use libm_hidden_proto.
1622         * math/fegetenv.c (__fegetenv): Use libm_hidden_def.
1623         * sysdeps/aarch64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv
1624         and define as weak alias of __fegetenv.  Use libm_hidden_weak.
1625         * sysdeps/alpha/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1626         * sysdeps/arm/fegetenv.c (fegetenv): Rename to __fegetenv and
1627         define as weak alias of __fegetenv.  Use libm_hidden_weak.
1628         * sysdeps/hppa/fpu/fegetenv.c (fegetenv): Likewise.
1629         * sysdeps/i386/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1630         * sysdeps/ia64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
1631         define as weak alias of __fegetenv.  Use libm_hidden_weak.
1632         * sysdeps/m68k/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1633         * sysdeps/mips/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
1634         define as weak alias of __fegetenv.  Use libm_hidden_weak.
1635         * sysdeps/powerpc/fpu/fegetenv.c (__fegetenv): Use
1636         libm_hidden_def.
1637         * sysdeps/powerpc/nofpu/fegetenv.c (__fegetenv): Likewise.
1638         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (__fegetenv):
1639         Likewise.
1640         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
1641         define as weak alias of __fegetenv.  Use libm_hidden_weak.
1642         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
1643         * sysdeps/sparc/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1644         * sysdeps/tile/math_private.h (__fegetenv): New inline function.
1645         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv
1646         and define as weak alias of __fegetenv.  Use libm_hidden_weak.
1647         * sysdeps/generic/math_private.h (libc_feholdsetround_ctx): Use
1648         __fegetenv instead of fegetenv.
1649         (libc_feholdsetround_noex_ctx): Likewise.
1651 2014-12-31  Matthew Fortune  <matthew.fortune@imgtec.com>
1653         * elf/elf.h (PT_MIPS_ABIFLAGS): Define.
1654         (Elf_MIPS_ABIFlags_v0): New structure.
1655         (EF_MIPS_FP64): Define.
1656         (MIPS_AFL_REG_NONE, MIPS_AFL_REG_32, MIPS_AFL_REG_64): Likewise.
1657         (MIPS_AFL_REG_128, MIPS_AFL_ASE_DSP, MIPS_AFL_ASE_DSP64): Likewise.
1658         (MIPS_AFL_ASE_DSPR2, MIPS_AFL_ASE_EVA, MIPS_AFL_ASE_MCU): Likewise.
1659         (MIPS_AFL_ASE_MDMX, MIPS_AFL_ASE_MIPS3D, MIPS_AFL_ASE_MT): Likewise.
1660         (MIPS_AFL_ASE_SMARTMIPS, MIPS_AFL_ASE_VIRT): Likewise.
1661         (MIPS_AFL_ASE_VIRT64, MIPS_AFL_ASE_MSA, MIPS_AFL_ASE_MSA64): Likewise.
1662         (MIPS_AFL_ASE_MIPS16, MIPS_AFL_ASE_MICROMIPS): Likewise.
1663         (MIPS_AFL_ASE_XPA, MIPS_AFL_EXT_XLR, MIPS_AFL_EXT_OCTEON2): Likewise.
1664         (MIPS_AFL_EXT_OCTEONP, MIPS_AFL_EXT_LOONGSON_3A): Likewise.
1665         (MIPS_AFL_EXT_OCTEON, MIPS_AFL_EXT_5900, MIPS_AFL_EXT_4010): Likewise.
1666         (MIPS_AFL_EXT_4100, MIPS_AFL_EXT_3900, MIPS_AFL_EXT_10000): Likewise.
1667         (MIPS_AFL_EXT_SB1, MIPS_AFL_EXT_4111, MIPS_AFL_EXT_4120): Likewise.
1668         (MIPS_AFL_EXT_5400, MIPS_AFL_EXT_5500): Likewise.
1669         (MIPS_AFL_EXT_LOONGSON_2E, MIPS_AFL_EXT_LOONGSON_2F): Likewise.
1670         (Val_GNU_MIPS_ABI_FP_ANY, Val_GNU_MIPS_ABI_FP_DOUBLE): New enum values.
1671         (Val_GNU_MIPS_ABI_FP_SINGLE, Val_GNU_MIPS_ABI_FP_SOFT): Likewise.
1672         (Val_GNU_MIPS_ABI_FP_OLD_64, Val_GNU_MIPS_ABI_FP_XX): Likewise.
1673         (Val_GNU_MIPS_ABI_FP_64, Val_GNU_MIPS_ABI_FP_64A): Likewise.
1674         (Val_GNU_MIPS_ABI_FP_MAX): Likewise.
1675         * sysdeps/mips/Makefile [subdir=elf]: Add tst-abi-interlink,
1676         tst-mode-switch-1, tst-mode-switch-2, tst-mode-switch-3 tests.
1677         * sysdeps/mips/bits/linkmap.h (struct link_map_machine): Add fpmode
1678         field.
1679         * sysdeps/mips/dl-machine.h (elf_machine_matches_host): Reject
1680         EF_MIPS_FP64.
1681         * sysdeps/mips/dl-machine-reject-phdr.h: New file.
1682         * sysdeps/mips/tst-abi-fp32mod.c: Likewise.
1683         * sysdeps/mips/tst-abi-fpxxmod.c: Likewise.
1684         * sysdeps/mips/tst-abi-fpxxomod.c: Likewise.
1685         * sysdeps/mips/tst-abi-fp64mod.c: Likewise.
1686         * sysdeps/mips/tst-abi-fp64amod.c: Likewise.
1687         * sysdeps/mips/tst-abi-interlink.c: Likewise.
1688         * sysdeps/mips/tst-mode-switch-1.c: Likewise.
1689         * sysdeps/mips/tst-mode-switch-2.c: Likewise.
1690         * sysdeps/mips/tst-mode-switch-3.c: Likewise.
1691         * sysdeps/unix/sysv/linux/mips/configure.ac (o32-fpabi): Define to
1692         record the current FP ABI extension.
1693         (mips-mode-switch): Define to show if kernel headers support mode
1694         switching.
1695         * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
1696         * sysdeps/unix/sysv/linux/mips/ldsodefs.h: Increase maximum
1697         supported SYSV ABI version to 3.
1698         * sysdeps/unix/sysv/linux/mips/libc-abis: Add new MIPS_O32_FP64
1699         feature.
1701 2014-12-31  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
1702             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1704         * sysdeps/powerpc/powerpc64/power7/strcpy.S (strcpy): Optimize unaligned
1705         path.
1706         * benchtests/bench-strcpy.c (test_main): Add more unaligned inputs.
1708 2014-12-31  Joseph Myers  <joseph@codesourcery.com>
1710         * sysdeps/powerpc/bits/fenvinline.h (fegetround): Rename macro to
1711         __fegetround and redefine to call __fegetround.  Remove condition
1712         on [!__NO_MATH_INLINES].
1713         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove inline
1714         function.
1715         * sysdeps/powerpc/nofpu/fenv_libc.h: Remove file.
1716         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
1717         Remove macro.
1718         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Include <fenv.h>
1719         instead of <fenv_libc.h>.
1720         (__llrintl): Call fegetround instead of __fegetround.
1721         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Include <fenv.h>
1722         instead of <fenv_libc.h>.
1723         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
1724         (__lrintl): Call fegetround instead of __fegetround.
1725         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Include <fenv.h>
1726         instead of <fenv_libc.h>.
1727         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
1728         (__rintl): Call fegetround instead of __fegetround.
1730 2014-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
1732         * scripts/gen-posix-conf-vars.awk: Don't use multi-dimensional
1733         arrays.
1735 2014-12-30  H.J. Lu  <hongjiu.lu@intel.com>
1737         [BZ #17775]
1738         * sysdeps/i386/dl-machine.h (PI_STATIC_AND_HIDDEN): Removed.
1739         (elf_machine_dynamic) [!PI_STATIC_AND_HIDDEN]: Likewise.
1740         (elf_machine_load_address) [!PI_STATIC_AND_HIDDEN]: Likewise.
1742 2014-12-30  Andrew Senkevich  <andrew.senkevich@intel.com>
1744         * sysdeps/i386/tls-macros.h: Include <features.h>.
1745         (TLS_LE): Use non-PIC version for GCC >= 5.0.
1746         (TLS_IE): Likewise.
1747         (TLS_LD): Likewise.
1748         (TLS_GD): Likewise.
1749         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Don't
1750         define for GCC >= 5.0.
1752 2014-12-30  Chris Metcalf  <cmetcalf@ezchip.com>
1754         * math/test-fenv.c (test_single_exception, set_single_exc,
1755         feenv_nomask_test, feenv_mask_test, feexcp_nomask_test,
1756         feexcp_mask_test, feenable_test, fe_single_test): Add
1757         [!FE_ALL_EXCEPT] test so these routines are not compiled in the
1758         case where they are not used.
1759         * math/libm-test.inc: Likewise.
1760         * setjmp/test-setjmp-fp.c: Mark attribute ((unused)) on variable
1761         unused in the absence of FP rounding/exception support.
1762         * stdio-common/tst-printf-round.c: Likewise.
1763         * stdlib/tst-strtod-round.c: Likewise.
1764         * stdlib/tst-strtod-underflow.c: Likewise.
1766 2014-12-30  Joseph Myers  <joseph@codesourcery.com>
1768         [BZ #17723]
1769         * include/fenv.h (__feraiseexcept): Use libm_hidden_proto.
1770         * math/fraiseexcpt.c (__feraiseexcept): Use libm_hidden_def.
1771         * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1772         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
1773         libm_hidden_weak.
1774         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Likewise.
1775         * sysdeps/hppa/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
1776         * sysdeps/i386/fpu/fraiseexcpt.c (__feraiseexcept): Use
1777         libm_hidden_def.
1778         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1779         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
1780         libm_hidden_weak.
1781         * sysdeps/m68k/coldfire/fpu/fraiseexcpt.c (feraiseexcept):
1782         Likewise.
1783         * sysdeps/microblaze/math_private.h (__feraiseexcept): New macro.
1784         * sysdeps/mips/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1785         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
1786         libm_hidden_weak.
1787         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Use
1788         libm_hidden_def.
1789         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
1790         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c
1791         (__feraiseexcept): Likewise.
1792         * sysdeps/s390/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1793         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
1794         libm_hidden_weak.
1795         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
1796         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Use
1797         libm_hidden_def.
1798         * sysdeps/tile/math_private.h (__feraiseexcept): New macro.
1799         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (__feraiseexcept):
1800         Use libm_hidden_def.
1801         * sysdeps/x86_64/fpu/fraiseexcpt.c (__feraiseexcept): Use
1802         libm_hidden_def.
1803         (feraiseexcept): Define as weak not strong alias.  Use
1804         libm_hidden_weak.
1805         * sysdeps/x86/fpu/bits/fenv.h (__feraiseexcept_invalid_divbyzero):
1806         New inline function.  Factored out of ...
1807         (feraiseexcept): ... here.  Use __feraiseexcept_invalid_divbyzero.
1808         * sysdeps/x86/fpu/include/bits/fenv.h: New file.
1809         * math/e_scalb.c (invalid_fn): Call __feraiseexcept instead of
1810         feraiseexcept.
1811         * math/w_acos.c (__acos): Likewise.
1812         * math/w_asin.c (__asin): Likewise.
1813         * math/w_ilogb.c (__ilogb): Likewise.
1814         * math/w_j0.c (y0): Likewise.
1815         * math/w_j1.c (y1): Likewise.
1816         * math/w_jn.c (yn): Likewise.
1817         * math/w_log.c (__log): Likewise.
1818         * math/w_log10.c (__log10): Likewise.
1819         * sysdeps/aarch64/fpu/feupdateenv.c (feupdateenv): Likewise.
1820         * sysdeps/aarch64/fpu/math_private.h
1821         (libc_feupdateenv_test_aarch64): Likewise.
1822         * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Likewise.
1823         * sysdeps/arm/fenv_private.h (libc_feupdateenv_test_vfp): Likewise.
1824         * sysdeps/arm/feupdateenv.c (feupdateenv): Likewise.
1825         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Likewise.
1826         * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Likewise.
1827         * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Likewise.
1828         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Likewise.
1829         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
1830         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
1831         * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Likewise.
1833 2014-12-30  H.J. Lu  <hongjiu.lu@intel.com>
1835         [BZ #17732]
1836         * io/test-utime.c (main): Replace %ld with %jd and cast to
1837         intmax_t.
1838         * libio/tst-ftell-active-handler.c (do_append_test): Likewise.
1839         * nptl/tst-mutex5.c: Include <stdint.h>.
1840         (do_test): Replace %ld with %jd and cast to intmax_t.
1841         * posix/tst-regex.c (run_test): Likewise.
1842         (run_test_backwards): Likewise.
1843         * rt/tst-clock.c: Include <stdint.h>.
1844         (clock_test): Replace %ld with %jd and cast to intmax_t.
1845         * rt/tst-cpuclock1.c: Include <stdint.h>.
1846         (do_test): Replace %lu with %ju and cast to uintmax_t.
1847         * rt/tst-cpuclock2.c: Include <stdint.h>.
1848         (do_test): Replace %lu with %ju and cast to uintmax_t.
1849         * rt/tst-mqueue1.c: Include <stdint.h>.
1850         (check_attrs): Replace %ld with %jd and cast to intmax_t.
1851         * rt/tst-mqueue3.c (fct): Replace %ld with %jd and cast to
1852         intmax_t.
1853         * rt/tst-mqueue4.c (do_test): Likewise.
1854         * rt/tst-timer4.c: Include <stdint.h>.
1855         (check_ts): Replace %ld with %jd and cast to intmax_t.
1856         (do_test): Likewise.
1857         * stdio-common/tst-fmemopen2.c (do_test): Replace %ld with %jd
1858         and cast to intmax_t.
1859         * sysdeps/pthread/tst-timer.c (main): Likewise.
1860         * time/clocktest.c (main): Likewise.
1861         * time/tst-posixtz.c (do_test): Likewise.
1862         * timezone/tst-timezone.c (main): Likewise.
1864 2014-12-30  Andrew Senkevich  <andrew.senkevich@intel.com>
1865             H.J. Lu  <hongjiu.lu@intel.com>
1867         * sysdeps/i386/i686/multiarch/bcopy-sse2-unaligned.S: New file.
1868         * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
1869         * sysdeps/i386/i686/multiarch/memmove-sse2-unaligned.S: Likewise.
1870         * sysdeps/i386/i686/multiarch/mempcpy-sse2-unaligned.S: Likewise.
1871         * sysdeps/i386/i686/multiarch/bcopy.S: Select the sse2_unaligned
1872         version if bit_Fast_Unaligned_Load is set.
1873         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
1874         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
1875         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
1876         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
1877         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
1878         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
1879         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
1880         bcopy-sse2-unaligned, memcpy-sse2-unaligned,
1881         memmove-sse2-unaligned and mempcpy-sse2-unaligned.
1882         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c (MAX_IFUNC): Set
1883         to 4.
1884         (__libc_ifunc_impl_list): Test __bcopy_sse2_unaligned,
1885         __memmove_chk_sse2_unaligned, __memmove_sse2_unaligned,
1886         __memcpy_chk_sse2_unaligned, __memcpy_sse2_unaligned,
1887         __mempcpy_chk_sse2_unaligned, and __mempcpy_sse2_unaligned.
1889 2014-12-29  Chris Metcalf  <cmetcalf@ezchip.com>
1891         * sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Use #ifndef
1892         instead of #if to avoid a Wundef warning.
1893         * stdlib/tst-limits.c (do_test): Likewise.
1895         * sysdeps/tile/math_private.h (fetestexcept): Add macro to
1896         parallel other exception macros.
1897         (fegetenv): Convert from macro to extern inline so that it applies
1898         retroactively to inline functions already seen by the compiler.
1899         (fesetenv, feupdateenv, fegetround, fesetround): Likewise.
1901         * posix/Makefile (before-compile): Use $(objpfx) for
1902         posix-conf-vars-def.h.
1904 2014-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
1906         * posix/getconf.c (main): Use size_t for type of I.
1907         * scripts-gen-posix-conf-vars.awk (END): Use size_t for type of
1908         NSPEC.
1910         * posix/posix-conf-vars.list (SPEC:XBS5): Add sysconf prefix.
1911         * posix/confstr.c: Define NEED_SPEC_ARRAY to 0.
1912         * posix/posix-envs.def: Likewise.
1913         * sysdeps/posix/sysconf.c: Likewise.
1914         * posix/getconf.c: Define NEED_SPEC_ARRAY to 1.
1915         (specs): Remove array.
1916         * scripts/gen-posix-conf-vars.awk: Support generation of specs
1917         array.
1919         * posix/posix-conf-vars.list: Add _POSIX sysconf namespace.
1920         * sysdeps/posix/sysconf.c: Include posix-conf-vars.h.
1921         (__sysconf): Use CONF_IS_* macros.
1923         * posix/Makefile (before-compile): Add posix-conf-vars-def.h.
1924         ($(objpfx)posix-conf-vars-def.h): New target.
1925         * posix/posix-conf-vars.list: New file.
1926         * posix/posix-conf-vars.h: New file.
1927         * posix/confstr.c: Include posix-conf-vars.h.
1928         (confstr): Use CONF_IS_* macros.
1929         * posix/posix-envs.def: Include posix-conf-vars.h.  Use
1930         CONF_IS_* macros.
1931         * scripts/gen-posix-conf-vars.awk: New file.
1933 2014-12-26  Chris Metcalf  <cmetcalf@ezchip.com>
1935         * sysdeps/tile/math_private.h (fegetenv, fesetenv, feupdateenv,
1936         fegetround): Add no-op macros to avoid linknamespace issues.
1938         * sysdeps/unix/sysv/linux/clock_settime.c (SYSDEP_SETTIME): Remove
1939         definitions of INTERNAL_VSYSCALL and INLINE_VSYSCALL.
1941         * sysdeps/unix/sysv/linux/tile/sysdep.h
1942         (HAVE_CLOCK_GETTIME_VSYSCALL): Move definition out of
1943         assembly-specific section to avoid a redefinition warning.
1945         * sysdeps/tile/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast to
1946         long before casting to pointer to avoid a cast warning.
1948 2014-12-23  Chris Metcalf  <cmetcalf@ezchip.com>
1950         * sysdeps/tile/tilegx/Implies: New file.
1952 2014-12-23  Richard Earnshaw  <rearnsha@arm.com>
1954         * string/stpcpy.c (__stpcpy): Rewrite using strlen and memcpy.
1956 2014-12-23  Florian Weimer  <fweimer@redhat.com>
1958         * iconvdata/run-iconv-test.sh: Actually test iconv modules.
1960 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
1962         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
1963         not define.
1964         * sysdeps/unix/sysv/linux/utimes.c: Do not include
1965         <kernel-features.h>.
1966         (__utimes) [__NR_utimes]: Make code unconditional.
1967         (__utimes) [!__ASSUME_UTIMES]: Remove conditional code.
1968         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
1969         (__ASSUME_UTIMES): Do not undefine.
1970         * sysdeps/unix/sysv/linux/tile/kernel-features.h
1971         (__ASSUME_UTIMES): Likewise.
1972         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
1973         (__ASSUME_UTIMES): Define for [__LINUX_KERNEL_VERSION >= 0x030e00]
1974         instead of undefining for [__LINUX_KERNEL_VERSION < 0x030e00].
1975         * sysdeps/unix/sysv/linux/hppa/utimes.c: New file.
1977 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
1979         * sysdeps/mips/memcpy.S: Fix preprocessor indentation.
1981 2014-12-22  Chris Metcalf  <cmetcalf@ezchip.com>
1983         [BZ #17747]
1984         * math/w_j0.c [defined NO_LONG_DOUBLE] (j0, y0): Convert strong
1985         alias to weak alias for j0l, y0l.
1986         * math/w_j1.c [defined NO_LONG_DOUBLE] (j1, y1): Likewise.
1987         * math/w_jn.c [defined NO_LONG_DOUBLE] (jn, yn): Likewise.
1989         [BZ #17746]
1990         * sysdeps/tile/tilegx/strstr.c (STRSTR2): Remove implicit boolean
1991         conversion.
1993 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
1995         * sysdeps/unix/mips/sysdep.h (__mips_isa_rev): Set
1996         to zero if not already defined.
1998 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
2000         [BZ #17724]
2001         * sysdeps/ieee754/k_standard.c: Don't include <float.h>.
2002         (__kernel_standard_f): Remove.  Moved to k_standardf.c.
2003         (__kernel_standard_l): Remove.  Moved to k_standardl.c with
2004         (char *) casts added.
2005         * sysdeps/ieee754/k_standardf.c: New file.
2006         * sysdeps/ieee754/k_standardl.c: Likewise.
2007         * math/Makefile (libm-support): Remove k_standard.
2008         (libm-calls): Add k_standard.
2010 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
2012         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
2013         Optimize to avoid an unnecessary FPCR read.
2015 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
2017         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv):
2018         Optimize to reduce FPCR/FPSR accesses.
2020 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
2022         * sysdeps/aarch64/fpu/ftestexcept.c (fetestexcept):
2023         Call libc_fetestexcept_aarch64.
2025 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
2027         * sysdeps/aarch64/fpu/fesetround.c (fesetround):
2028         Call libc_fesetround_aarch64.
2030 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
2032         [BZ #17733]
2033         * sysdeps/unix/sysv/linux/bind.S (NO_WEAK_ALIAS): Do not define.
2034         (__bind): Do not define as weak alias.
2035         * sysdeps/unix/sysv/linux/getsockname.S (NO_WEAK_ALIAS): Do not
2036         define.
2037         (__getsockname): Do not define as weak alias.
2039 2014-12-22  Will Newton  <will.newton@linaro.org>
2041         * manual/install.texi: Document that we require bison 2.7
2042         or above.
2043         * INSTALL: Regenerate.
2044         * configure.ac: Use AC_CHECK_PROG_VER instead of
2045         AC_PATH_PROG when checking for bison and check for
2046         version 2.7 or above.
2047         * configure: Regenerate.
2049 2014-12-21  Chris Metcalf  <cmetcalf@ezchip.com>
2051         [BZ #17745]
2052         * sysdeps/tile/ffs.c (__ffs): Moved ffsll definition...
2053         * sysdeps/tile/ffsll.c (ffsll): To here.
2055         * sysdeps/unix/sysv/linux/tile/localplt.data: Removed.
2057 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
2059         * elf/dl-tls.c (__tls_get_addr): Provide the hidden definition
2060         if not defined.
2061         * sysdeps/i386/dl-tls.h (___tls_get_addr): Provide the hidden
2062         definition.
2063         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
2064         hidden ___tls_get_addr.
2065         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
2066         hidden __tls_get_addr.
2067         * sysdeps/generic/localplt.data (__tls_get_addr): Removed.
2068         * sysdeps/unix/sysv/linux/i386/localplt.data (___tls_get_addr):
2069         Likewise.
2071 2014-12-21  Andreas Schwab  <schwab@linux-m68k.org>
2073         * sysdeps/m68k/dl-machine.h (RTLD_START): Remove @PLTPC from
2074         _dl_init call.
2076 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
2078         * sysdeps/i386/dl-machine.h (_dl_start_user): Remove @PLT
2079         from "call _dl_init@PLT".
2080         * sysdeps/x86_64/dl-machine.h (_dl_start_user): Likewise.
2082 2014-12-21  Anders Kaseorg  <andersk@mit.edu>
2084         * manual/search.texi: (Array Sort Function): Clarify stable sorting
2085         guarantees.
2087 2014-12-20  Chris Metcalf  <cmetcalf@ezchip.com>
2089         * sysdeps/unix/sysv/linux/tile/localplt.data: New file.
2091 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
2093         [BZ #17744]
2094         * sysdeps/tile/tilegx/strstr.c (STRSTR): Call __strnlen, not
2095         strnlen.
2097 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
2099         * sysdeps/mips/addmul_1.S (__mpn_addmul_1): Use mulu/muhu instead
2100         of multu on MIPSr6.
2101         * sysdeps/mips/mul_1.S (__mpn_mul_1): Ditto.
2102         * sysdeps/mips/submul_1.S (__mpn_submul_1): Ditto.
2103         * sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Ditto.
2104         * sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Ditto.
2105         * sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Ditto.
2107 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
2109         * sysdeps/mips/sys/asm.h (PTR_ADDU): Use addu on mips32r6/mips64r6.
2110         (PTR_ADDIU): Use addiu for mips32r6/mips64r6.
2111         (PTR_SUBU): Use subu for mips32r6/mips64r6.
2112         (PTR_SUBIU): Use subu for mips32r6/mips64r6 (subiu does not exist).
2113         * sysdeps/mips/machine-gmon.h (PTR_ADDU_STRING) Use addu for
2114         mips32r6/mips64r6.
2115         (PTR_SUBU_STRING) Use subu for mips32r6/mips64r6.
2117 2014-12-19  Ondřej Bílka  <neleai@seznam.cz>
2119         * string/strncat.c (STRNCAT): Simplify implementation.
2121 2014-12-19  David S. Miller  <davem@davemloft.net>
2123         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Use a union to
2124         access the quad as both a long double and as a series of 4 words.
2126         * get-dynamic-info.h (elf_get_dynamic_info): Ignore -Warray-bounds for a
2127         link_map->l_info array access.
2129 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
2131         * iconvdata/tst-loading.c (TIMEOUT): Increase timeout 10 sec.
2133         * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec.
2134         * math/atest-exp2.c (TIMEOUT): Likewise.
2135         * math/atest-sincos.c (TIMEOUT): Likewise.
2137 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
2139         * sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace
2140         -Wno-error with -fno-builtin-lround.
2142 2014-12-19  Torvald Riegel  <triegel@redhat.com>
2144         * sysdeps/unix/sysv/linux/i386/lowlevellock-futex.h: New file.
2145         Contains futex constants and functions moved over from ...
2146         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.  Include
2147         <lowlevellock-futex.h>.
2148         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
2149         (lll_timedwait_tid): Add comments and parentheses around macro
2150         arguments.
2152 2014-12-19  Torvald Riegel  <triegel@redhat.com>
2154         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Include
2155         <lowlevellock-futex.h>.  Remove FUTEX_* constants defined there.
2156         (__lll_private_flag): Remove.
2157         (lll_futex_wait): Likewise.
2158         (lll_futex_timed_wait): Likewise.
2159         (lll_futex_wake): Likewise.
2160         (lll_futex_requeue): Likewise.
2161         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
2162         (__lll_timedwait_tid): Spell out argument names.
2163         (lll_timedwait_tid): Add comments and parentheses around macro
2164         arguments.
2165         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Make FUTEX_* constants,
2166         LLL_SHARED and LLL_PRIVATE usable from assembly code.
2168 2014-12-19  Torvald Riegel  <triegel@redhat.com>
2170         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Remove file.
2171         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
2172         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
2173         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Likewise.
2174         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Likewise.
2175         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Likewise.
2176         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
2177         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
2178         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
2179         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
2180         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
2181         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
2182         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
2183         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
2184         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Likewise.
2185         * sysdeps/unix/sysv/linux/sh/sem_post.S: Likewise.
2186         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
2187         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Likewise.
2188         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
2190 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
2192         * sysdeps/x86_64/x32/Makefile: New file.
2194 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
2196         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Replace
2197         1L with (mp_limb_t) 1.
2199 2014-12-17  Roland McGrath  <roland@hack.frob.com>
2201         * sysdeps/nptl/fork.c (__fork_generation_pointer): Variable moved ...
2202         * nptl/libc_pthread_init.c: ... here.
2203         * sysdeps/nptl/fork.c (__fork_handlers): Variable moved ...
2204         * nptl/register-atfork.c: ... here.
2206         * sysdeps/nptl/gai_misc.h (__gai_start_notify_thread):
2207         Use pthread_sigmask rather than INTERNAL_SYSCALL.
2208         Use assert_perror to check its return value.
2209         (__gai_create_helper_thread): Likewise.
2211         * inet/if_index.c (__if_freenameindex): Add libc_hidden_def.
2213         * malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.
2215 2014-12-17  Joseph Myers  <joseph@codesourcery.com>
2217         [BZ #17725]
2218         * sysdeps/generic/profil-counter.h (profil_counter): Rename to
2219         __profil_counter.
2220         * sysdeps/unix/sysv/linux/hppa/profil-counter.h (profil_counter):
2221         Likewise.
2222         * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter):
2223         Likewise.
2224         * sysdeps/unix/sysv/linux/ia64/profil-counter.h (profil_counter):
2225         Likewise.
2226         * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h
2227         (profil_counter): Likewise.
2228         * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h
2229         (profil_counter): Likewise.
2230         * sysdeps/unix/sysv/linux/sh/profil-counter.h (profil_counter):
2231         Likewise.
2232         * sysdeps/unix/sysv/linux/tile/profil-counter.h (profil_counter):
2233         Likewise.
2234         * sysdeps/unix/sysv/linux/x86_64/profil-counter.h
2235         (profil_counter): Likewise.
2236         * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter):
2237         Likewise.
2238         [!__profil_counter] (profil_counter): Define as weak alias of
2239         __profil_counter.
2240         * sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h
2241         (profil_counter): Rename to __profil_counter.
2242         [!__profil_counter] (profil_counter): Define as weak alias of
2243         __profil_counter.
2244         * sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h
2245         (profil_counter): Rename to __profil_counter.
2246         [!__profil_counter] (profil_counter): Define as weak alias of
2247         __profil_counter.
2248         * sysdeps/posix/profil.c: Update comment referring to
2249         profil_counter.
2250         (__profil): Use __profil_counter instead of profil_counter.
2251         * sysdeps/posix/sprofil.c (profil_counter): Rename to
2252         __profil_counter.  Use __profil_counter_ushort and
2253         __profil_counter_uint in definitions.
2254         (__sprofil): Use __profil_counter_uint and __profil_counter_ushort
2255         instead of profil_counter_uint and profil_counter_ushort.
2257         [BZ #17722]
2258         * inet/inet_mkadr.c (inet_makeaddr): Rename to __inet_makeaddr and
2259         define as weak alias of __inet_makeaddr.
2260         * resolv/inet_addr.c (inet_addr): Rename to __inet_addr and define
2261         as weak alias of __inet_addr.
2262         * resolv/inet_pton.c (inet_pton): Rename to __inet_pton and define
2263         as weak alias of __inet_pton.  Use libc_hidden_weak.
2264         * include/arpa/inet.h (__inet_pton): Declare.  Use
2265         libc_hidden_proto.
2266         (inet_makeaddr): Don't use libc_hidden_proto.
2267         (__inet_makeaddr): Declare.  Use libc_hidden_proto.
2268         * resolv/res_init.c (__res_vinit): Use __inet_pton instead of
2269         inet_pton.  Use __inet_makeaddr instead of inet_makeaddr.
2270         * conform/Makefile (test-xfail-POSIX/pthread.h/linknamespace):
2271         Remove variable.
2272         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
2273         (test-xfail-POSIX/time.h/linknamespace): Likewise.
2275 2014-12-17  Steve Ellcey  <sellcey@imgtec.com>
2277         * inet/getnetgrent_r.c: Move while loop to be inside if statement.
2279 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
2281         * stdio-common/bug-vfprintf-nargs.c (do_test):
2282         Cast value to intptr_t to avoid format warning
2283         for usage with PRIdPTR printing macro.
2285 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
2287         * libio/tst-widetext.c (do_test):
2288         Use format type %td instead of %Zd for ptrdiff_t
2289         in order to avoid format warning.
2291 2014-12-17  Andreas Schwab  <schwab@suse.de>
2293         * nscd/mem.c (gc): Add size_t cast to match printf format.
2295 2014-12-16  Roland McGrath  <roland@hack.frob.com>
2297         * sysdeps/gnu/unwind-resume.c: #include <sysdep.h>.
2298         (init): Apply PTR_MANGLE to pointers before storing them.
2299         (_Unwind_Resume, __gcc_personality_v0): Apply PTR_DEMANGLE to pointers
2300         before using them.
2302 2014-12-16  Joseph Myers  <joseph@codesourcery.com>
2304         [BZ #17719]
2305         * sysdeps/x86_64/memrchr.S (memrchr): Rename to __memrchr and
2306         define as weak alias of __memrchr.
2307         (__memrchr): Do not define as strong alias of memrchr.
2308         * conform/Makefile (test-xfail-XPG4/libgen.h/linknamespace):
2309         Remove variable.
2310         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
2311         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
2312         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
2314         [BZ #17717]
2315         * inet/if_index.c (if_nametoindex): Rename to __if_nametoindex and
2316         define as weak alias of __if_nametoindex.  Use libc_hidden_weak.
2317         (if_indextoname): Rename to __if_indextoname and define as weak
2318         alias of __if_indextoname.  Use libc_hidden_weak.
2319         (if_freenameindex): Rename to __if_freenameindex and define as
2320         weak alias of __if_freenameindex.
2321         (if_nameindex): Rename to __if_nameindex and define as weak alias
2322         of __if_nameindex.
2323         * sysdeps/mach/hurd/if_index.c (if_nametoindex): Rename to
2324         __if_nametoindex and define as weak alias of __if_nametoindex.
2325         Use libc_hidden_weak.
2326         (if_freenameindex): Rename to __if_freenameindex and define as
2327         weak alias of __if_freenameindex.
2328         (if_nameindex): Rename to __if_nameindex and define as weak alias
2329         of __if_nameindex.
2330         (if_indextoname): Rename to __if_indextoname and define as weak
2331         alias of __if_indextoname.  Use libc_hidden_weak.
2332         * sysdeps/unix/sysv/linux/if_index.c (if_nametoindex): Rename to
2333         __if_nametoindex and define as weak alias of __if_nametoindex.
2334         Use libc_hidden_weak.
2335         (if_freenameindex): Rename to __if_freenameindex and define as
2336         weak alias of __if_freenameindex.  Use libc_hidden_weak.
2337         (if_nameindex_netlink): Use __if_freenameindex instead of
2338         if_freenameindex.
2339         (if_nameindex): Rename to __if_nameindex and define as weak alias
2340         of __if_nameindex.  Use libc_hidden_weak.
2341         (if_indextoname): Rename to __if_indextoname and define as weak
2342         alias of __if_indextoname.  Use libc_hidden_weak.
2343         * include/net/if.h [!_ISOMAC] (__if_nametoindex): Declare and use
2344         libc_hidden_proto.
2345         [!_ISOMAC] (__if_freenameindex): Likewise.
2346         * resolv/res_init.c (__res_vinit): Use __if_nametoindex instead of
2347         if_nametoindex.
2348         * conform/Makefile (test-xfail-XPG4/grp.h/linknamespace): Remove
2349         variable.
2350         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
2351         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
2352         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
2353         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
2354         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
2355         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
2356         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
2358         * conform/Makefile (test-xfail-UNIX98/semaphore.h/linknamespace):
2359         Remove variable.
2360         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
2361         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
2363 2014-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
2365         * resolv/res_send.c (__libc_res_nsend): Disable warning 'array
2366         subscript above bounds'
2368         * resolv/res_send.c (__libc_res_nsend): Fix check for nsmap
2369         bounds.
2371 2014-12-16  Arjun Shankar  <arjun.is@lostca.se>
2373         * libio/tst-fopenloc.c: Use test-skeleton.c.
2375         * stdlib/tst-bsearch.c: Use test-skeleton.c.
2376         (entry): Rename to ITEM.
2377         (do_test, comp): Adjust.
2379         * stdio-common/tst-fseek.c: Use test-skeleton.c.
2381 2014-12-16  Torvald Riegel  <triegel@redhat.com>
2383         * string/tester.c: Include <libc-internal.h>.
2384         (test_memset): Ignore -Wmemset-transposed-args.
2386 2014-12-16  Torvald Riegel  <triegel@redhat.com>
2388         * misc/tst-mntent2.c (do_test): Fix warning.
2390 2014-12-16  Torvald Riegel  <triegel@redhat.com>
2392         * elf/tst-unique4lib.cc(a): Mark as used.
2394 2014-12-16  Florian Weimer  <fweimer@redhat.com>
2396         [BZ #17630]
2397         * resolv/nss_dns/dns-network.c (getanswer_r): Iterate over alias
2398         names.
2400 2014-12-16  Allan McRae  <allan@archlinux.org>
2402         * stdio-common/Makefile (tests): Re-add bug26.
2404 2014-12-15  Ondřej Bílka  <neleai@seznam.cz>
2406         [BZ #17657]
2407         * locale/programs/ld-ctype.c (find_translit2, read_widestring): Return
2408         static array.
2410 2014-12-15  Bernard Ogden  <bernie.ogden@linaro.org>
2412         * nptl/lowlevellock.c (__lll_lock_wait_private): Add comments.
2413         (__lll_lock_wait): Likewise.
2414         (__lll_timedlock_wait): Likewise.
2415         (__lll_timedwait_tid): Likewise.
2416         * nptl/lowlevelrobustlock.c (__lll_robust_lock_wait): Likewise.
2417         (__lll_robust_timedlock_wait): Likewise.
2418         * sysdeps/nptl/lowlevellock.h (lll_trylock): Likewise.
2419         (lll_cond_trylock): Likewise.
2420         (__lll_lock): Likewise.
2421         (__lll_robust_lock): Likewise.
2422         (__lll_cond_lock): Likewise.
2423         (lll_robust_cond_lock): Likewise.
2424         (__lll_timedlock): Likewise.
2425         (__lll_robust_timedlock): Likewise.
2426         (__lll_unlock): Likewise.
2427         (__lll_robust_unlock): Likewise.
2428         (lll_wait_tid): Likewise.
2429         (lll_timedwait_tid): Likewise.
2431 2014-12-15  Torvald Riegel  <triegel@redhat.com>
2433         * nptl/tst-sem4.c (do_test): Start with a fresh semaphore state.
2435 2014-12-15  Torvald Riegel  <triegel@redhat.com>
2437         * nptl/tst-mutex5.c (do_test): Do not skip tests if elision is enabled.
2439 2014-12-15  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
2441         * stdio-common/test-vfprintf.c: Include <libc-internal.h>.
2442         * stdio-common/tst-sprintf.c: Likewise.
2444 2014-12-15  Torvald Riegel  <triegel@redhat.com>
2446         * sysdeps/unix/sysv/linux/s390/pthread_once.c: Remove file.
2448 2014-12-15  Jeff Law  <law@redhat.com>
2450         [BZ #16617]
2451         * stdio-common/vfprintf.c (vfprintf): Allocate large specs array
2452         on the heap.  (CVE-2012-3406)
2453         * stdio-common/bug23-2.c, stdio-common/bug23-3.c: New file.
2454         * stdio-common/bug23-4.c: New file.  Test case by Joseph Myers.
2455         * stdio-common/Makefile (tests): Add bug23-2, bug23-3, bug23-4.
2457 2014-12-15  Will Newton  <will.newton@linaro.org>
2459         * manual/install.texi: Bump required version of texinfo
2460         to 4.7 from 4.5.
2461         * INSTALL: Regenerated.
2462         * configure.ac: Check for makeinfo version 4.7 and above.
2463         * configure: Regenerated.
2465 2014-12-12  Roland McGrath  <roland@hack.frob.com>
2467         * sysdeps/posix/shm-directory.h (SHM_GET_NAME): Take new argument
2468         PREFIX, string constant to insert between directory and name.
2469         * sysdeps/posix/shm_open.c: Update caller.
2470         * sysdeps/posix/shm_unlink.c: Likewise.
2471         * nptl/semaphoreP.h (struct mountpoint_info): Type removed.
2472         (__where_is_shmfs, mountpoint, __namedsem_once): Declarations removed.
2473         (SEM_SHM_PREFIX): New macro.
2474         * sysdeps/posix/Makefile (librt-routines): Add shm-directory only if
2475         [$(have-thread-library) = no].
2476         * nptl/Makefile (libpthread-routines): Add shm-directory.
2477         * nptl/Versions (GLIBC_PRIVATE): Add __shm_directory.
2478         * sysdeps/nptl/shm-directory.h: New file.
2479         * sysdeps/posix/shm-directory.c
2480         [IS_IN (libpthread)] (__shm_directory): Add hidden_def.
2481         * sysdeps/unix/sysv/linux/shm-directory.c: Likewise.
2482         * nptl/sem_open.c (check_add_mapping): Use munmap function rather than
2483         INTERNAL_SYSCALL.
2484         (__where_is_shmfs): Function removed.
2485         (mountpoint, defaultmount, defaultdir, __namedsem_once):
2486         Variables removed.
2487         (sem_open): Use __libc_close function rather than INTERNAL_SYSCALL.
2488         Use SHM_GET_NAME.
2489         * nptl/sem_unlink.c: Prototypify.  Use SHM_GET_NAME.
2491         * sysdeps/nptl/bits/libc-lockP.h [IS_IN (libpthread)]
2492         (PTFAVAIL, __libc_ptf_call, __libc_ptf_call_always): Define as
2493         unconditional for use inside libpthread.
2494         [IS_IN (libpthread)]: Include <nptl/pthreadP.h>.
2496 2014-12-12  Roland McGrath  <roland@hack.frob.com>
2498         * nptl/pthread_getaffinity.c: New file.
2499         * nptl/pthread_setaffinity.c: New file.
2500         * nptl/pthread_getname.c: New file.
2501         * nptl/pthread_setname.c: New file.
2503         * nptl/pthread_create.c (START_THREAD_DEFN)
2504         [! __ASSUME_SET_ROBUST_LIST]: Add missing & in lll_futex_wake argument.
2506 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
2507             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2509         * resolv/res_send.c (send_vc): Disable warning resplen may
2510         be used uninitialized.
2512 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
2514         * nptl/tst-mutex6.c
2515         (ATTR_NULL): New define checks ATTR against NULL.
2516         (do_test): Use !ATTR_NULL instead of ATTR != NULL.
2517         * nptl/tst-mutexpp6.c (ATTR_NULL): New define.
2519 2014-12-11  James Lemke  <jwlemke@codesourcery.com>
2521         [BZ #17581]
2522         * malloc/hooks.c
2523         (mem2mem_check): Revert my previous change.
2524         (malloc_check_get_size): Revert my previous change.
2525         (mem2chunk_check): Revert my previous change.
2527 2014-12-11  Roland McGrath  <roland@hack.frob.com>
2529         * sysdeps/posix/shm-directory.c: New file.
2530         * sysdeps/posix/shm-directory.h: New file.
2531         * sysdeps/posix/Makefile [($(subdir) = rt] (librt-routines): Add it.
2532         * sysdeps/posix/shm_open.c: Use SHM_GET_NAME.
2533         Use O_NOFOLLOW and O_CLOEXEC if available.  Transmute EISDIR to EINVAL.
2534         * sysdeps/posix/shm_unlink.c: Use SHM_GET_NAME.
2535         Transmute EPERM to EACCES.
2536         * sysdeps/unix/sysv/linux/shm-directory.c: New file, most code taken
2537         from ...
2538         * sysdeps/unix/sysv/linux/shm_open.c: ... here.  File removed.
2539         * sysdeps/unix/sysv/linux/shm_unlink.c: File removed.
2541 2014-12-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2543         * sysdeps/sh/jmpbuf_unwind.h (_jmpbuf_sp): Declare SP as void
2544         pointer and cast to uintptr_t.
2545         * sysdeps/sh/nptl/tls.h (TLS_INIT_TP): Use NULL instead of 0.
2546         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_futex_timed_wait):
2547         Add cast to avoid warning.
2548         * sysdeps/unix/sysv/linux/sh/register-dump.h: Use 0 instead of NULL.
2550 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
2552         * nptl/semaphore.h: Move to ...
2553         * sysdeps/pthread/semaphore.h: ... here.
2554         * Makefile (installed-headers): Change nptl/semaphore.h to
2555         sysdeps/pthread/semaphore.h.
2557 2014-12-11  Roland McGrath  <roland@hack.frob.com>
2559         * misc/tst-error1.c (do_test): Ignore -Wformat-security for
2560         generated error format strings.
2562         * stdio-common/tstdiomisc.c (t2): Ignore -Wformat and
2563         -Wformat-extra-args warnings for scanf formats.
2564         * stdio-common/scanf4.c (main): Ignore -Wformat-zero-length around
2565         test of zero-length format (duh).
2566         * stdio-common/scanf7.c (main): Ignore -Wformat warnings for
2567         corner-case scanf format test.
2568         * stdio-common/test-vfprintf.c (do_test): Ignore -Wformat-security for
2569         generated fprintf format string.
2570         * stdio-common/tst-sprintf.c (do_test): Ignore -Wformat warnings for
2571         corner-case sprintf format tests.
2572         * stdio-common/tst-printf.c: Ignore -Wformat throughout.
2573         * stdio-common/tst-printfsz.c (main): Ignore -Wformat and
2574         -Wformat-extra-args warnings throughout.
2575         * stdio-common/Makefile (CFLAGS-tstdiomisc.c): Variable removed.
2576         (CFLAGS-scanf4.c): Likewise.
2577         (CFLAGS-scanf7.c): Likewise.
2578         (CFLAGS-tst-sprintf.c): Likewise.
2579         (CFLAGS-tst-printf.c): Likewise.
2580         (CFLAGS-tst-printfsz.c): Likewise.
2582 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
2584         * include/cpio.h: New file.
2585         * include/fmtmsg.h: Likewise.
2587         * tst-mbswcs1.c (show): Use %zu format instead of %Zd.  Cast
2588         corresponding format argument to size_t.
2589         * tst-mbswcs2.c (show): Likewise.  Use %td format for ptrdiff_t
2590         arguments.
2591         * tst-mbswcs3.c (show): Use %zu format instead of %Zd.  Cast
2592         corresponding format argument to size_t.
2593         * tst-mbswcs4.c (show): Likewise.  Use %td format for ptrdiff_t
2594         arguments.
2595         * tst-mbswcs5.c (show): Use %zu format instead of %Zd.  Cast
2596         corresponding format argument to size_t.
2597         * tst-trans.c (do_test): Use %lc format for wint_t arguments.
2598         * Makefile (CFLAGS-tst-mbswcs1.c): Remove variable.
2599         (CFLAGS-tst-mbswcs2.c): Likewise.
2600         (CFLAGS-tst-mbswcs3.c): Likewise.
2601         (CFLAGS-tst-mbswcs4.c): Likewise.
2602         (CFLAGS-tst-mbswcs5.c): Likewise.
2603         (CFLAGS-tst-trans.c): Likewise
2605 2014-12-11  Roland McGrath  <roland@hack.frob.com>
2607         * posix/regexbug1.c (main): Use "%s" format with regerror results,
2608         rather than assuming they won't contain any '%'s.
2610 2014-12-11  Chris Metcalf  <cmetcalf@ezchip.com>
2612         * sysdeps/tile/tilegx/memset.c (__memcpy): Add
2613         inhibit_loop_to_libcall to avoid recursive calls.
2614         * sysdeps/tile/tilegx/memcpy.c (__memcpy): Likewise.
2615         * sysdeps/tile/tilepro/memcpy.c (__memcpy): Likewise.
2617 2014-12-11  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
2619         * include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
2620         prototype.
2622 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
2624         * sysdeps/mips/dl-trampoline.c: Modify switch expression to have
2625         integer value instead of boolean.
2627 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
2629         * malloc/malloc.c: Fix powerof2 check.
2631 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
2633         * locale/programs/locfile.h (maybe_swap_uint32):
2634         Remove inline and add unused attribute.
2636 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
2638         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
2639         Truncating assembler expression to a .long expression.
2641 2014-12-11  Andreas Schwab  <schwab@suse.de>
2643         * elf/rtld.c (struct map_args): Constify str member.
2644         (do_preload): Constify fname argument.
2646 2014-12-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2648         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Remove overflow warnings for
2649         constants definition.
2651 2014-12-11  Andreas Schwab  <schwab@suse.de>
2653         [BZ #16657]
2654         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Use
2655         FORCE_ELISION instead of DO_ELISION.
2656         * sysdeps/unix/sysv/linux/x86/force-elision.h (DO_ELISION):
2657         Remove.
2658         * sysdeps/unix/sysv/linux/s390/force-elision.h (DO_ELISION):
2659         Likewise.
2661         * iconvdata/gconv-modules: Remove duplicate entry.
2663 2014-12-11  Will Newton  <will.newton@linaro.org>
2665         Merge gettext 0.19.3 into intl/.
2667         This involves a number of cosmetic changes to comments
2668         and ANSI function definitions and prototypes throughout
2669         all the files. The gettext copyright header is used but
2670         with the date ranges taken from the glibc copy.
2672         * NEWS: Add gettext merge to 2.21.
2673         * intl/bindtextdom.c: Switch to gettext copyright.
2674         Use ANSI definitions and prototypes.
2675         Use gl_* locking primitives rather than __libc_* ones.
2676         Use __builtin_expect rather than __glibc_likely/unlikely.
2677         * intl/dcgettext.c: Switch to gettext copyright.
2678         Use ANSI definitions and prototypes.
2679         * intl/dcigettext.c: Switch to gettext copyright.
2680         Use ANSI definitions and prototypes.
2681         (INTDIV0_RAISES_SIGFPE): New define.
2682         Use gl_* locking primitives rather than __libc_* ones.
2683         Include eval-plural.h instead of plural-eval.c.
2684         Use __builtin_expect rather than __glibc_likely/unlikely.
2685         * intl/dcngettext.c: Switch to gettext copyright.
2686         Use ANSI definitions and prototypes.
2687         * intl/dgettext.c: Likewise.
2688         * intl/dngettext.c: Likewise.
2689         * intl/plural-eval.c: Renamed to...
2690         * intl/eval-plural.h: ...this.
2691         * intl/explodename.c: Switch to gettext copyright.
2692         Use ANSI definitions and prototypes.
2693         (_nl_explode_name): Use strchr instead of __rawmemchr.
2694         * intl/finddomain.c: Switch to gettext copyright.
2695         Use ANSI definitions and prototypes.
2696         Use gl_* locking primitives rather than __libc_* ones.
2697         (_nl_find_domain): Use malloc rather than alloca for
2698         allocation of temporary locale name.
2699         * intl/gettext.c: Switch to gettext copyright.
2700         Use ANSI definitions and prototypes.
2701         * intl/gettextP.h: Switch to gettext copyright.
2702         Use ANSI definitions and prototypes.
2703         Use gl_* locking primitives rather than __libc_* ones.
2704         * intl/gmo.h: Switch to gettext copyright.
2705         (struct sysdep_string): Move struct segment_pair outside of
2706         struct definition.
2707         * intl/hash-string.c: Use ANSI definitions and prototypes.
2708         * intl/hash-string.h: Switch to gettext copyright.
2709         Use ANSI definitions and prototypes.
2710         * intl/l10nflist.c: Switch to gettext copyright.
2711         Use ANSI definitions and prototypes.
2712         (_nl_normalize_codeset): Avoid integer overflow.
2713         * intl/loadinfo.h: Switch to gettext copyright.
2714         Use ANSI definitions and prototypes.
2715         (LIBINTL_DLL_EXPORTED): New define.
2716         (PATH_SEPARATOR): New define.
2717         * intl/loadmsgcat.c: Switch to gettext copyright.
2718         * intl/localealias.c: Switch to gettext copyright.
2719         Use ANSI definitions and prototypes.
2720         (_nl_expand_alias): Use PATH_SEPARATOR.
2721         * intl/ngettext.c: Switch to gettext copyright.
2722         Use ANSI definitions and prototypes.
2723         * intl/plural-exp.c: Likewise.
2724         * intl/plural-exp.h: Switch to gettext copyright.
2725         Use ANSI definitions and prototypes.
2726         (struct expression): Move definition of enum operator outside
2727         of struct definition.
2728         * intl/plural.c: Regenerate.
2729         * intl/plural.y: Switch to gettext copyright.
2730         Use ANSI definitions and prototypes.
2731         Port to bison 3.0.
2732         * intl/textdomain.c: Switch to gettext copyright.
2733         Use ANSI definitions and prototypes.
2734         Use gl_* locking primitives rather than __libc_* ones.
2736 2014-12-10  Steve Ellcey  <sellcey@imgtec.com>
2738         * debug/warning-nop.c: Add used atrribute.
2740 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
2742         * sysdeps/unix/sysv/linux/mips/mips32/waitid.c: New file.
2744         * sysdeps/unix/sysv/linux/mips/mips64/Makefile
2745         [$(subdir) == signal] (CFLAGS-sigaction.c): New variable.
2746         [$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise.
2748 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
2749             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2751         [BZ #17634]
2752         * wcsmbs/wcschr.c [!WCSCHR] (wcschr): Define as __wcschr.
2753         Undefine after defining function.  Define as weak alias of
2754         __wcschr.  Use libc_hidden_weak.
2755         * include/wchar.h (__wcschr): Declare.  Use libc_hidden_proto.
2756         * sysdeps/i386/i686/multiarch/wcschr-c.c [IS_IN (libc) && SHARED]
2757         (libc_hidden_def): Also define __GI___wcschr alias.
2758         * sysdeps/i386/i686/multiarch/wcschr.S (wcschr): Rename to
2759         __wcschr and define as weak alias of __wcschr.
2760         * sysdeps/powerpc/power6/wcschr.c [!WCSCHR] (WCSCHR): Define as
2761         __wcschr.
2762         [!WCSCHR] (DEFAULT_WCSCHR): Define.
2763         [DEFAULT_WCSCHR] (__wcschr): Use libc_hidden_def.
2764         [DEFAULT_WCSCHR] (wcschr): Define as weak alias of __wcschr.  Use
2765         libc_hidden_weak.  Do not use libc_hidden_def.
2766         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c
2767         [IS_IN (libc) && SHARED] (libc_hidden_def): Also define
2768         __GI___wcschr alias.
2769         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c
2770         [IS_IN (libc)] (wcschr): Define as macro expanding to
2771         __redirect_wcschr.
2772         [IS_IN (libc)] (__wcschr_ppc): Use __redirect_wcschr in typeof.
2773         [IS_IN (libc)] (__wcschr_power6): Likewise.
2774         [IS_IN (libc)] (__wcschr_power7): Likewise.
2775         [IS_IN (libc)] (__libc_wcschr): New.  Define with libc_ifunc
2776         instead of wcschr.
2777         [IS_IN (libc)] (wcschr): Undefine and define as weak alias of
2778         __libc_wcschr.
2779         [!IS_IN (libc)] (libc_hidden_def): Do not undefine and redefine.
2780         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c (wcschr): Rename to
2781         __wcschr and define as weak alias of __wcschr.  Use
2782         libc_hidden_builtin_def.
2783         * sysdeps/x86_64/wcschr.S (wcschr): Rename to __wcschr and define
2784         as weak alias of __wcschr.  Use libc_hidden_weak.
2785         * time/alt_digit.c (_nl_get_walt_digit): Use __wcschr instead of
2786         wcschr.
2787         * time/era.c (_nl_init_era_entries): Likewise.
2788         * conform/Makefile (test-xfail-ISO/time.h/linknamespace): Remove
2789         variable.
2790         (test-xfail-XPG3/time.h/linknamespace): Likewise.
2791         (test-xfail-XPG4/time.h/linknamespace): Likewise.
2793 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
2795         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Use %ld
2796         format for long int variable.
2798 2014-12-10  Anders Kaseorg  <andersk@MIT.EDU>
2800         [BZ #10672]
2801         * manual/search.texi: (Array Sort Function): Remove claim how to make
2802         qsort stable.
2804 2014-12-10  Andreas Schwab  <schwab@suse.de>
2806         [BZ #12847]
2807         * sysdeps/nptl/fork.c (fresetlockfiles): Skip files with
2808         user-controlled locks.
2810 2014-12-10  Richard Earnshaw  <rearnsha@arm.com>
2812         * sysdeps/aarch64/strchrnul.S (vrepmask): Use a call-clobbered
2813         register.
2815 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
2817         * configure.ac (--disable-werror): New configure option.
2818         (enable_werror): New AC_SUBST.
2819         * configure: Regenerated.
2820         * config.make.in (enable-werror): New variable.
2821         * Makeconfig [$(enable-werror) = yes] (+gccwarn): Add -Werror
2822         -Wno-error=undef.
2823         (+gccwarn-c): Do not use -Werror=implicit-function-declaration.
2824         * manual/install.texi (Configuring and compiling): Document
2825         --disable-werror.
2826         * INSTALL: Regenerated.
2827         * debug/Makefile (CFLAGS-tst-chk1.c): Add -Wno-error.
2828         (CFLAGS-tst-chk2.c): Likewise.
2829         (CFLAGS-tst-chk3.c): Likewise.
2830         (CFLAGS-tst-chk4.cc): Likewise.
2831         (CFLAGS-tst-chk5.cc): Likewise.
2832         (CFLAGS-tst-chk6.cc): Likewise.
2833         (CFLAGS-tst-lfschk1.c): Likewise.
2834         (CFLAGS-tst-lfschk2.c): Likewise.
2835         (CFLAGS-tst-lfschk3.c): Likewise.
2836         (CFLAGS-tst-lfschk4.cc): Likewise.
2837         (CFLAGS-tst-lfschk5.cc): Likewise.
2838         (CFLAGS-tst-lfschk6.cc): Likewise.
2840         * stdio-common/tst-printfsz.c: Include <libc-internal.h>.
2841         (main): Disable -Wdeprecated-declarations around calls to
2842         register_printf_function.
2844         * stdio-common/tst-unlockedio.c: Include <libc-internal.h>.
2845         (do_test): Disable -Wdiv-by-zero around some calls to
2846         fwrite_unlocked and fread_unlocked.
2848         * include/libc-internal.h (DIAG_PUSH_NEEDS_COMMENT): New macro.
2849         (DIAG_POP_NEEDS_COMMENT): Likewise.
2850         (_DIAG_STR1): Likewise.
2851         (_DIAG_STR): Likewise.
2852         (DIAG_IGNORE_NEEDS_COMMENT): Likewise.
2853         * stdio-common/bug21.c: Include <libc-internal.h>.
2854         (do_test): Disable -Wformat around call to sscanf.
2855         * stdio-common/scanf14.c: Include <libc-internal.h>.
2856         (main): Disable -Wformat around some calls to scanf functions.
2858 2014-12-09  Torvald Riegel  <triegel@redhat.com>
2860         * sysdeps/unix/sysv/linux/sh/pthread_once.S: Remove file.
2862 2014-12-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2864         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix wide-character
2865         stack variable alignment.
2867 2014-12-06  Joseph Myers  <joseph@codesourcery.com>
2869         [BZ #17682]
2870         * resource/Versions (libc): Add __getrlimit at GLIBC_PRIVATE.
2871         * resource/getrlimit.c (__getrlimit): Use libc_hidden_def.
2872         * sysdeps/mach/hurd/getrlimit.c (__getrlimit): Likewise.
2873         * include/sys/resource.h (__getrlimit): Use libc_hidden_proto.
2874         * nptl/nptl-init.c (__pthread_initialize_minimal_internal): Use
2875         __getrlimit instead of getrlimit.
2876         * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Use
2877         __gettimeofday instead of gettimeofday.
2878         * nptl/pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock):
2879         Likewise.
2880         * nptl/pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock):
2881         Likewise.
2882         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
2883         * conform/Makefile (test-xfail-POSIX2008/aio.h/linknamespace):
2884         Remove variable.
2885         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
2886         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
2888 2014-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2890         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix buffer overrun
2891         for wide-character tests.
2893 2014-12-04  Roland McGrath  <roland@hack.frob.com>
2895         * io/openat64.c: #include <libc-internal.h>
2896         (__openat64): Prototypify.  Use ignore_value on MODE.
2897         * io/openat.c: Likewise.
2898         * misc/reboot.c: #include <libc-internal.h>
2899         (reboot): Prototypify.  Use ignore_value on HOWTO.
2900         * misc/ptrace.c: #include <libc-internal.h>
2901         (ptrace): Prototypify.  Use ignore_value for va_arg'd parameters.
2903 2014-12-04  Joseph Myers  <joseph@codesourcery.com>
2905         * conform/list-header-symbols.pl (%extra_syms): Add h_errno for
2906         XPG4, UNIX98 and XOPEN2K.
2907         * conform/Makefile (test-xfail-XOPEN2K/grp.h/linknamespace):
2908         Remove variable.
2909         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
2911 2014-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
2913         * libio/fileops.c: Use ISO C style for function definitions.
2914         * libio/iofopen.c: Likewise.
2915         * libio/wfileops.c: Likewise.
2917         [BZ #17653]
2918         * libio/fileops.c (_IO_new_file_underflow): Unset cached
2919         offset on EOF.
2920         * libio/wfileops.c (_IO_wfile_underflow): Likewise.
2921         * libio/tst-ftell-active-handler.c (fgets_func_t): New type.
2922         (fgets_func): Function pointer to fgets and fgetws.
2923         (do_ftell_test): Add test to verify ftell value after read
2924         EOF.
2925         (do_test): Set fgets_func.
2927         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Add
2928         O_TRUNC flag for w and w+ modes.
2929         (do_rewind_test): Likewise.
2930         (do_ftell_test): Likewise.
2931         (do_write_test): Likewise.
2933         [BZ #17647]
2934         * libio/fileops.c (do_ftell): Seek only when there are
2935         unflushed writes.
2936         * libio/wfileops.c (do_ftell_wide): Likewise.
2937         * libio/tst-ftell-active-handler.c (do_ftruncate_test): New
2938         test case.
2939         (do_one_test): Call it.
2941 2014-12-03  Joseph Myers  <joseph@codesourcery.com>
2943         * conform/list-header-symbols.pl (%extra_syms): Add getdate_err
2944         for XPG4, UNIX98, XOPEN2K and XOPEN2K8.
2945         * conform/Makefile (test-xfail-XOPEN2K/pthread.h/linknamespace):
2946         Remove variable.
2947         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
2948         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
2949         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
2951 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
2953         * conform/Makefile (test-xfail-XOPEN2K/aio.h/linknamespace):
2954         Remove variable.
2955         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
2957         [BZ #17668]
2958         * inet/ifaddrs.c (getifaddrs): Rename to __getifaddrs and define
2959         as weak alias of __getifaddrs.  Use libc_hidden_weak.
2960         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
2961         __freeifaddrs.  Use libc_hidden_weak.
2962         * sysdeps/gnu/ifaddrs.c (getifaddrs): Rename to __getifaddrs and
2963         define as weak alias of __getifaddrs.  Use libc_hidden_weak.
2964         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
2965         __freeifaddrs.  Use libc_hidden_weak.
2966         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Rename to
2967         __getifaddrs and define as weak alias of __getifaddrs.  Use
2968         libc_hidden_weak.
2969         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
2970         __freeifaddrs.  Use libc_hidden_weak.
2971         * conform/Makefile (test-xfail-XOPEN2K/net/if.h/linknamespace):
2972         Remove variable.
2973         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
2974         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
2976 2014-12-02  Petar Jovanovic  <petar.jovanovic@rt-rk.com>
2978         [BZ #17601]
2979         * sysdeps/mips/start.S (__start): Use indirect jump to call
2980         __libc_start_main.
2982 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
2984         * nptl/tst-stack4.c (dso_process): Use int not uintptr_t for t.
2986         * nptl/tst-mutex1.c: Include <stdbool.h>.
2987         [!ATTR] (ATTR_NULL): New macro.
2988         (do_test): Test !ATTR_NULL instead of ATTR != NULL.
2989         * nptl/tst-mutexpi1.c (ATTR_NULL): New macro.
2990         * nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
2992         * posix/tst-getopt_long1.c (do_test): Cast elements of argv array
2993         to char *.
2995         [BZ #17665]
2996         * posix/unistd.h [__USE_MISC || (__USE_XOPEN && !__USE_UNIX98)]:
2997         Change conditional to [__USE_MISC].
2999         [BZ #17664]
3000         * misc/mntent_r.c (__getmntent_r): Use __fgets_unlocked instead of
3001         fgets_unlocked.
3002         * resolv/res_hconf.c [IS_IN (libc)] (fgets_unlocked): Define to
3003         __fgets_unlocked.
3004         * resolv/res_init.c (__res_vinit): Use __fgets_unlocked instead of
3005         fgets_unlocked.
3006         * conform/Makefile (test-xfail-XPG4/sys/statvfs.h/linknamespace):
3007         Remove variable.
3008         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
3009         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
3010         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
3011         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
3012         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
3013         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
3014         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
3015         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
3016         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
3018         * elf/tst-unique4lib.cc (b): Mark with __attribute__ ((used)).
3020 2014-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3022         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3023         Remove strpbrk objects.
3024         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3025         (__libc_ifunc_impl_list): Remove strpbrk implementation.
3026         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: Remove file.
3027         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Remove file.
3028         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: Remove file.
3029         * sysdeps/powerpc/powerpc64/strpbrk.S: New file.
3031         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3032         Remove strcspn objects.
3033         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3034         (__libc_ifunc_impl_list): Remove strcspn implementation.
3035         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: Remove file.
3036         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Remove file.
3037         * sysdeps/powerpc/powerpc64/power7/strcspn.S: Remove file.
3038         * sysdeps/powerpc/powerpc64/strcspn.S: New file.
3040         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3041         Remove strspn objetcs.
3042         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3043         (__libc_ifunc_impl_list): Remove strspn implementation.
3044         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: Remove file.
3045         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
3046         * sysdeps/powerpc/powerpc64/power7/strspn.S: Remove file.
3047         * sysdeps/powerpc/powerpc64/strspn.S: New file.
3049 2014-12-01  James Lemke  <jwlemke@codesourcery.com>
3051         [BZ #17581]
3052         * malloc/hooks.c
3053         (mem2mem_check): Add a terminator to the chain of checking blocks.
3054         (malloc_check_get_size): Use it here.
3055         (mem2chunk_check): Ditto.
3057 2014-12-01  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
3059         * sysdeps/powerpc/powerpc64/strtok.S: New file.
3060         * sysdeps/powerpc/powerpc64/strtok_r.S: New file.
3062 2014-11-29  Carlos O'Donell  <carlos@redhat.com>
3064         * bits/ioctl-types.h: Indent preprocessor directives correctly.
3066         * nptl/nptl-init.c: Include libc-internal.h.
3067         (__pthread_initialize_minimal_internal): Use ROUND_UP.
3069         * elf/ldconfig.c (search_dir): Expand comment.
3071 2014-11-29  Joseph Myers  <joseph@codesourcery.com>
3073         * conform/Makefile (linknamespace-symlist-stdlibs-base): New
3074         variable.
3075         (linknamespace-symlist-stdlibs-tests): Likewise.
3076         (tests-special): Append $(linknamespace-symlist-stdlibs-tests)
3077         instead of $(objpfx)symlist-stdlibs.
3078         (linknamespace-libs-isoc): New variable.
3079         (linknamespace-libs): Use $(linknamespace-libs-isoc).
3080         (linknamespace-libs-ISO): New variable.
3081         (linknamespace-libs-ISO99): Likewise.
3082         (linknamespace-libs-ISO11): Likewise.
3083         (linknamespace-libs-XPG3): Likewise.
3084         (linknamespace-libs-XPG4): Likewise.
3085         (linknamespace-libs-POSIX): Likewise.
3086         (linknamespace-libs-UNIX98): Likewise.
3087         (linknamespace-libs-XOPEN2K): Likewise.
3088         (linknamespace-libs-POSIX2008): Likewise.
3089         (linknamespace-libs-XOPEN2K8): Likewise.
3090         ($(objpfx)symlist-stdlibs): Replace by
3091         $(linknamespace-symlist-stdlibs-tests).  Use
3092         $(linknamespace-libs-$*) as set of libraries.
3093         ($(linknamespace-header-tests)): Update dependencies.  Use
3094         $(objpfx)symlist-stdlibs-$$std for --libsyms argument.
3095         (test-xfail-XPG4/sys/mman.h/linknamespace): Remove.
3096         * conform/linknamespace.pl: Remove comment about considering
3097         definitions of symbols from irrelevant libraries.
3099 2014-11-28  H.J. Lu  <hongjiu.lu@intel.com>
3101         [BZ #13862]
3102         * elf/dl-tls.c: Include <atomic.h>.
3103         (oom): Remove #ifdef SHARED/#endif.
3104         (_dl_static_dtv, _dl_initial_dtv): Moved before ...
3105         (_dl_resize_dtv): This.  Extracted from _dl_update_slotinfo.
3106         (_dl_allocate_tls_init): Resize DTV if the current DTV isn't
3107         big enough.
3108         (_dl_update_slotinfo): Call _dl_resize_dtv to resize DTV.
3109         * nptl/Makefile (tests): Add tst-stack4.
3110         (modules-names): Add tst-stack4mod.
3111         ($(objpfx)tst-stack4): New.
3112         (tst-stack4mod.sos): Likewise.
3113         ($(objpfx)tst-stack4.out): Likewise.
3114         ($(tst-stack4mod.sos)): Likewise.
3115         (clean): Likewise.
3116         * nptl/tst-stack4.c: New file.
3117         * nptl/tst-stack4mod.c: Likewise.
3119 2014-11-27  J. Brown  <jb999@gmx.de>
3121         * sysdeps/x86/bits/string.h: Add recent CPUs.
3123 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
3125         * misc/tst-pselect.c (do_test): Use sigprocmask instead of
3126         sigblock.
3128         * libio/bug-ungetwc1.c (do_test): Verify results of getwc and
3129         feof.
3131         * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a
3132         variable.
3134 2014-11-27  Stefan Liebler  <stli@linux.vnet.ibm.com>
3136         * nscd/connections.c: Include libc-internal.h because of macro
3137         usage ignore_value.
3139 2014-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
3141         * string/bits/string3.h (__warn_memset_zero_len): Don't
3142         declare for gcc newer than 5.0.
3143         (memset): Don't test for zero-length __LEN for gcc newer than
3144         5.0.
3146 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
3148         * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to
3149         size_t for %zu format.
3151         * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer
3152         difference, not %ju.
3154 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
3156         * include/libc-internal.h (ignore_value): New macro.
3157         * nscd/connections.c (restart): Wrap calls to setuid and setgid
3158         with ignore_value.
3160         * sysdeps/mips/__longjmp.c (____longjmp): Use prototype
3161         definition.
3163         * nptl/tst-cancel-self-cancelstate.c (do_test): Cast argument of
3164         pthread_cleanup_push to void *.
3166         * sysdeps/unix/sysv/linux/arm/libc-do-syscall.S (_FORTIFY_SOURCE):
3167         Undefine.
3169         [BZ #16619]
3170         [BZ #16740]
3171         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Use 1LL << 52
3172         instead of 1L << 52.
3174         * libio/bug-rewind.c (do_test): Check fwscanf return values.
3175         * libio/bug-rewind2.c (do_test): Likewise.
3177         * debug/test-stpcpy_chk-ifunc.c: Remove file.
3178         * debug/test-strcpy_chk-ifunc.c: Likewise.
3179         * wcsmbs/test-wcschr-ifunc.c: Likewise.
3180         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
3181         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
3182         * wcsmbs/test-wcslen-ifunc.c: Likewise.
3183         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
3184         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
3185         * Rules [$(multi-arch) = no] (tests): Do not filter out
3186         $(tests-ifunc).
3187         [$(multi-arch) = no] (xtests): Do not filter out $(xtests-ifunc).
3188         * debug/Makefile (tests-ifunc): Remove variable.
3189         (tests): Do not add $(tests-ifunc).
3190         * wcsmbs/Makefile (tests-ifunc): Remove variable.
3191         (tests): Do not add $(tests-ifunc).
3192         * benchtests/bench-string.h (TEST_IFUNC): Remove macro.
3193         [TEST_IFUNC]: Remove conditionals.
3194         * string/test-string.h (TEST_IFUNC): Remove macro.
3195         [TEST_IFUNC]: Remove conditionals.
3197         * string/test-strchr.c [!WIDE] (L): New macro.
3198         [WIDE] (L): Likewise.
3199         (check1): Use CHAR instead of char.  Use L on string and character
3200         constants.
3202 2014-11-26  Adhemerval Zanella  <azanella@linux.ibm.com>
3204         * csu/tst-atomic.c (do_test): Add atomic_exchange_and_add_{acq,rel}
3205         tests.
3206         * sysdeps/powerpc/bits/atomic.h
3207         (__arch_atomic_exchange_and_add_32_acq): Add definition.
3208         (__arch_atomic_exchange_and_add_32_rel): Likewise.
3209         (atomic_exchange_and_add_acq): Likewise.
3210         (atomic_exchange_and_add_rel): Likewise.
3211         * sysdeps/powerpc/powerpc32/bits/atomic.h
3212         (__arch_atomic_exchange_and_add_64_acq): Add definition.
3213         (__arch_atomic_exchange_and_add_64_rel): Likewise.
3214         * sysdeps/powerpc/powerpc64/bits/atomic.h
3215         (__arch_atomic_exchange_and_add_64_acq): Add definition.
3216         (__arch_atomic_exchange_and_add_64_rel): Likewise.
3218 2014-11-26  Torvald Riegel  <triegel@redhat.com>
3220         * nptl/tpp.c (__init_sched_fifo_prio, __pthread_tpp_change_priority):
3221         Change synchronization of __sched_fifo_min_prio and
3222         __sched_fifo_max_prio.
3223         * nptl/pthread_mutexattr_getprioceiling.c
3224         (pthread_mutexattr_getprioceiling): Likewise.
3225         * nptl/pthread_mutexattr_setprioceiling.c
3226         (pthread_mutexattr_setprioceiling): Likewise.
3227         * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
3228         * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
3229         Likewise.
3231 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
3233         * setjmp/jmpbug.c (test): Make foo volatile and cast it to
3234         void.
3236 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
3238         * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
3239         third argument const.
3241 2014-11-25  Paul Eggert  <eggert@cs.ucla.edu>
3243         fnmatch: work around GCC compiler warning bug with uninit var
3244         * posix/fnmatch_loop.c (FCT): Use a scalar not a one-item array.
3245         This works around a bug with x86-64 GCC 4.9.2 and earlier
3246         where 'gcc -O2 -Wmaybe-uninitialized' incorrectly complains
3247         "../locale/weightwc.h:93:7: warning: '*((void *)&str+4)' may be
3248         used uninitialized in this function [-Wmaybe-uninitialized]".
3250 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
3252         * posix/bug-regex31.c (main): Return RES not 0.
3254 2014-11-25  Anton Blanchard <anton@samba.org>
3256         * sysdeps/powerpc/bits/atomic.h
3257         (__arch_compare_and_exchange_bool_64_rel): Load from mem.
3259 2014-11-24  Sterling Augustine  <saugustine@google.com>
3261         * sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
3263 2014-11-24  Ryan Cumming  <etaoins@gmail.com>
3265         [BZ #17608]
3266         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_TAI.
3268 2014-11-24  Joseph Myers  <joseph@codesourcery.com>
3270         [BZ #17633]
3271         * stdio-common/perror.c (perror): Call __fileno instead of fileno.
3272         * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
3273         variable.
3274         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
3275         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
3277 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
3279         * string/strncpy.c (strncpy): Improve performance by using memset.
3281 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
3283         * string/strcpy.c (strcpy):
3284         Improve performance by using strlen and memcpy.
3286 2014-11-24  Leonhard Holz  <leonhard.holz@web.de>
3288         * string/strcoll_l.c (get_next_seq): __always_inline.
3289         * string/strcoll_l.c (do_compare): __always_inline.
3291 2014-11-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
3293         * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is
3294         defined.
3295         * include/mqueue.h: Likewise.
3296         * include/stdlib.h: Likewise.
3298         * stdlib/isomac.c (fmt): Replace NOT_IN_libc with IN_MODULE.
3299         (get_null_defines): Adjust.
3300         * sunrpc/Makefile: Adjust comment.
3301         * Makerules (CPPFLAGS-nonlib): Remove NOT_IN_libc.
3302         * elf/Makefile (CPPFLAGS-sotruss-lib): Likewise.
3303         (CFLAGS-interp.c): Likewise.
3304         (CFLAGS-ldconfig.c): Likewise.
3305         (CPPFLAGS-.os): Likewise.
3306         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
3307         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
3308         * extra-modules.mk (extra-modules.mk): Likewise.
3309         * iconv/Makefile (CPPFLAGS-iconvprogs): Likewise.
3310         * locale/Makefile (CPPFLAGS-locale_programs): Likewise.
3311         * malloc/Makefile (CPPFLAGS-memusagestat): Likewise.
3312         * nscd/Makefile (CPPFLAGS-nscd): Likewise.
3313         * nss/Makefile (CPPFLAGS-nss_test1): Likewise.
3314         * stdlib/Makefile (CFLAGS-tst-putenvmod.c): Likewise.
3315         * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise.
3316         * sysdeps/unix/sysv/linux/Makefile (CPPFLAGS-lddlibc4): Likewise.
3317         * iconvdata/Makefile (CPPFLAGS): Likewise.
3318         (cpp-srcs-left): Add libof for all iconvdata routines.
3319         * bits/stdio-lock.h: Replace NOT_IN_libc with IS_IN.
3320         * include/assert.h: Likewise.
3321         * include/ctype.h: Likewise.
3322         * include/errno.h: Likewise.
3323         * include/libc-symbols.h: Likewise.
3324         * include/math.h: Likewise.
3325         * include/netdb.h: Likewise.
3326         * include/resolv.h: Likewise.
3327         * include/stdio.h: Likewise.
3328         * include/stdlib.h: Likewise.
3329         * include/string.h: Likewise.
3330         * include/sys/stat.h: Likewise.
3331         * include/wctype.h: Likewise.
3332         * intl/l10nflist.c: Likewise.
3333         * libidn/idn-stub.c: Likewise.
3334         * libio/libioP.h: Likewise.
3335         * nptl/libc_multiple_threads.c: Likewise.
3336         * nptl/pthreadP.h: Likewise.
3337         * posix/regex_internal.h: Likewise.
3338         * resolv/res_hconf.c: Likewise.
3339         * sysdeps/arm/armv7/multiarch/memcpy.S: Likewise.
3340         * sysdeps/arm/memmove.S: Likewise.
3341         * sysdeps/arm/sysdep.h: Likewise.
3342         * sysdeps/generic/_itoa.h: Likewise.
3343         * sysdeps/generic/symbol-hacks.h: Likewise.
3344         * sysdeps/gnu/errlist.awk: Likewise.
3345         * sysdeps/gnu/errlist.c: Likewise.
3346         * sysdeps/i386/i586/memcpy.S: Likewise.
3347         * sysdeps/i386/i586/memset.S: Likewise.
3348         * sysdeps/i386/i686/memcpy.S: Likewise.
3349         * sysdeps/i386/i686/memmove.S: Likewise.
3350         * sysdeps/i386/i686/mempcpy.S: Likewise.
3351         * sysdeps/i386/i686/memset.S: Likewise.
3352         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
3353         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
3354         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: Likewise.
3355         * sysdeps/i386/i686/multiarch/memchr-sse2.S: Likewise.
3356         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
3357         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
3358         * sysdeps/i386/i686/multiarch/memcmp-ssse3.S: Likewise.
3359         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
3360         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
3361         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
3362         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
3363         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
3364         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
3365         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
3366         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
3367         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
3368         * sysdeps/i386/i686/multiarch/memrchr-c.c: Likewise.
3369         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: Likewise.
3370         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: Likewise.
3371         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
3372         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
3373         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
3374         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
3375         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
3376         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
3377         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
3378         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: Likewise.
3379         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
3380         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Likewise.
3381         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
3382         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
3383         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
3384         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
3385         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
3386         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
3387         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
3388         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
3389         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
3390         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
3391         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
3392         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
3393         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
3394         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
3395         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
3396         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
3397         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
3398         * sysdeps/i386/i686/multiarch/wcschr-c.c: Likewise.
3399         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: Likewise.
3400         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
3401         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
3402         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
3403         * sysdeps/i386/i686/multiarch/wcscpy-c.c: Likewise.
3404         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Likewise.
3405         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
3406         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
3407         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: Likewise.
3408         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
3409         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: Likewise.
3410         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: Likewise.
3411         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
3412         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
3413         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
3414         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
3415         * sysdeps/nptl/bits/libc-lock.h: Likewise.
3416         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
3417         * sysdeps/nptl/bits/stdio-lock.h: Likewise.
3418         * sysdeps/posix/closedir.c: Likewise.
3419         * sysdeps/posix/opendir.c: Likewise.
3420         * sysdeps/posix/readdir.c: Likewise.
3421         * sysdeps/posix/rewinddir.c: Likewise.
3422         * sysdeps/powerpc/novmx-sigjmp.c: Likewise.
3423         * sysdeps/powerpc/powerpc32/__longjmp.S: Likewise.
3424         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
3425         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
3426         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
3427         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Likewise.
3428         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: Likewise.
3429         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: Likewise.
3430         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: Likewise.
3431         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: Likewise.
3432         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: Likewise.
3433         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: Likewise.
3434         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: Likewise.
3435         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: Likewise.
3436         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: Likewise.
3437         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: Likewise.
3438         * sysdeps/powerpc/powerpc32/power4/multiarch/memset.c: Likewise.
3439         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: Likewise.
3440         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: Likewise.
3441         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: Likewise.
3442         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c: Likewise.
3443         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: Likewise.
3444         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: Likewise.
3445         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: Likewise.
3446         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: Likewise.
3447         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: Likewise.
3448         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: Likewise.
3449         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: Likewise.
3450         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: Likewise.
3451         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: Likewise.
3452         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: Likewise.
3453         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: Likewise.
3454         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Likewise.
3455         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: Likewise.
3456         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: Likewise.
3457         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Likewise.
3458         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
3459         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
3460         * sysdeps/powerpc/powerpc64/__longjmp.S: Likewise.
3461         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: Likewise.
3462         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: Likewise.
3463         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: Likewise.
3464         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: Likewise.
3465         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
3466         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
3467         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Likewise.
3468         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: Likewise.
3469         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: Likewise.
3470         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: Likewise.
3471         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: Likewise.
3472         * sysdeps/powerpc/powerpc64/multiarch/memset.c: Likewise.
3473         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: Likewise.
3474         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S: Likewise.
3475         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c: Likewise.
3476         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: Likewise.
3477         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: Likewise.
3478         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: Likewise.
3479         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: Likewise.
3480         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: Likewise.
3481         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: Likewise.
3482         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
3483         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: Likewise.
3484         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S: Likewise.
3485         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c: Likewise.
3486         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Likewise.
3487         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
3488         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: Likewise.
3489         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: Likewise.
3490         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: Likewise.
3491         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: Likewise.
3492         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
3493         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Likewise.
3494         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: Likewise.
3495         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: Likewise.
3496         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: Likewise.
3497         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Likewise.
3498         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: Likewise.
3499         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: Likewise.
3500         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
3501         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: Likewise.
3502         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c: Likewise.
3503         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
3504         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c: Likewise.
3505         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Likewise.
3506         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
3507         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Likewise.
3508         * sysdeps/s390/s390-32/multiarch/memcmp.S: Likewise.
3509         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
3510         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
3511         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
3512         * sysdeps/s390/s390-64/multiarch/memcmp.S: Likewise.
3513         * sysdeps/s390/s390-64/multiarch/memcpy.S: Likewise.
3514         * sysdeps/s390/s390-64/multiarch/memset.S: Likewise.
3515         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
3516         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
3517         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: Likewise.
3518         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
3519         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
3520         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Likewise.
3521         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: Likewise.
3522         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
3523         * sysdeps/unix/alpha/sysdep.S: Likewise.
3524         * sysdeps/unix/alpha/sysdep.h: Likewise.
3525         * sysdeps/unix/make-syscalls.sh: Likewise.
3526         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
3527         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3528         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
3529         * sysdeps/unix/sysv/linux/alpha/vfork.S: Likewise.
3530         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
3531         * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
3532         * sysdeps/unix/sysv/linux/getpid.c: Likewise.
3533         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
3534         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
3535         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
3536         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
3537         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
3538         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3539         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
3540         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3541         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
3542         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3543         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
3544         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
3545         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
3546         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
3547         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
3548         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
3549         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
3550         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
3551         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
3552         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
3553         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
3554         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
3555         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: Likewise.
3556         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
3557         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3558         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
3559         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
3560         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
3561         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3562         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
3563         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3564         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
3565         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
3566         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
3567         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3568         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
3569         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
3570         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
3571         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
3572         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
3573         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
3574         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
3575         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
3576         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
3577         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
3578         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3579         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
3580         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
3581         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
3582         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3583         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3584         * sysdeps/wordsize-32/symbol-hacks.h: Likewise.
3585         * sysdeps/x86_64/memcpy.S: Likewise.
3586         * sysdeps/x86_64/memmove.c: Likewise.
3587         * sysdeps/x86_64/memset.S: Likewise.
3588         * sysdeps/x86_64/multiarch/init-arch.h: Likewise.
3589         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
3590         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
3591         * sysdeps/x86_64/multiarch/memcmp.S: Likewise.
3592         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: Likewise.
3593         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
3594         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
3595         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
3596         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
3597         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
3598         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
3599         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
3600         * sysdeps/x86_64/multiarch/memset-avx2.S: Likewise.
3601         * sysdeps/x86_64/multiarch/memset.S: Likewise.
3602         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
3603         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Likewise.
3604         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
3605         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
3606         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
3607         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
3608         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Likewise.
3609         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
3610         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
3611         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
3612         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
3613         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
3614         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
3615         * sysdeps/x86_64/multiarch/wcscpy-c.c: Likewise.
3616         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
3617         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
3618         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Likewise.
3619         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
3620         * sysdeps/x86_64/strcmp.S: Likewise.
3622         * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib).
3624         * elf/Makefile (CPPFLAGS-.os): Remove IS_IN_rtld.
3625         * elf/dl-open.c: Use IS_IN (rtld) instead if IS_IN_rtld.
3626         * elf/rtld-Rules: Likewise.
3627         * elf/setup-vdso.h: Likewise.
3628         * include/assert.h: Likewise.
3629         * include/bits/stdlib-float.h: Likewise.
3630         * include/errno.h: Likewise.
3631         * include/sys/stat.h: Likewise.
3632         * include/unistd.h: Likewise.
3633         * sysdeps/aarch64/setjmp.S: Likewise.
3634         * sysdeps/alpha/setjmp.S: Likewise.
3635         * sysdeps/arm/__longjmp.S: Likewise.
3636         * sysdeps/arm/aeabi_unwind_cpp_pr1.c: Likewise.
3637         * sysdeps/arm/setjmp.S: Likewise.
3638         * sysdeps/arm/sysdep.h: Likewise.
3639         * sysdeps/generic/_itoa.h: Likewise.
3640         * sysdeps/generic/dl-sysdep.h: Likewise.
3641         * sysdeps/generic/ldsodefs.h: Likewise.
3642         * sysdeps/i386/dl-tls.h: Likewise.
3643         * sysdeps/i386/setjmp.S: Likewise.
3644         * sysdeps/m68k/setjmp.c: Likewise.
3645         * sysdeps/mach/hurd/dl-execstack.c: Likewise.
3646         * sysdeps/mach/hurd/opendir.c: Likewise.
3647         * sysdeps/posix/getcwd.c: Likewise.
3648         * sysdeps/posix/opendir.c: Likewise.
3649         * sysdeps/posix/profil.c: Likewise.
3650         * sysdeps/powerpc/dl-procinfo.h: Likewise.
3651         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
3652         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
3653         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
3654         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
3655         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
3656         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
3657         * sysdeps/s390/dl-tls.h: Likewise.
3658         * sysdeps/s390/s390-32/setjmp.S: Likewise.
3659         * sysdeps/s390/s390-64/setjmp.S: Likewise.
3660         * sysdeps/sh/sh3/setjmp.S: Likewise.
3661         * sysdeps/sh/sh4/setjmp.S: Likewise.
3662         * sysdeps/unix/alpha/sysdep.h: Likewise.
3663         * sysdeps/unix/arm/sysdep.S: Likewise.
3664         * sysdeps/unix/i386/sysdep.S: Likewise.
3665         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3666         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
3667         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
3668         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
3669         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3670         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
3671         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
3672         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3673         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
3674         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
3675         * sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
3676         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
3677         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
3678         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
3679         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
3680         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
3681         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
3682         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3683         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
3684         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
3685         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
3686         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
3687         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
3688         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
3689         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3690         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
3691         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3692         * sysdeps/unix/x86_64/sysdep.S: Likewise.
3693         * sysdeps/x86_64/setjmp.S: Likewise.
3695         * include/math.h: Use IS_IN instead of IS_IN_libm.
3696         * sysdeps/alpha/fpu/s_copysign.c: Likewise.
3697         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
3698         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
3699         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
3700         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
3701         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
3702         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
3703         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
3704         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
3705         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
3706         * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Likewise.
3707         * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
3708         * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Likewise.
3709         * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
3710         * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
3711         * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Likewise.
3712         * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
3713         * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
3714         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
3715         * sysdeps/ieee754/ldbl-opt/s_copysign.c: Likewise.
3716         * sysdeps/ieee754/ldbl-opt/s_finite.c: Likewise.
3717         * sysdeps/ieee754/ldbl-opt/s_frexp.c: Likewise.
3718         * sysdeps/ieee754/ldbl-opt/s_isinf.c: Likewise.
3719         * sysdeps/ieee754/ldbl-opt/s_isnan.c: Likewise.
3720         * sysdeps/ieee754/ldbl-opt/s_ldexp.c: Likewise.
3721         * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: Likewise.
3722         * sysdeps/ieee754/ldbl-opt/s_modf.c: Likewise.
3723         * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
3724         * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
3725         * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
3726         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
3727         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
3728         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
3729         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
3730         Likewise.
3731         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c:
3732         Likewise.
3733         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c:
3734         Likewise.
3735         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c:
3736         Likewise.
3737         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c:
3738         Likewise.
3739         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
3740         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Likewise.
3741         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
3742         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
3743         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
3744         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
3745         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
3746         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: Likewise.
3747         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: Likewise.
3748         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: Likewise.
3749         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Likewise.
3750         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
3751         * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
3752         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
3753         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
3754         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
3755         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
3756         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
3757         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
3758         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
3759         * sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
3760         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
3761         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
3762         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
3763         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: Likewise.
3764         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
3765         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: Likewise.
3767         * nptl/lowlevellock.c: Use IS_IN instead of IS_IN_libpthread.
3768         * nptl/pthreadP.h: Likewise.
3769         * nptl_db/structs.def: Likewise.
3770         * sysdeps/arm/sysdep.h: Likewise.
3771         * sysdeps/nptl/bits/libc-lock.h: Likewise.
3772         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
3773         * sysdeps/sparc/sparc32/lowlevellock.c: Likewise.
3774         * sysdeps/unix/alpha/sysdep.h: Likewise.
3775         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
3776         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3777         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
3778         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
3779         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
3780         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
3781         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3782         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3783         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3784         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
3785         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
3786         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
3787         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
3788         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
3789         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
3790         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
3791         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3792         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3793         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3794         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
3795         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
3796         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
3797         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3798         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
3799         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
3800         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3802         * include/mqueue.h: Use IS_IN instead of IS_IN_librt.
3803         * nptl/pthreadP.h: Likewise.
3804         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
3805         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
3806         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
3807         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
3808         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
3809         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3810         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3811         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
3812         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
3813         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
3814         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
3815         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
3816         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
3817         Likewise.
3818         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
3819         Likewise.
3820         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3821         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3822         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3823         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
3824         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
3825         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
3826         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
3827         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3829         * dlfcn/dladdr.c: Use IS_IN.
3830         * dlfcn/dladdr1.c: Likewise.
3831         * dlfcn/dlclose.c: Likewise.
3832         * dlfcn/dlerror.c: Likewise.
3833         * dlfcn/dlinfo.c: Likewise.
3834         * dlfcn/dlmopen.c: Likewise.
3835         * dlfcn/dlopen.c: Likewise.
3836         * dlfcn/dlsym.c: Likewise.
3837         * dlfcn/dlvsym.c: Likewise.
3839         * include/ifaddrs.h: Use IS_IN.
3840         * inet/check_pf.c: Likewise.
3841         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
3842         * nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
3844         * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of
3845         IS_IN_ldconfig.
3846         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN.
3847         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
3849         * include/shlib-compat.h [!NOT_IN_libc]: Remove.
3850         * nss/nss_files/files-parse.c (IS_IN_libc): Replace with
3851         IS_IN (libc).
3853         * elf/Makefile (libof-sotruss-lib): Set as extramodules.
3855         * elf/Makefile (CPPFLAGS-.os): Remove IN_LIB.
3856         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
3857         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
3858         * include/libc-symbols.h (IS_IN_LIB): New macro.
3859         * include/errno.h: Use IS_IN_LIB instead of IN_LIB.
3860         * include/netdb.h: Likewise.
3861         * include/stap-probe.h: Remove all uses of IN_LIB.
3863         * Makeconfig (module-cppflags-real): Define MODULE_NAME
3864         instead of IN_MODULE.
3865         * include/libc-symbols.h (IN_MODULE): Define using
3866         MODULE_NAME.
3867         (PASTE_NAME, PASTE_NAME1): New macros.
3868         * include/stap-probe.h (LIBC_PROBE_1): Use MODULE_NAME instead
3869         of IN_LIB.
3870         (STAP_PROBE_ASM): Likewise.
3872 2014-11-23  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3874         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Call
3875         __mach_init in dlopened libc.
3877 2014-11-22  Mike Frysinger  <vapier@gentoo.org>
3879         * sysdeps/arm/preconfigure.ac: Delete EABI check.
3880         * sysdeps/arm/preconfigure: Regenerate.
3882 2014-11-21  Roland McGrath  <roland@hack.frob.com>
3884         * nptl/pthread_create.c (__pthread_create_2_1): Set
3885         ATTR_FLAG_POLICY_SET and/or ATTR_FLAG_SCHED_SET in PD->flags
3886         when copying values from IATTR into PD.
3888 2014-11-21  Will Newton  <will.newton@linaro.org>
3889             Andrew Pinski  <andrew.pinski@caviumnetworks.com>
3891         * sysdeps/aarch64/dl-machine.h (elf_machine_load_address):
3892         Refactor inline-asm.  Also add comment.
3894         * sysdeps/aarch64/bits/link.h (la_aarch64_gnu_pltenter): Use
3895         ElfW macro instead of hardcoded Elf64 types.
3896         (la_aarch64_gnu_pltenter): Likewise.
3897         * sysdeps/aarch64/dl-machine.h
3898         (elf_machine_runtime_setup): Use ElfW(Addr).
3900         * elf/elf.h (R_AARCH64_P32_ABS32, R_AARCH64_P32_COPY,
3901         R_AARCH64_P32_GLOB_DAT, R_AARCH64_P32_JUMP_SLOT,
3902         R_AARCH64_P32_RELATIVE, R_AARCH64_P32_TLS_DTPMOD,
3903         R_AARCH64_P32_TLS_DTPREL, R_AARCH64_P32_TLS_TPREL,
3904         R_AARCH64_P32_TLSDESC, R_AARCH64_P32_IRELATIVE): Define.
3905         (R_AARCH64_TLS_DTPMOD64): Rename to ..
3906         (R_AARCH64_TLS_DTPMOD): This.
3907         (R_AARCH64_TLS_DTPREL64): Rename to ...
3908         (R_AARCH64_TLS_DTPREL): This.
3909         (R_AARCH64_TLS_TPREL64): Rename to ...
3910         (R_AARCH64_TLS_TPREL): This.
3911         * sysdeps/aarch64/dl-machine.h (elf_machine_type_class): Update
3912         R_AARCH64_TLS_DTPMOD64, R_AARCH64_TLS_DTPREL64, and
3913         R_AARCH64_TLS_TPREL64.
3914         (elf_machine_rela): Likewise.
3916 2014-11-21  Torvald Riegel  <triegel@redhat.com>
3918         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
3919         by setting it to 0.  64b atomics are not supported currently.
3921 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
3923         [BZ #16469]
3924         * resolv/res_query.c (__libc_res_nsearch): Skip leading dot in
3925         search domain names.
3927 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
3929         [BZ #16469]
3930         * NEWS: Update.
3931         * resolv/res_query.c (__libc_res_nquerydomain): Retain
3932         trailing dot.
3933         * posix/tst-getaddrinfo5.c: New.
3934         * posix/Makefile (tests): Add it.
3936 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
3938         [BZ #14498]
3939         * NEWS: Fixed.
3940         * nss/nss_db/db-XXX.c (_nss_db_get##name##_r): Update hidx
3941         after parsing line but before break_if_match.
3942         * nss/nss_files/files-service (DB_LOOKUP): Don't "continue;"
3943         if there is a protocol mismatch.
3945 2014-11-21  Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
3947         * manual/sysinfo.texi (addmntent): It is actually MT-Safe,
3948         because the potential race is on the user-supplied stream.
3950 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
3952         * sysdeps/posix/ctermid.c (ctermid): Return a pointer to a
3953         string literal if not passed a buffer.
3954         * manual/job.texi (ctermid): Update reasoning, note deviation
3955         from posix, suggest mtasurace when not passed a buffer, for
3956         future non-preliminary safety notes.
3958 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
3960         * manual/users.texi (cuserid): Fix MT-Safety note for the case
3961         of not passing it a buffer.
3962         Reported by Peng Haitao.
3964 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
3966         * manual/Makefile ($(objpfx)stamp-summary): Require
3967         check-safety.sh to pass.
3968         * manual/check-safety.sh: Wish for verification that every
3969         @deftypefn and @deftypefun is followed by a @safety remark.
3971 2014-11-20  Roland McGrath  <roland@hack.frob.com>
3973         * nptl/unwind.c (unwind_cleanup): Use __libc_fatal.
3975         * nptl/pthread_setcanceltype.c [!SIGCANCEL]: Return ENOTSUP early for
3976         PTHREAD_CANCEL_ASYNCHRONOUS.
3977         * nptl/pthread_cancel.c [!SIGCANCEL]: Just abort rather than trying to
3978         send SIGCANCEL.
3980         * nptl/default-sched.h: New file.
3981         * sysdeps/unix/sysv/linux/default-sched.h: New file.
3982         * nptl/pthread_create.c: Include it.
3983         (__pthread_create_2_1): Use collect_default_sched instead of making
3984         Linux syscalls here directly.
3986 2014-11-20  Torvald Riegel  <triegel@redhat.com>
3988         * nptl/pthread_once.c (clear_once_control, __pthread_once_slow,
3989         __pthread_once): Use C11 atomics.
3991 2014-11-20  Torvald Riegel  <triegel@redhat.com>
3993         * csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
3995 2014-11-20  Torvald Riegel  <triegel@redhat.com>
3997         * include/atomic.h (__atomic_link_error, __atomic_check_size,
3998         atomic_thread_fence_acquire, atomic_thread_fence_release,
3999         atomic_thread_fence_seq_cst, atomic_load_relaxed,
4000         atomic_load_acquire, atomic_store_relaxed, atomic_store_release,
4001         atomic_compare_exchange_weak_relaxed,
4002         atomic_compare_exchange_weak_acquire,
4003         atomic_compare_exchange_weak_release,
4004         atomic_exchange_acquire, atomic_exchange_release,
4005         atomic_fetch_add_relaxed, atomic_fetch_add_acquire,
4006         atomic_fetch_add_release, atomic_fetch_add_acq_rel,
4007         atomic_fetch_and_acquire,
4008         atomic_fetch_or_relaxed, atomic_fetch_or_acquire): New.
4010 2014-11-20  Torvald Riegel  <triegel@redhat.com>
4012         * sysdeps/aarch64/bits/atomic.h (__HAVE_64B_ATOMICS,
4013         USE_ATOMIC_COMPILER_BUILTINS): Define.
4014         * sysdeps/alpha/bits/atomic.h (__HAVE_64B_ATOMICS,
4015         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4016         * sysdeps/arm/bits/atomic.h (__HAVE_64B_ATOMICS,
4017         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4018         * sysdeps/i386/i486/bits/atomic.h (__HAVE_64B_ATOMICS,
4019         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4020         * sysdeps/ia64/bits/atomic.h (__HAVE_64B_ATOMICS,
4021         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4022         * sysdeps/m68k/coldfire/bits/atomic.h (__HAVE_64B_ATOMICS,
4023         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4024         * sysdeps/m68k/m680x0/m68020/bits/atomic.h (__HAVE_64B_ATOMICS,
4025         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4026         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS,
4027         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4028         * sysdeps/mips/bits/atomic.h (__HAVE_64B_ATOMICS,
4029         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4030         * sysdeps/powerpc/powerpc32/bits/atomic.h (__HAVE_64B_ATOMICS,
4031         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4032         * sysdeps/powerpc/powerpc64/bits/atomic.h (__HAVE_64B_ATOMICS,
4033         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4034         * sysdeps/s390/bits/atomic.h (__HAVE_64B_ATOMICS,
4035         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4036         * sysdeps/sparc/sparc32/bits/atomic.h (__HAVE_64B_ATOMICS,
4037         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4038         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__HAVE_64B_ATOMICS,
4039         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4040         * sysdeps/sparc/sparc64/bits/atomic.h (__HAVE_64B_ATOMICS,
4041         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4042         * sysdeps/tile/tilegx/bits/atomic.h (__HAVE_64B_ATOMICS,
4043         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4044         * sysdeps/tile/tilepro/bits/atomic.h (__HAVE_64B_ATOMICS,
4045         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4046         * sysdeps/unix/sysv/linux/hppa/bits/atomic.h (__HAVE_64B_ATOMICS,
4047         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4048         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
4049         (__HAVE_64B_ATOMICS, USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4050         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__HAVE_64B_ATOMICS,
4051         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4052         * sysdeps/x86_64/bits/atomic.h (__HAVE_64B_ATOMICS,
4053         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
4055 2014-11-19  Roland McGrath  <roland@hack.frob.com>
4057         * nptl/pthread_create.c (__pthread_create_2_1): Don't try to validate
4058         the sched_priority value here.  It was already checked when the user
4059         called pthread_attr_setschedparam.
4061         * nptl/tst-bad-schedattr.c: New file.
4062         * nptl/Makefile (tests): Add it.
4064 2014-11-19  Carlos O'Donell  <carlos@redhat.com>
4065             Florian Weimer  <fweimer@redhat.com>
4066             Joseph Myers  <joseph@codesourcery.com>
4067             Adam Conrad  <adconrad@0c3.net>
4068             Andreas Schwab  <schwab@suse.de>
4069             Brooks  <bmoses@google.com>
4071         [BZ #17625]
4072         * wordexp-test.c (__dso_handle): Add prototype.
4073         (__register_atfork): Likewise.
4074         (__app_register_atfork): New function.
4075         (registered_forks): New global.
4076         (register_fork): New function.
4077         (test_case): Add 3 new tests for WRDE_CMDSUB.
4078         (main): Call __app_register_atfork.
4079         (testit): If WRDE_NOCMD set registered_forks to zero, run test, and if
4080         fork count is non-zero fail the test.
4081         * posix/wordexp.c (exec_comm): Return WRDE_CMDSUB if WRDE_NOCMD flag
4082         is set.
4083         (parse_dollars): Remove check for WRDE_NOCMD.
4084         (parse_dquote): Likewise.
4086 2014-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
4088         * Makeconfig (built-modules): List non-library modules to be
4089         built.
4090         (module-cppflags): Include libc-modules.h for
4091         everything except shlib-versions.v.i.
4092         (CPPFLAGS): Use it.
4093         (before-compile): Add libc-modules.h.
4094         ($(common-objpfx)libc-modules.h,
4095         $(common-objpfx)libc-modules.stmp): New targets.
4096         (common-generated): Add libc-modules.h and libc-modules.stmp.
4097         ($(common-objpfx)Versions.v.i): Depend on libc-modules.h.
4098         * include/libc-symbols.h: Don't include libc-modules.h.
4099         * include/libc-modules.h: Remove file.
4100         * scripts/gen-libc-modules.awk: New script to generate
4101         libc-modules.h.
4102         * sysdeps/unix/Makefile ($(common-objpfx)sysd-syscalls):
4103         Depend on libc-modules.stmp.
4105         * include/shlib-compat.h (_SHLIB_COMPAT): Use IS_IN.
4107         * Makeconfig (in-module): Get value of libof set for the
4108         translation unit.
4109         (CPPFLAGS): Use $(in-module).
4110         * Makerules: Don't suffix routine names for nonlib.
4111         * include/libc-modules.h: New file.
4112         * include/libc-symbols.h: Include libc-modules.h
4113         (IS_IN): New macro to replace IS_IN_* macros.
4114         * elf/Makefile: Set libof-* for each routine.
4115         * elf/rtld-Rules: Likewise.
4116         * extra-modules.mk: Likewise.
4117         * iconv/Makefile: Likewise.
4118         * iconvdata/Makefile: Likewise.
4119         * locale/Makefile: Likewise.
4120         * malloc/Makefile: Likewise.
4121         * nss/Makefile: Likewise.
4122         * sysdeps/gnu/Makefile: Likewise.
4123         * sysdeps/ieee754/ldbl-opt/Makefile: Likewise.
4124         * sysdeps/unix/sysv/linux/Makefile: Likewise.
4125         * sysdeps/s390/s390-64/Makefile: Likewise.
4126         * nscd/Makefile: Set libof-* for each routine.  Set CFLAGS and
4127         CPPFLAGS for nscd instead of nonlib.
4129 2014-11-18  Roland McGrath  <roland@hack.frob.com>
4131         * nptl/createthread.c: New file.
4133         * nptl/createthread.c: Moved ...
4134         * sysdeps/unix/sysv/linux/createthread.c: ... here.
4136         * nptl/createthread.c: Add proper top-line comment.
4137         (do_clone): Folded into ...
4138         (create_thread): ... here.  Take new arguments STOPPED_START and
4139         THREAD_RAN.  Always set PD->stopped_start to something here.  Don't
4140         increment __nptl_threads, do event-reporting logic, do
4141         CHECK_THREAD_SYSINFO, or set THREAD_SELF->header.multiple_threads
4142         here.  Set *THREAD_RAN after ARCH_CLONE call succeeds.  Don't do any
4143         resource cleanup if sched_setaffinity or sched_setscheduler fails,
4144         just send SIGCANCEL.
4145         * nptl/pthread_create.c: Forward-declare create_thread before
4146         including createthread.c.
4147         (start_thread): Use new macro START_THREAD_DEFN to replace defining
4148         declaration, and new macro START_THREAD_SELF to replace argument.
4149         Remove return statement.
4150         (report_thread_creation): New function.
4151         (__pthread_create_2_1): Use it.  Do TD_CREATE reporting,
4152         synchronization logic, and __nptl_nthreads increment here, around
4153         calling create_thread.  Do CHECK_THREAD_SYSINFO and initialize
4154         PD->parent_cancelhandling here, before create_thread.  When
4155         create_thread fails, do __nptl_nthreads decrement, setxid_futex wake,
4156         __deallocate_stack, and ENOMEM translation here.
4158 2014-11-18  Joseph Myers  <joseph@codesourcery.com>
4160         [BZ #17616]
4161         * sysdeps/ieee754/dbl-64/mpa.c (mpone): Rename to __mpone.
4162         (mptwo): Rename to __mptwo.
4163         (__inv): Use __mptwo instead of mptwo.
4164         * sysdeps/ieee754/dbl-64/mpa.h (mpone): Rename to __mpone.
4165         (mptwo): Rename to __mptwo.
4166         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __mpone instead
4167         of mpone and __mptwo instead of mptwo.
4168         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Use __mpone
4169         instead of mpone.
4170         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
4171         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Likewise.
4172         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use __mpone instead
4173         of mpone and __mptwo instead of mptwo.
4174         (__mpranred): Use __mpone instead of mpone.
4175         * conform/Makefile (test-xfail-ISO/math.h/linknamespace): Remove
4176         variable.
4177         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
4178         (test-xfail-ISO99/math.h/linknamespace): Likewise.
4179         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
4180         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
4181         (test-xfail-ISO11/math.h/linknamespace): Likewise.
4182         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
4183         (test-xfail-XPG3/math.h/linknamespace): Likewise.
4184         (test-xfail-XPG4/math.h/linknamespace): Likewise.
4185         (test-xfail-POSIX/math.h/linknamespace): Likewise.
4186         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
4187         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
4188         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
4189         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
4190         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
4191         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
4192         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
4193         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
4194         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
4195         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
4197 2014-11-18  Tom de Vries  <tom@codesoucery.com>
4199         * manual/signal.texi (Primitives Interrupted by Signals): In section,
4200         replace BSD Handler xref with BSD Signal Handling.
4202 2014-11-17  Richard Henderson  <rth@redhat.com>
4204         * sysdeps/alpha/soft-fp/local-soft-fp.h (_FP_UNPACK_RAW_2): Remove.
4205         (_FP_PACK_RAW_2): Remove.
4206         (AXP_DECL_RETURN_Q): Rename from FP_DECL_RETURN, use _FP_UNION_Q.
4207         (AXP_RETURN_Q): Rename from FP_RETURN, use _FP_UNION_Q.
4208         (AXP_UNPACK_RAW_Q, AXP_UNPACK_SEMIRAW_Q, AXP_UNPACK_Q): New.
4209         (AXP_PACK_RAW_Q, AXP_PACK_SEMIRAW_Q, AXP_PACK_Q): New.
4210         * sysdeps/alpha/soft-fp/ots_add.c (_OtsAddX): Update to match.
4211         * sysdeps/alpha/soft-fp/ots_cmp.c (internal_equality): Likewise.
4212         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Likewise.
4213         * sysdeps/alpha/soft-fp/ots_cvtqux.c (_OtsCvtQUX): Likewise.
4214         * sysdeps/alpha/soft-fp/ots_cvtqx.c (_OtsCvtQX): Likewise.
4215         * sysdeps/alpha/soft-fp/ots_cvttx.c (_OtsConvertFloatTX): Likewise.
4216         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Likewise.
4217         * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Likewise.
4218         * sysdeps/alpha/soft-fp/ots_div.c (_OtsDivX): Likewise.
4219         * sysdeps/alpha/soft-fp/ots_mul.c (_OtsMulX): Likewise.
4220         * sysdeps/alpha/soft-fp/ots_nintxq.c (_OtsNintXQ): Likewise.
4221         * sysdeps/alpha/soft-fp/ots_sub.c (_OtsSubX): Likewise.
4223 2014-11-14  Roland McGrath  <roland@hack.frob.com>
4225         * signal/signal.h [__USE_MISC]
4226         (struct sigvec): Remove type.
4227         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): Remove macros.
4228         (sigvec): Remove declaration.
4229         * sysdeps/posix/sigvec.c: Moved ...
4230         * signal/sigvec.c: ... here, replacing old file.
4231         (struct sigvec): New type, copied from old signal.h definition.
4232         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): New macros, likewise copied.
4233         (__sigvec): Convert definition to prototype.
4234         (sigvec): Replace weak_alias with compat_symbol.
4235         * signal/Versions (libc: GLIBC_2.21): New version set.
4236         * include/signal.h: Remove __sigvec declaration.
4237         * sysdeps/unix/bsd/sigvec.c: Remove file.
4238         * sysdeps/unix/bsd/syscalls.list: Remove sigvec.
4239         * manual/signal.texi (BSD Handler): Remove subsection.
4240         Move siginterrupt up to ...
4241         (BSD Signal Handling): ... here.  Mark it as XPG rather than BSD.
4242         (Blocking in BSD): Fold subsection into its parent.
4243         * NEWS: Mention sigvec removal.
4245 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
4247         * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)]
4248         (DLA_FMS): Make definition conditional only on [__FMA4__].
4249         [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional
4250         definition.
4252         * sysdeps/arm/sysdep.h [PROF && __GNUC_PREREQ(4,4)] (CALL_MCOUNT):
4253         Make definition conditional only on [PROF].
4254         [PROF && !__GNUC_PREREQ(4,4)] (CALL_MCOUNT): Remove conditional
4255         definition.
4256         [__GNUC_PREREQ(4,4)] (mcount): Make definition unconditional.
4257         [!__GNUC_PREREQ(4,4)] (mcount): Remove conditional definition.
4259         * signal/signal.h (__sigpause): Only declare if [__USE_XOPEN &&
4260         !__GNUC__].
4261         * include/signal.h (__sigpause): Move declaration above call to
4262         libc_hidden_proto.
4263         * conform/Makefile (test-xfail-ISO/signal.h/linknamespace): Remove
4264         variable.
4265         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
4266         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
4268 2014-11-14  David S. Miller  <davem@davemloft.net>
4270         * sysdeps/sparc/sparc64/rtld-memcpy.c (NO_MEMPCPY_STPCPY_REDIRECT):
4271         Define before including <string/memcpy.c> and <string/mempcpy.c>.
4273 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
4275         * configure.ac (libc_cv_compiler_ok): Require GCC 4.6 or later.
4276         * configure: Regenerated.
4277         * manual/install.texi (Tools for Compilation): Document a
4278         requirement of GCC 4.6 or later and that GCC 4.9 is the newest
4279         compiler verified to work.
4280         * INSTALL: Regenerated.
4282         * include/string.h [NO_MEMPCPY_STPCPY_REDIRECT] (mempcpy): Do not
4283         redeclare with asm name.
4284         [NO_MEMPCPY_STPCPY_REDIRECT] (stpcpy): Likewise.
4285         * string/mempcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Define before
4286         including <string.h>.
4287         * string/stpcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4288         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c
4289         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4290         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c
4291         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4292         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c
4293         [SHARED && !NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4295 2014-11-13  Joseph Myers  <joseph@codesourcery.com>
4297         * stdlib/strtol.c (__strtol): Use prototype definition.
4299         [BZ #17594]
4300         * stdlib/strtol.c (SYM__): New macro.
4301         (SYM__1): Likewise.
4302         (__strtol): Likewise.
4303         (strtol): Rename to __strtol and define as weak alias of
4304         __strtol.  Use libc_hidden_weak.
4306 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
4308         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START):
4309         Use numbered labels in inline assembly.
4311 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
4313         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp):
4314         Add setjmp LIBC_PROBE.
4315         * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp):
4316         Likewise.
4317         * sysdeps/s390/s390-32/__longjmp.c (__longjmp):
4318         Add longjmp, longjmp_target LIBC_PROBE.
4319         * sysdeps/s390/s390-64/__longjmp.c (__longjmp):
4320         Likewise.
4322 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
4324         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
4325         Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
4326         to get rid of unused variable warning.
4328 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
4330         * sysdeps/s390/s390-32/backtrace.c (__backtrace):
4331         Check for unwind_backtrace ==  NULL only in SHARED case.
4332         (__backchain_backtrace): Compile only in SHARED case.
4333         * sysdeps/s390/s390-64/backtrace.c (__backtrace):
4334         Likewise.
4335         (__backchain_backtrace): Declare as static.
4337 2014-11-12  Roland McGrath  <roland@hack.frob.com>
4339         * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
4340         (__libc_multiple_threads_ptr): Variable moved ...
4341         * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
4343 2014-11-12  Joseph Myers  <joseph@codesourcery.com>
4345         * conform/GlibcConform.pm: New file.
4346         * conform/conformtest.pl: Use GlibcConform module.
4347         * conform/linknamespace.pl: New file.
4348         * conform/list-header-symbols.pl: Likewise.
4349         * conform/Makefile (linknamespace-symlists-base): New variable.
4350         (linknamespace-symlists-tests): Likewise.
4351         (linknamespace-header-base): Likewise.
4352         (linknamespace-header-tests): Likewise.
4353         (tests-special): Add new tests.
4354         ($(linknamespace-symlists-tests)): New rule.
4355         (linknamespace-libs): New variable.
4356         ($(objpfx)symlist-stdlibs): New rule.
4357         ($(linknamespace-header-tests)): Likewise.
4358         (test-xfail-XPG3/varargs.h/linknamespace): New variable.
4359         (test-xfail-XPG4/varargs.h/linknamespace): Likewise.
4360         (test-xfail-UNIX98/varargs.h/linknamespace): Likewise.
4361         (test-xfail-XPG4/ndbm.h/linknamespace): Likewise.
4362         (test-xfail-UNIX98/ndbm.h/linknamespace): Likewise.
4363         (test-xfail-XOPEN2K/ndbm.h/linknamespace): Likewise.
4364         (test-xfail-XOPEN2K8/ndbm.h/linknamespace): Likewise.
4365         (test-xfail-ISO/math.h/linknamespace): Likewise.
4366         (test-xfail-ISO/signal.h/linknamespace): Likewise.
4367         (test-xfail-ISO/stdio.h/linknamespace): Likewise.
4368         (test-xfail-ISO/time.h/linknamespace): Likewise.
4369         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
4370         (test-xfail-ISO99/ctype.h/linknamespace): Likewise.
4371         (test-xfail-ISO99/math.h/linknamespace): Likewise.
4372         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
4373         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
4374         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
4375         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
4376         (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
4377         (test-xfail-ISO11/math.h/linknamespace): Likewise.
4378         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
4379         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
4380         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
4381         (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
4382         (test-xfail-XPG3/fnmatch.h/linknamespace): Likewise.
4383         (test-xfail-XPG3/glob.h/linknamespace): Likewise.
4384         (test-xfail-XPG3/math.h/linknamespace): Likewise.
4385         (test-xfail-XPG3/regex.h/linknamespace): Likewise.
4386         (test-xfail-XPG3/search.h/linknamespace): Likewise.
4387         (test-xfail-XPG3/stdio.h/linknamespace): Likewise.
4388         (test-xfail-XPG3/time.h/linknamespace): Likewise.
4389         (test-xfail-XPG3/unistd.h/linknamespace): Likewise.
4390         (test-xfail-XPG3/wordexp.h/linknamespace): Likewise.
4391         (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
4392         (test-xfail-XPG4/fmtmsg.h/linknamespace): Likewise.
4393         (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
4394         (test-xfail-XPG4/glob.h/linknamespace): Likewise.
4395         (test-xfail-XPG4/grp.h/linknamespace): Likewise.
4396         (test-xfail-XPG4/libgen.h/linknamespace): Likewise.
4397         (test-xfail-XPG4/math.h/linknamespace): Likewise.
4398         (test-xfail-XPG4/netdb.h/linknamespace): Likewise.
4399         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
4400         (test-xfail-XPG4/regex.h/linknamespace): Likewise.
4401         (test-xfail-XPG4/search.h/linknamespace): Likewise.
4402         (test-xfail-XPG4/stdio.h/linknamespace): Likewise.
4403         (test-xfail-XPG4/stdlib.h/linknamespace): Likewise.
4404         (test-xfail-XPG4/sys/mman.h/linknamespace): Likewise.
4405         (test-xfail-XPG4/sys/statvfs.h/linknamespace): Likewise.
4406         (test-xfail-XPG4/syslog.h/linknamespace): Likewise.
4407         (test-xfail-XPG4/time.h/linknamespace): Likewise.
4408         (test-xfail-XPG4/unistd.h/linknamespace): Likewise.
4409         (test-xfail-XPG4/wordexp.h/linknamespace): Likewise.
4410         (test-xfail-POSIX/aio.h/linknamespace): Likewise.
4411         (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
4412         (test-xfail-POSIX/glob.h/linknamespace): Likewise.
4413         (test-xfail-POSIX/math.h/linknamespace): Likewise.
4414         (test-xfail-POSIX/mqueue.h/linknamespace): Likewise.
4415         (test-xfail-POSIX/pthread.h/linknamespace): Likewise.
4416         (test-xfail-POSIX/regex.h/linknamespace): Likewise.
4417         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
4418         (test-xfail-POSIX/semaphore.h/linknamespace): Likewise.
4419         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
4420         (test-xfail-POSIX/time.h/linknamespace): Likewise.
4421         (test-xfail-POSIX/unistd.h/linknamespace): Likewise.
4422         (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
4423         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
4424         (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
4425         (test-xfail-UNIX98/fmtmsg.h/linknamespace): Likewise.
4426         (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
4427         (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
4428         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
4429         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
4430         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
4431         (test-xfail-UNIX98/mqueue.h/linknamespace): Likewise.
4432         (test-xfail-UNIX98/netdb.h/linknamespace): Likewise.
4433         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
4434         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
4435         (test-xfail-UNIX98/regex.h/linknamespace): Likewise.
4436         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
4437         (test-xfail-UNIX98/search.h/linknamespace): Likewise.
4438         (test-xfail-UNIX98/semaphore.h/linknamespace): Likewise.
4439         (test-xfail-UNIX98/stdio.h/linknamespace): Likewise.
4440         (test-xfail-UNIX98/stdlib.h/linknamespace): Likewise.
4441         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
4442         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
4443         (test-xfail-UNIX98/syslog.h/linknamespace): Likewise.
4444         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
4445         (test-xfail-UNIX98/unistd.h/linknamespace): Likewise.
4446         (test-xfail-UNIX98/wchar.h/linknamespace): Likewise.
4447         (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
4448         (test-xfail-XOPEN2K/aio.h/linknamespace): Likewise.
4449         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
4450         (test-xfail-XOPEN2K/fcntl.h/linknamespace): Likewise.
4451         (test-xfail-XOPEN2K/fmtmsg.h/linknamespace): Likewise.
4452         (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
4453         (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
4454         (test-xfail-XOPEN2K/grp.h/linknamespace): Likewise.
4455         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
4456         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
4457         (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
4458         (test-xfail-XOPEN2K/net/if.h/linknamespace): Likewise.
4459         (test-xfail-XOPEN2K/netdb.h/linknamespace): Likewise.
4460         (test-xfail-XOPEN2K/pthread.h/linknamespace): Likewise.
4461         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
4462         (test-xfail-XOPEN2K/regex.h/linknamespace): Likewise.
4463         (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
4464         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
4465         (test-xfail-XOPEN2K/signal.h/linknamespace): Likewise.
4466         (test-xfail-XOPEN2K/spawn.h/linknamespace): Likewise.
4467         (test-xfail-XOPEN2K/stdlib.h/linknamespace): Likewise.
4468         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
4469         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
4470         (test-xfail-XOPEN2K/sys/wait.h/linknamespace): Likewise.
4471         (test-xfail-XOPEN2K/syslog.h/linknamespace): Likewise.
4472         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
4473         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
4474         (test-xfail-XOPEN2K/ucontext.h/linknamespace): Likewise.
4475         (test-xfail-XOPEN2K/unistd.h/linknamespace): Likewise.
4476         (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.
4477         (test-xfail-POSIX2008/aio.h/linknamespace): Likewise.
4478         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
4479         (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
4480         (test-xfail-POSIX2008/dirent.h/linknamespace): Likewise.
4481         (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
4482         (test-xfail-POSIX2008/grp.h/linknamespace): Likewise.
4483         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
4484         (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
4485         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
4486         (test-xfail-POSIX2008/netdb.h/linknamespace): Likewise.
4487         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
4488         (test-xfail-POSIX2008/regex.h/linknamespace): Likewise.
4489         (test-xfail-POSIX2008/semaphore.h/linknamespace): Likewise.
4490         (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
4491         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
4492         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
4493         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
4494         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
4495         (test-xfail-POSIX2008/unistd.h/linknamespace): Likewise.
4496         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
4497         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
4498         (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
4499         (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
4500         (test-xfail-XOPEN2K8/fmtmsg.h/linknamespace): Likewise.
4501         (test-xfail-XOPEN2K8/grp.h/linknamespace): Likewise.
4502         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
4503         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
4504         (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
4505         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
4506         (test-xfail-XOPEN2K8/netdb.h/linknamespace): Likewise.
4507         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
4508         (test-xfail-XOPEN2K8/pwd.h/linknamespace): Likewise.
4509         (test-xfail-XOPEN2K8/regex.h/linknamespace): Likewise.
4510         (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
4511         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
4512         (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
4513         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
4514         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
4515         (test-xfail-XOPEN2K8/syslog.h/linknamespace): Likewise.
4516         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
4517         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
4518         (test-xfail-XOPEN2K8/unistd.h/linknamespace): Likewise.
4520         [BZ #17589]
4521         * intl/localealias.c [_LIBC] (FGETS): Use __fgets_unlocked instead
4522         of fgets_unlocked.
4524         [BZ #17585]
4525         * string/memmem.c [!_LIBC] (__memmem): Define to memmem.
4526         (memmem): Rename to __memmem and define as weak alias of
4527         __memmem.  Use libc_hidden_weak.
4528         (__memmem): Use libc_hidden_def.
4529         * include/string.h (__memmem): Declare.  Use libc_hidden_proto.
4530         * locale/findlocale.c (valid_locale_name): Use __memmem instead of
4531         memmem.
4533         [BZ #17582]
4534         * libio/iofgets.c [weak_alias && !_IO_MTSAFE_IO]
4535         (__fgets_unlocked): Add alias of _IO_fgets.  Use libc_hidden_def.
4536         * libio/iofgets_u.c (fgets_unlocked): Rename to __fgets_unlocked
4537         and define as weak alias of __fgets_unlocked.  Use
4538         libc_hidden_weak.
4539         (__fgets_unlocked): Use libc_hidden_def.
4540         * include/stdio.h (__fgets_unlocked): Declare.  Use
4541         libc_hidden_proto.
4542         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Use
4543         __fgets_unlocked instead of fgets_unlocked.
4544         * sysdeps/unix/sysv/linux/alpha/getsysstats.c
4545         (GET_NPROCS_CONF_PARSER): Likewise.
4546         * sysdeps/unix/sysv/linux/sparc/getsysstats.c
4547         (GET_NPROCS_CONF_PARSER): Likewise.
4549         [BZ #17574]
4550         * wcsmbs/wmemset.c (wmemset): Rename to __wmemset and define as
4551         weak alias of __wmemset.  Use libc_hidden_weak.
4552         (__wmemset): Use libc_hidden_def.
4553         * include/wchar.h (__wmemset): Declare.  Use libc_hidden_proto.
4554         * stdio-common/printf_fp.c (___printf_fp): Call __wmemset instead
4555         of wmemset.
4557         [BZ #17573]
4558         * include/string.h [NOT_IN_libc || !SHARED] (mempcpy): Declare
4559         with asm name __mempcpy.
4560         [NOT_IN_libc || !SHARED] (stpcpy): Declare with asm name __stpcpy.
4562         [BZ #17572]
4563         * sysdeps/x86_64/rawmemchr.S (rawmemchr): Rename to __rawmemchr
4564         and define as weak alias of __rawmemchr.
4565         (__rawmemchr): Do not define as strong alias of rawmemchr.
4567         [BZ #17571]
4568         * stdlib/msort.c (qsort_r): Rename to __qsort_r and define as weak
4569         alias of __qsort_r.
4570         (qsort): Call __qsort_r instead of qsort_r.
4571         * include/stdlib.h (qsort_r): Do not call libc_hidden_proto.
4572         (__qsort_r): Declare.  Call libc_hidden_proto.
4573         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call __qsort_r
4574         instead of qsort_r.
4575         * nscd/gai.c (__qsort_r): Define to qsort_r.
4576         * posix/tst-rfc3484.c (__qsort_r): Likewise.
4577         * posix/tst-rfc3484-2.c (__qsort_r): Likewise.
4578         * posix/tst-rfc3484-3.c (__qsort_r): Likewise.
4580         [BZ #17570]
4581         * malloc/malloc.c (malloc_info): Rename to __malloc_info and
4582         define as weak alias of __malloc_info.
4584         [BZ #17584]
4585         * dirent/rewinddir.c (rewinddir): Rename to __rewinddir and define
4586         as weak alias of __rewinddir.  Don't use libc_hidden_def.
4587         (__rewinddir): Use libc_hidden_def.
4588         * sysdeps/mach/hurd/rewinddir.c: Rename to __rewinddir and define
4589         as weak alias of __rewinddir.  Don't use libc_hidden_def.
4590         (__rewinddir): Use libc_hidden_def.
4591         * sysdeps/posix/rewinddir.c: Rename to __rewinddir and define as
4592         weak alias of __rewinddir.  Don't use libc_hidden_def.
4593         (__rewinddir): Use libc_hidden_def.
4594         * include/dirent.h (rewinddir): Don't use libc_hidden_proto.
4595         (__rewinddir): Use libc_hidden_proto.
4596         * sysdeps/posix/getcwd.c [!_LIBC] (__rewinddir): Define to
4597         rewinddir.
4598         (__getcwd): Use __rewinddir instead of rewinddir.
4600         [BZ #17583]
4601         * libio/fileno.c (fileno): Rename to __fileno and define as weak
4602         alias of __fileno.  Use libc_hidden_weak.
4603         (__fileno): Use libc_hidden_def.
4604         [weak_alias] (fileno_unlocked): Define as weak alias of __fileno.
4605         * libio/ftello.c (ftello): Rename to __ftello and define as weak
4606         alias of __ftello.
4607         [__OFF_T_MATCHES_OFF64_T] (ftello64): Define as weak alias of
4608         __ftello.
4609         * libio/iofread.c [weak_alias && !_IO_MTSAFE_IO]
4610         (__fread_unlocked): Define as strong alias of _IO_fread.  Use
4611         libc_hidden_def.
4612         (fread_unlocked): Don't use libc_hidden_ver.
4613         * libio/iofread_u.c (fread_unlocked): Rename to __fread_unlocked
4614         and define as weak alias of __fread_unlocked.  Don't use
4615         libc_hidden_def.
4616         (__fread_unlocked): Use libc_hidden_def.
4617         * include/stdio.h (__fileno): Declare.  Use libc_hidden_proto.
4618         (ftello): Don't use libc_hidden_proto.
4619         (__ftello): Declare.  Use libc_hidden_proto.
4620         (fread_unlocked): Don't use libc_hidden_proto.
4621         (__fread_unlocked): Declare.  Use libc_hidden_proto.
4622         * time/tzfile.c (__tzfile_read): Use __fileno, __fread_unlocked
4623         and __ftello instead of fileno, fread_unlocked and ftello.
4625 2012-11-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
4627         * sysdeps/s390/s390-32/bcopy.S (__bcopy): Use GOT instead of
4628         GOT12.
4629         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
4630         Likewise.
4631         (_dl_start_user): Likewise.
4632         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
4634 2014-11-12  Carlos O'Donell  <carlos@redhat.com>
4635             Siddhesh Poyarekar  <siddhesh@redhat.com>
4637         * sysdeps/s390/s390-32/dl-machine.h (_dl_start_user):
4638         Move argv and envp down instead of moving argc up.
4639         * sysdeps/s390/s390-32/dl-sysdep.h: New file.
4641 2014-11-12  Leonhard Holz  <leonhard.holz@web.de>
4643         [BZ #17506]
4644         * test-skeleton.c (main): Return successful if one of
4645         EXPECTED_SIGNAL or EXPECTED_STATUS is met when both given.
4646         * string/tst-strcoll-overflow.c: Define expected status.
4648 2014-11-12  Tatiana Udalova  <t.udalova@samsung.com>
4650         [BZ #17475]
4651         * locale/iso-639.def: Define Bhili and Tulu language codes.
4653 2014-11-11  Alan Hayward  <alan.hayward@arm.com>
4655         * sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: New file.
4657 2014-11-10  Renlin Li  <Renlin.Li@arm.com>
4659         [BZ #17555]
4660         * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment.
4662 2014-11-10  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
4664         * configure.ac: Updated check of minimal required version to
4665         2.22.
4666         * manual/install.texi (Tools for Compilation): Updated version
4667         number.
4668         * configure: Regenerated.
4669         * INSTALL: Likewise.
4671 2014-11-07  Andreas Schwab  <schwab@linux-m68k.org>
4673         * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Remove
4674         __tls_get_addr.
4676 2014-11-07  Joseph Myers  <joseph@codesourcery.com>
4678         * include/sys/wait.h (__libc_waitpid): Remove declaration.
4679         * posix/waitpid.c (__libc_waitpid): Rename to __waitpid.
4680         (__waitpid): Don't define as alias.  Use libc_hidden_def not
4681         libc_hidden_weak.
4682         (waitpid): Define as alias of __waitpid.
4683         * sysdeps/unix/bsd/waitpid.c (__libc_waitpid): Rename to
4684         __waitpid.
4685         (__waitpid): Don't define as alias.  Use libc_hidden_def not
4686         libc_hidden_weak.
4687         (waitpid): Define as alias of __waitpid.
4688         * sysdeps/unix/sysv/linux/i386/syscalls.list (waitpid): Remove
4689         __libc_waitpid alias.
4690         * sysdeps/unix/sysv/linux/m68k/syscalls.list (waitpid): Likewise.
4691         * sysdeps/unix/sysv/linux/powerpc/syscalls.list (waitpid):
4692         Likewise.
4693         * sysdeps/unix/sysv/linux/sh/syscalls.list (waitpid): Likewise.
4694         * sysdeps/unix/sysv/linux/sparc/syscalls.list (waitpid): Likewise.
4695         * sysdeps/unix/sysv/linux/tile/waitpid.S (__libc_waitpid): Remove
4696         alias.
4697         * sysdeps/unix/sysv/linux/waitpid.c (__libc_waitpid): Rename to
4698         __waitpid.
4699         (__waitpid): Don't define as alias.  Use libc_hidden_def not
4700         libc_hidden_weak.
4701         (waitpid): Define as alias of __waitpid.
4703 2014-11-06  Carlos O'Donell  <carlos@redhat.com>
4705         * manual/llio.texi: Add comment that write safety has been
4706         fixed in Linux.
4708         * elf/Makefile (all-built-dso): Add $(common-objpfx)elf/ld.so.
4709         (localplt-build-dso): Add elf/ld.so.
4710         * sysdeps/unix/sysv/linux/i386/localplt.data: Add ___tls_get_addr
4711         i.e. 3 underscore version, __libc_memalign, malloc, calloc, realloc,
4712         and free for ld.so.
4713         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: Add
4714         __libc_memalign, malloc, calloc, realloc, and free for ld.so.
4715         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data:
4716         Likewise.
4717         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
4718         Likewise.
4719         * sysdeps/unix/sysv/linux/s390/localplt.data: Likewise.
4720         * sysdeps/generic/localplt.data: Add __tls_get_addr i.e. 2 underscore
4721         version, __libc_memalign, malloc, calloc, realloc and free for ld.so.
4722         * sysdeps/unix/sysv/linux/aarch64/localplt.data: Likewise.
4723         * sysdeps/unix/sysv/linux/arm/localplt.data: Likewise.
4724         * sysdeps/unix/sysv/linux/alpha/localplt.data: Likewise.
4725         * sysdeps/unix/sysv/linux/ia64/localplt.data: Likewise.
4726         * sysdeps/unix/sysv/linux/m68k/localplt.data: Likewise.
4727         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Likewise.
4728         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Likewise.
4729         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
4731 2014-11-05  Joseph Myers  <joseph@codesourcery.com>
4733         [BZ #14132]
4734         * include/libc-symbols.h (INTUSE): Remove macro.
4735         (INTDEF): Likewise.
4736         (INTVARDEF): Likewise.
4737         (_INTVARDEF): Likewise.
4738         (INTDEF2): Likewise.
4739         (INTVARDEF2): Likewise.
4740         * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use
4741         rtld_hidden_def instead of INTVARDEF.
4742         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]
4743         (_dl_starting_up_internal): Remove declaration.
4744         (_dl_starting_up): Use rtld_hidden_proto.
4745         * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove
4746         declaration.
4747         [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise.
4748         (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with
4749         _dl_starting_up.
4750         * elf/dl-writev.h (_dl_writev): Likewise.
4751         * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS]
4752         (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of
4753         _dl_starting_up_internal.
4755 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4757         * stdio-common/tst-fmemopen.c (do_test): Refactor to use
4758         test-skeleton.c.
4760 2014-11-05  Will Newton  <will.newton@linaro.org>
4762         * benchtests/Makefile: (bench-malloc): Add malloc thread
4763         scalability benchmark.
4764         * benchtests/bench-malloc-threads.c: New file.
4766 2014-11-05  Richard Earnshaw  <rearnsha@arm.com>
4768         * sysdeps/aarch64/strchrnul.S: New file.
4770 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4772         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Simplify
4773         definition.
4774         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
4775         Likwise.
4776         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
4777         Likewise.
4778         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
4779         Likewise.
4780         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
4781         Likewise.
4782         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
4783         Likewise.
4785 2014-11-05  Arjun Shankar  <arjun.is@lostca.se>
4787         * catgets/test-gencat.c: Use test-skeleton.c.
4788         * catgets/tst-catgets.c: Likewise.
4789         * csu/tst-empty.c: Likewise.
4790         * elf/tst-audit2.c: Likewise.
4791         * elf/tst-global1.c: Likewise.
4792         * elf/tst-pathopt.c: Likewise.
4793         * elf/tst-piemod1.c: Likewise.
4794         * elf/tst-tls10.c: Likewise.
4795         * elf/tst-tls11.c: Likewise.
4796         * elf/tst-tls12.c: Likewise.
4797         * gnulib/tst-gcc.c: Likewise.
4798         * iconvdata/tst-e2big.c: Likewise.
4799         * iconvdata/tst-loading.c: Likewise.
4800         * iconv/tst-iconv1.c: Likewise.
4801         * iconv/tst-iconv2.c: Likewise.
4802         * inet/test-inet6_opt.c: Likewise.
4803         * inet/tst-gethnm.c: Likewise.
4804         * inet/tst-network.c: Likewise.
4805         * inet/tst-ntoa.c: Likewise.
4806         * intl/tst-codeset.c: Likewise.
4807         * intl/tst-gettext2.c: Likewise.
4808         * intl/tst-gettext3.c: Likewise.
4809         * intl/tst-ngettext.c: Likewise.
4810         * intl/tst-translit.c: Likewise.
4811         * io/test-stat.c: Likewise.
4812         * libio/test-fmemopen.c: Likewise.
4813         * libio/tst-freopen.c: Likewise.
4814         * libio/tst-sscanf.c: Likewise.
4815         * libio/tst-ungetwc1.c: Likewise.
4816         * libio/tst-ungetwc2.c: Likewise.
4817         * libio/tst-widetext.c: Likewise.
4818         * localedata/tst-ctype.c: Likewise.
4819         * localedata/tst-digits.c: Likewise.
4820         * localedata/tst-leaks.c: Likewise.
4821         * localedata/tst-mbswcs1.c: Likewise.
4822         * localedata/tst-mbswcs2.c: Likewise.
4823         * localedata/tst-mbswcs3.c: Likewise.
4824         * localedata/tst-mbswcs4.c: Likewise.
4825         * localedata/tst-mbswcs5.c: Likewise.
4826         * localedata/tst-setlocale.c: Likewise.
4827         * localedata/tst-trans.c: Likewise.
4828         * localedata/tst-wctype.c: Likewise.
4829         * localedata/tst-xlocale1.c: Likewise.
4830         * login/tst-grantpt.c: Likewise.
4831         * malloc/tst-calloc.c: Likewise.
4832         * malloc/tst-malloc.c: Likewise.
4833         * malloc/tst-mallocstate.c: Likewise.
4834         * malloc/tst-mcheck.c: Likewise.
4835         * malloc/tst-mtrace.c: Likewise.
4836         * malloc/tst-obstack.c: Likewise.
4837         * math/atest-exp2.c: Likewise.
4838         * math/atest-exp.c: Likewise.
4839         * math/atest-sincos.c: Likewise.
4840         * math/test-matherr.c: Likewise.
4841         * math/test-misc.c: Likewise.
4842         * math/test-powl.c: Likewise.
4843         * math/tst-definitions.c: Likewise.
4844         * misc/tst-dirname.c: Likewise.
4845         * misc/tst-efgcvt.c: Likewise.
4846         * misc/tst-fdset.c: Likewise.
4847         * misc/tst-hsearch.c: Likewise.
4848         * misc/tst-mntent2.c: Likewise.
4849         * nptl/tst-sem7.c: Likewise.
4850         * nptl/tst-sem8.c: Likewise.
4851         * nptl/tst-sem9.c: Likewise.
4852         * nss/test-netdb.c: Likewise.
4853         * posix/tst-fnmatch.c: Likewise.
4854         * posix/tst-getlogin.c: Likewise.
4855         * posix/tst-gnuglob.c: Likewise.
4856         * posix/tst-mmap.c: Likewise.
4857         * pwd/tst-getpw.c: Likewise.
4858         * resolv/tst-inet_ntop.c: Likewise.
4859         * rt/tst-timer.c: Likewise.
4860         * stdio-common/test-fseek.c: Likewise.
4861         * stdio-common/test-popen.c: Likewise.
4862         * stdio-common/test-vfprintf.c: Likewise.
4863         * stdio-common/tst-cookie.c: Likewise.
4864         * stdio-common/tst-fileno.c: Likewise.
4865         * stdio-common/tst-gets.c: Likewise.
4866         * stdio-common/tst-obprintf.c: Likewise.
4867         * stdio-common/tst-perror.c: Likewise.
4868         * stdio-common/tst-sprintf2.c: Likewise.
4869         * stdio-common/tst-sprintf3.c: Likewise.
4870         * stdio-common/tst-sprintf.c: Likewise.
4871         * stdio-common/tst-swprintf.c: Likewise.
4872         * stdio-common/tst-tmpnam.c: Likewise.
4873         * stdio-common/tst-unbputc.c: Likewise.
4874         * stdio-common/tst-wc-printf.c: Likewise.
4875         * stdlib/tst-environ.c: Likewise.
4876         * stdlib/tst-fmtmsg.c: Likewise.
4877         * stdlib/tst-limits.c: Likewise.
4878         * stdlib/tst-rand48-2.c: Likewise.
4879         * stdlib/tst-rand48.c: Likewise.
4880         * stdlib/tst-random2.c: Likewise.
4881         * stdlib/tst-random.c: Likewise.
4882         * stdlib/tst-strtol.c: Likewise.
4883         * stdlib/tst-strtoll.c: Likewise.
4884         * stdlib/tst-tls-atexit.c: Likewise.
4885         * stdlib/tst-xpg-basename.c: Likewise.
4886         * string/test-ffs.c: Likewise.
4887         * string/tst-bswap.c: Likewise.
4888         * string/tst-inlcall.c: Likewise.
4889         * string/tst-strtok.c: Likewise.
4890         * string/tst-strxfrm.c: Likewise.
4891         * sysdeps/x86_64/tst-audit10.c: Likewise.
4892         * sysdeps/x86_64/tst-audit3.c: Likewise.
4893         * sysdeps/x86_64/tst-audit4.c: Likewise.
4894         * sysdeps/x86_64/tst-audit5.c: Likewise.
4895         * time/tst-ftime_l.c: Likewise.
4896         * time/tst-getdate.c: Likewise.
4897         * time/tst-mktime3.c: Likewise.
4898         * time/tst-mktime.c: Likewise.
4899         * time/tst-posixtz.c: Likewise.
4900         * time/tst-strptime2.c: Likewise.
4901         * time/tst-strptime3.c: Likewise.
4902         * wcsmbs/tst-btowc.c: Likewise.
4903         * wcsmbs/tst-mbrtowc.c: Likewise.
4904         * wcsmbs/tst-mbsrtowcs.c: Likewise.
4905         * wcsmbs/tst-wchar-h.c: Likewise.
4906         * wcsmbs/tst-wcpncpy.c: Likewise.
4907         * wcsmbs/tst-wcrtomb.c: Likewise.
4908         * wcsmbs/tst-wcsnlen.c: Likewise.
4909         * wcsmbs/tst-wcstof.c: Likewise.
4911 2014-11-04  Joseph Myers  <joseph@codesourcery.com>
4913         [BZ #14132]
4914         * elf/dl-profile.c (_dl_mcount): Use rtld_hidden_def instead of
4915         INTDEF.
4916         * sysdeps/generic/ldsodefs.h (_dl_mcount_internal): Remove
4917         declaration.
4918         (_dl_mcount): Use rtld_hidden_proto.
4919         * elf/dl-runtime.c (_dl_profile_fixup): Don't use INTUSE with
4920         _dl_mcount.
4921         * elf/rtld.c (_rtld_global_ro): Likewise.
4923         [BZ #14132]
4924         * elf/dl-init.c (_dl_init): Don't use INTDEF.
4925         * sysdeps/aarch64/dl-machine.h (RTLD_START): Use _dl_init instead
4926         of _dl_init_internal.
4927         * sysdeps/alpha/dl-machine.h (RTLD_START): Likewise.
4928         * sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
4929         * sysdeps/hppa/dl-machine.h (RTLD_START): Likewise.
4930         * sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
4931         * sysdeps/ia64/dl-machine.h (RTLD_START): Likewise.
4932         * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
4933         * sysdeps/microblaze/dl-machine.h (RTLD_START): Likewise.
4934         * sysdeps/mips/dl-machine.h (RTLD_START): Likewise.
4935         * sysdeps/powerpc/powerpc32/dl-start.S (_start): Likewise.
4936         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
4937         * sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
4938         * sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
4939         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
4940         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
4941         * sysdeps/tile/dl-start.S (_start): Likewise.
4942         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
4943         * sysdeps/x86_64/x32/dl-machine.h (RTLD_START): Likewise.
4945         [BZ #14132]
4946         * sysdeps/generic/ldsodefs.h (_dl_argv): Use rtld_hidden_proto.
4947         [IS_IN_rtld] (_dl_argv_internal): Do not declare.
4948         (rtld_progname): Make macro definition unconditional.
4949         * elf/rtld.c (_dl_argv): Use rtld_hidden_data_def instead of
4950         INTDEF.
4951         (dlmopen_doit): Do not use INTUSE with _dl_argv.
4952         (dl_main): Likewise.
4953         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
4954         * sysdeps/alpha/dl-machine.h (RTLD_START): Use __GI__dl_argv
4955         instead of _dl_argv_internal.
4956         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
4957         __GI__dl_argv instead of INTUSE(_dl_argv).
4958         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
4959         __GI__dl_argv instead of _dl_argv_internal.
4961         * soft-fp/op-common.h (_FP_TO_INT_ROUND): New macro.
4962         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_D): New
4963         macro.
4964         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_D): Likewise.
4965         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_E):
4966         New macro.
4967         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_E): Likewise.
4968         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_Q): New
4969         macro.
4970         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_Q): Likewise.
4971         * soft-fp/single.h (FP_TO_INT_ROUND_S): New macro.
4973 2014-11-04  Andreas Schwab  <schwab@suse.de>
4975         * posix/regex_internal.h: Don't include <locale/elem-hash.h>.
4977 2014-11-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4979         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Encode
4980         mtvsrd instruction in binary form.
4982 2014-11-03  Andreas Schwab  <schwab@suse.de>
4984         [BZ #17522]
4985         * libio/wfileops.c (_IO_wdo_write): If the file buffer has room
4986         for less than MB_LEN_MAX use a local buffer of that size.
4987         * libio/tst-fputws.c: New file.
4988         * libio/Makefile (tests): Add tst-fputws.
4990 2014-11-01  Jose E. Marchesi  <jose.marchesi@oracle.com>
4992         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
4993         the size of the fpu_fr.fpu_dregs[] array.
4995 2014-11-01  Joseph Myers  <joseph@codesourcery.com>
4997         * posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.
4998         (__nanosleep): Do not define as alias.
4999         (nanosleep): Define as alias of __nanosleep.
5000         * sysdeps/unix/sysv/linux/syscalls.list (nanosleep): Remove
5001         __libc_nanosleep name.
5003 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
5005         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): Mention need to update
5006         install.texi in comment.
5008 2014-10-31  Torvald Riegel  <triegel@redhat.com>
5010         * sysdeps/powerpc/bits/atomic.h (atomic_write_barrier): Remove and...
5011         * sysdeps/powerpc/powerpc32/bits/atomic.h (atomic_write_barrier):
5012         ... add here and use lwsync or sync ...
5013         * sysdeps/powerpc/powerpc64/bits/atomic.h (atomic_write_barrier):
5014         ... and add here using lwsync.
5016 2014-10-31  Matthew Fortune  <matthew.fortune@imgtec.com>
5018         * elf/dl-machine-reject-phdr.h: New file.
5019         * elf/dl-load.c: #include that.
5020         (open_verify): Call elf_machine_reject_phdr_p and ignore the file
5021         if that returned true.
5023 2014-10-31  Roland McGrath  <roland@hack.frob.com>
5025         [BZ #17496]
5026         * Makerules: Move gnu/lib-names.h generation chunk up, to right after
5027         gen-as-const-headers chunk.  Add a big scare comment after the last
5028         safe place to touch before-compile.
5030 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
5032         * manual/install.texi (Tools for Compilation): Update autoconf
5033         version requirements.
5034         * INSTALL: Regenerated.
5036         * misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
5037         * sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
5038         (__libc_pselect): Likewise.
5040         [BZ #14138]
5041         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
5042         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
5043         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
5044         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
5046 2014-10-31  Torvald Riegel  <triegel@redhat.com>
5048         * sysdeps/sparc/sparc32/bits/atomic.h (atomic_write_barrier): Use
5049         correct barrier instruction.
5050         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_write_barrier):
5051         Likewise.
5052         * sysdeps/sparc/sparc64/bits/atomic.h (atomic_write_barrier):
5053         Likewise.
5055 2014-10-30  Roland McGrath  <roland@hack.frob.com>
5057         * include/ctype.h: Include <ctype/ctype.h> first thing rather than
5058         after defining inlines.  Instead, just use parens to defeat macro
5059         expansion of __isctype in its declaration.
5061 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
5063         * include/sys/uio.h (__libc_readv): Remove declaration.
5064         (__libc_writev): Likewise.
5065         * misc/readv.c (__libc_readv): Rename to __readv.
5066         (__readv): Do not define as alias.
5067         (readv): Define as alias of __readv.
5068         * misc/writev.c (__libc_writev): Rename to __writev.
5069         (__writev): Do not define as alias.
5070         (writev): Define as alias of __writev.
5071         * sysdeps/posix/readv.c (__libc_readv): Rename to __readv.
5072         (__readv): Do not define as alias.
5073         (readv): Define unconditionally as alias of __readv.
5074         * sysdeps/posix/writev.c (__libc_writev): Rename to __writev.
5075         (__writev): Do not define as alias.
5076         (writev): Define unconditionally as alias of __writev.
5077         * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv
5078         name.
5079         (writev): Do not define __libc_writev name.
5081 2014-10-30  Roland McGrath  <roland@hack.frob.com>
5083         * iconv/iconv_charmap.c (add_bytes): Make IN argument pointer to const.
5084         (convert_charseq): New function, broken out of ...
5085         (use_from_charmap): ... here.  Call it.
5086         (use_to_charmap): Use convert_charseq and free instead of duplicating
5087         its code with a variable-length stack struct.
5089 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
5091         * include/fcntl.h (__libc_creat): Remove declaration.
5092         * io/creat.c (__libc_creat): Rename to creat.
5093         (creat): Do not define as alias.
5094         * sysdeps/unix/sysv/linux/alpha/creat.c (creat64): Define as alias
5095         of creat instead of __libc_creat.
5096         * sysdeps/unix/sysv/linux/generic/creat.c (__libc_creat): Rename
5097         to creat.
5098         (creat): Do not define as alias.
5099         [__WORDSIZE == 64] (creat64): Define as alias of creat instead of
5100         __libc_creat.
5101         * sysdeps/unix/sysv/linux/syscalls.list (creat): Do not define
5102         __libc_creat name.
5103         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (creat):
5104         Likewise.
5106 2014-10-29  Carlos O'Donell  <carlos@redhat.com>
5108         * manual/llio.texi: Add comments discussing why write() may be
5109         considered MT-unsafe on Linux.
5111 2014-10-28  Carlos O'Donell  <carlos@redhat.com>
5113         * dl-load.c (local_strdup): Remove.
5114         (expand_dynamic_string_token): Use __strdup.
5115         (decompose_rpath): Likewise.
5116         (_dl_map_object): Likewise.
5118 2014-10-28  Joseph Myers  <joseph@codesourcery.com>
5120         [BZ #14132]
5121         * sysdeps/generic/unwind-dw2-fde.c
5122         (__register_frame_info_bases_internal): Do not declare.
5123         (__register_frame_info_table_bases_internal): Likewise.
5124         (__deregister_frame_info_bases_internal): Likewise.
5125         (__register_frame_info_bases): Declare and use hidden_proto before
5126         definition.  Use hidden_def instead of INTDEF.
5127         (__register_frame_info_table_bases): Likewise.
5128         (__deregister_frame_info_bases): Likewise.
5129         (__register_frame_info): Do not use INTUSE.
5130         (__register_frame): Likewise.
5131         (__register_frame_info_table): Likewise.
5132         (__register_frame_table): Likewise.
5133         (__deregister_frame_info): Likewise.
5134         (__deregister_frame): Likewise.
5136 2014-10-27  Gratian Crisan  <gratian.crisan@ni.com>
5138         * sysdeps/unix/sysv/linux/arm/kernel-features.h
5139         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_FUTEX_LOCK_PI): Do
5140         not undefine.
5141         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_REQUEUE_PI):
5142         Likewise.
5143         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_SET_ROBUST_LIST):
5144         Likewise.
5146 2014-10-27  Joseph Myers  <joseph@codesourcery.com>
5148         [BZ #14138]
5149         * sysdeps/unix/sysv/linux/arm/setfsgid.c: Remove file.
5150         * sysdeps/unix/sysv/linux/arm/setfsuid.c: Likewise.
5151         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
5152         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
5153         * sysdeps/unix/sysv/linux/m68k/setfsgid.c: Likewise.
5154         * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Likewise.
5155         * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: Likewise.
5156         * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: Likewise.
5157         * sysdeps/unix/sysv/linux/sh/setfsgid.c: Likewise.
5158         * sysdeps/unix/sysv/linux/sh/setfsuid.c: Likewise.
5159         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: Likewise.
5160         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: Likewise.
5161         * sysdeps/unix/sysv/linux/arm/syscalls.list (setfsgid): Add
5162         syscall.
5163         (setfsuid): Likewise.
5164         * sysdeps/unix/sysv/linux/i386/syscalls.list (setfsgid): Likewise.
5165         (setfsuid): Likewise.
5166         * sysdeps/unix/sysv/linux/m68k/syscalls.list (setfsgid): Likewise.
5167         (setfsuid): Likewise.
5168         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setfsgid):
5169         Likewise.
5170         (setfsuid): Likewise.
5171         * sysdeps/unix/sysv/linux/sh/syscalls.list (setfsgid): Likewise.
5172         (setfsuid): Likewise.
5173         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (setfsgid):
5174         Likewise.
5175         (setfsuid): Likewise.
5177 2014-10-27  Andreas Schwab  <schwab@suse.de>
5179         [BZ #17501]
5180         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Fix
5181         check for Slow_SSE4_2 feature bit.
5182         * sysdeps/i386/i686/multiarch/strcmp.S (STRCMP): Likewise.
5183         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
5184         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP, __strcascmp):
5185         Likewise.  Fix check for Fast_Unaligned_Load feature bit.
5187 2014-10-24  Roland McGrath  <roland@hack.frob.com>
5189         * configure.ac: Validate compiler version with a empirical test of
5190         __GNUC__ and __GNUC_MINOR__ predefined values, rather than by grepping
5191         $CC -v output.
5192         * configure: Regenerated.
5194         * inet/htons.c (htons): Prototypify.
5195         * inet/htonl.c (htonl): Likewise.
5197 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5199         * string/strncat.c (strncat): Improve performance by using strlen.
5201 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5203         * string/strcat.c (strcat): Improve performance by using strlen/strcpy.
5205 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5207         * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
5208         Call libc_fetestexcept_aarch64.
5210 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5212         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
5213         Call libc_feholdexcept_aarch64.
5215 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5217         * sysdeps/aarch64/fpu/fegetround.c (fegetround):
5218         Call get_rounding_mode.
5220 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5222         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
5223         Simplify logic.
5225 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
5227         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
5228         Simplify logic.
5230 2014-10-24  Joseph Myers  <joseph@codesourcery.com>
5232         [BZ #14138]
5233         * sysdeps/unix/sysv/linux/arm/getegid.c: Remove file.
5234         * sysdeps/unix/sysv/linux/arm/geteuid.c: Likewise.
5235         * sysdeps/unix/sysv/linux/arm/getgid.c: Likewise.
5236         * sysdeps/unix/sysv/linux/arm/getgroups.c: Likewise.
5237         * sysdeps/unix/sysv/linux/arm/getresgid.c: Likewise.
5238         * sysdeps/unix/sysv/linux/arm/getresuid.c: Likewise.
5239         * sysdeps/unix/sysv/linux/arm/getuid.c: Likewise.
5240         * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
5241         * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
5242         * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
5243         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
5244         * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
5245         * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
5246         * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
5247         * sysdeps/unix/sysv/linux/m68k/getegid.c: Likewise.
5248         * sysdeps/unix/sysv/linux/m68k/geteuid.c: Likewise.
5249         * sysdeps/unix/sysv/linux/m68k/getgid.c: Likewise.
5250         * sysdeps/unix/sysv/linux/m68k/getgroups.c: Likewise.
5251         * sysdeps/unix/sysv/linux/m68k/getresgid.c: Likewise.
5252         * sysdeps/unix/sysv/linux/m68k/getresuid.c: Likewise.
5253         * sysdeps/unix/sysv/linux/m68k/getuid.c: Likewise.
5254         * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: Likewise.
5255         * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: Likewise.
5256         * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: Likewise.
5257         * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: Likewise.
5258         * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: Likewise.
5259         * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: Likewise.
5260         * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: Likewise.
5261         * sysdeps/unix/sysv/linux/sh/getegid.c: Likewise.
5262         * sysdeps/unix/sysv/linux/sh/geteuid.c: Likewise.
5263         * sysdeps/unix/sysv/linux/sh/getgid.c: Likewise.
5264         * sysdeps/unix/sysv/linux/sh/getgroups.c: Likewise.
5265         * sysdeps/unix/sysv/linux/sh/getresgid.c: Likewise.
5266         * sysdeps/unix/sysv/linux/sh/getresuid.c: Likewise.
5267         * sysdeps/unix/sysv/linux/sh/getuid.c: Likewise.
5268         * sysdeps/unix/sysv/linux/sparc/sparc32/getegid.c: Likewise.
5269         * sysdeps/unix/sysv/linux/sparc/sparc32/geteuid.c: Likewise.
5270         * sysdeps/unix/sysv/linux/sparc/sparc32/getgid.c: Likewise.
5271         * sysdeps/unix/sysv/linux/sparc/sparc32/getgroups.c: Likewise.
5272         * sysdeps/unix/sysv/linux/sparc/sparc32/getuid.c: Likewise.
5273         * sysdeps/unix/sysv/linux/arm/syscalls.list (getegid): Add
5274         syscall.
5275         (geteuid): Likewise.
5276         (getgid): Likewise.
5277         (getuid): Likewise.
5278         (getresgid): Likewise.
5279         (getresuid): Likewise.
5280         (getgroups): Likewise.
5281         * sysdeps/unix/sysv/linux/i386/syscalls.list (getegid): Likewise.
5282         (geteuid): Likewise.
5283         (getgid): Likewise.
5284         (getuid): Likewise.
5285         (getresgid): Likewise.
5286         (getresuid): Likewise.
5287         (getgroups): Likewise.
5288         * sysdeps/unix/sysv/linux/m68k/syscalls.list (getegid): Likewise.
5289         (geteuid): Likewise.
5290         (getgid): Likewise.
5291         (getuid): Likewise.
5292         (getresgid): Likewise.
5293         (getresuid): Likewise.
5294         (getgroups): Likewise.
5295         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (getegid):
5296         Likewise.
5297         (geteuid): Likewise.
5298         (getgid): Likewise.
5299         (getuid): Likewise.
5300         (getresgid): Likewise.
5301         (getresuid): Likewise.
5302         (getgroups): Likewise.
5303         * sysdeps/unix/sysv/linux/sh/syscalls.list (getegid): Likewise.
5304         (geteuid): Likewise.
5305         (getgid): Likewise.
5306         (getuid): Likewise.
5307         (getresgid): Likewise.
5308         (getresuid): Likewise.
5309         (getgroups): Likewise.
5310         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (getegid):
5311         Likewise.
5312         (geteuid): Likewise.
5313         (getgid): Likewise.
5314         (getuid): Likewise.
5315         (getgroups): Likewise.
5317         [BZ #14138]
5318         * sysdeps/unix/sysv/linux/i386/chown.c: Remove file.
5319         * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
5320         * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
5321         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
5322         * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: Remove file.
5323         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
5324         * sysdeps/unix/sysv/linux/sh/chown.c: Likewise.
5325         * sysdeps/unix/sysv/linux/sh/fchown.c: Likewise.
5326         * sysdeps/unix/sysv/linux/sh/lchown.c: Likewise.
5327         * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Likewise.
5328         * sysdeps/unix/sysv/linux/sparc/sparc32/fchown.c: Likewise.
5329         * sysdeps/unix/sysv/linux/sparc/sparc32/lchown.c: Likewise.
5330         * sysdeps/unix/sysv/linux/s390/s390-32/Versions (GLIBC_2.1): Add
5331         __chown.
5332         * sysdeps/unix/sysv/linux/i386/syscalls.list (chown): Add syscall.
5333         (lchown): Likewise.
5334         (fchown): Likewise.
5335         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (chown):
5336         Likewise.
5337         (lchown): Likewise.
5338         (fchown): Likewise.
5339         * sysdeps/unix/sysv/linux/sh/syscalls.list (chown): Likewise.
5340         (lchown): Likewise.
5341         (fchown): Likewise.
5342         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (chown):
5343         Likewise.
5344         (lchown): Likewise.
5345         (fchown): Likewise.
5347 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
5349         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept):
5350         Simplify logic.
5352 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
5354         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
5355         Cleanup logic.
5357 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
5359         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
5360         Remove unused include.
5362 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
5364         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces.
5365         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces.
5366         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces.
5367         * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces.
5369 2014-10-23  Carlos O'Donell  <carlos@systemhalted.org>
5370             Helge Deller <deller@gmx.de>
5372         [BZ #17508]
5373         * sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
5374         Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
5375         Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
5377 2014-10-23  Joseph Myers  <joseph@codesourcery.com>
5379         [BZ #14132]
5380         * sysdeps/powerpc/powerpc32/libgcc-compat.S (__ashldi3_v_glibc20):
5381         Remove macro definition.
5382         (__ashrdi3_v_glibc20): Likewise.
5383         (__lshrdi3_v_glibc20): Likewise.
5384         (__cmpdi2_v_glibc20): Likewise.
5385         (__ucmpdi2_v_glibc20): Likewise.
5386         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixdfdi_v_glibc20): Likewise.
5387         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
5388         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
5389         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
5390         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
5391         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdisf_v_glibc20): Likewise.
5393 2014-10-22  Roland McGrath  <roland@hack.frob.com>
5395         * inet/netgroup.h (struct name_list): Use C99 [] syntax rather than
5396         old GNU extension [0] syntax.
5397         * nscd/nscd_helper.c (open_socket): Use a flexible array member and
5398         alloca rather than an array member with variable length.
5399         * nscd/netgroupcache.c (addgetnetgrentX): Likewise.
5400         * nscd/nscd.c (invalidate_db): New function, broken out of ...
5401         (parse_opt): ... here.  Likewise use alloca there.
5402         Validate the -i argument before checking for rootness.
5403         (send_shutdown): New function, broken out of ...
5404         (parse_opt): ... here.
5406 2014-10-22  Roland McGrath  <roland@hack.frob.com>
5408         * sysdeps/arm/__longjmp.S [NEED_HWCAP] [IS_IN_rtld]: Use LDST_PCREL
5409         macro to get at the _rt_local_ro field.
5410         [NEED_HWCAP] [!IS_IN_rtld]: Use LDR_GLOBAL to get at _rtld_global_ro
5411         ([PIC] case) or _dl_hwcap ([!PIC] case).
5412         * sysdeps/arm/setjmp.S: Likewise.
5414         * config.h.in (ARM_PCREL_MOVW_OK): New macro.
5415         * sysdeps/arm/configure.ac: New check to define it.
5416         * sysdeps/arm/configure: Regenerated.
5417         * sysdeps/arm/sysdep.h [__ASSEMBLER__]: Include <arm-features.h>.
5418         (LDST_INDEXED_NOINDEX, LDST_INDEXED_INDEX): New macros.
5419         (LDST_INDEXED, LDST_PC_INDEXED): New macros, differing definitions
5420         depending on [ARM_NO_INDEX_REGISTER] and [__thumb2__].
5421         (LDST_PCREL) [!__thumb2__ && ARCH_HAS_T2 && ARM_PCREL_MOVW_OK]:
5422         Use move/movt pair instead of a load.
5423         (LDST_GLOBAL): Macro removed.
5424         (LDR_GLOBAL): New macro replaces it.
5425         (LDR_HIDDEN): New macro.
5426         (PTR_MANGLE_LOAD): Use LDR_GLOBAL rather than LDST_GLOBAL.
5427         Use LDR_HIDDEN instead for __pointer_chk_guard_local.
5429         * setjmp/tst-setjmp-static.c: New file.
5430         * setjmp/Makefile (tests): Add it.
5431         (tests-static): New variable.
5433 2014-10-22  Maciej W. Rozycki  <macro@codesourcery.com>
5435         [BZ #17485]
5436         * sysdeps/unix/sysv/linux/mips/vfork.S (__libc_vfork): Define.
5438 2014-10-21  Joseph Myers  <joseph@codesourcery.com>
5440         [BZ #14132]
5441         * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
5443 2014-10-21  Roland McGrath  <roland@hack.frob.com>
5445         * nptl/version.c (__nptl_main): Call __libc_write, not __write.
5447 2014-10-20  Roland McGrath  <roland@hack.frob.com>
5449         * io/fts.c (dirent_not_directory): New function.
5450         (fts_build): Call it.
5452 2014-10-20  Roland McGrath  <roland@hack.frob.com>
5454         * nptl/version.c (__nptl_main): Use normal __write rather than
5455         INTERNAL_SYSCALL.
5456         (banner): Update copyright years.
5458         * nptl/pthread_rwlock_timedrdlock.c: #include <sys/time.h> before using
5459         gettimeofday.
5460         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
5461         * nptl/pthread_cond_timedwait.c: Likewise.
5462         * nptl/pthread_mutex_timedlock.c: Likewise.
5463         * nptl/sem_timedwait.c: Likewise.
5465         * sysdeps/nptl/bits/libc-lock.h
5466         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
5467         (__libc_lock_init_recursive): Return void, not 0.
5468         * sysdeps/nptl/bits/libc-lockP.h (__libc_lock_init): Likewise.
5469         (__libc_rwlock_init): Likewise.
5470         * sysdeps/nptl/bits/stdio-lock.h (_IO_lock_init): Likewise.
5472 2014-10-20  Torvald Riegel  <triegel@redhat.com>
5474         [BZ #15215]
5475         * nptl/pthread_once.c (__pthread_once): Split out fast path to ...
5476         (__pthread_once_slow): ... here.
5477         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove file.
5478         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Remove file.
5480 2014-10-20  Torvald Riegel  <triegel@redhat.com>
5482         [BZ #15215]
5483         * nptl/pthreadP.h (__PTHREAD_ONCE_INPROGRESS, __PTHREAD_ONCE_DONE,
5484         __PTHREAD_ONCE_FORK_GEN_INCR): New.
5485         * sysdeps/nptl/fork.c (__libc_fork): Use them.
5486         * nptl/pthread_once.c (__pthread_once): Likewise.
5487         Update comments.
5489 2014-10-20  Joseph Myers  <joseph@codesourcery.com>
5491         [BZ #14138]
5492         * sysdeps/unix/syscalls.list (readv): Use __libc_readv as strong
5493         name.
5494         (writev): Use __libc_writev as strong name.
5495         * sysdeps/unix/sysv/linux/readv.c: Remove file.
5496         * sysdeps/unix/sysv/linux/writev.c: Likewise.
5498 2014-10-17  Roland McGrath  <roland@hack.frob.com>
5500         * nptl/createthread.c (TLS_DEFINE_INIT_TP, TLS_VALUE): Macros removed.
5502         * sysdeps/i386/nptl/tls.h
5503         (THREAD_SELF_SYSINFO, THREAD_SYSINFO): Macros removed.
5504         [NEED_DL_SYSINFO] (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO):
5505         New macros.
5506         * sysdeps/ia64/nptl/tls.h [NEED_DL_SYSINFO]
5507         (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO): New macros.
5508         * nptl/allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]:
5509         Call SETUP_THREAD_SYSINFO instead of doing an assignment.
5510         * nptl/createthread.c (create_thread) [NEED_DL_SYSINFO]:
5511         Call CHECK_THREAD_SYSINFO instead of doing an assert.
5513         * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
5514         Conditionalize FUTEX_PRIVATE_FLAG and FUTEX_CLOCK_REALTIME probes
5515         on [__NR_futex].
5516         * nptl/pthread_mutex_init.c (prio_inherit_missing): New function,
5517         broken out of ...
5518         (__pthread_mutex_init): ... here.  Call it.
5519         * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full):
5520         Conditionalize PI cases on [__NR_futex].
5521         * nptl/pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise.
5522         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
5523         * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
5525         * nptl/nptl-init.c (sighandler_setxid, __xidcmd): Make definitions
5526         conditional on [SIGSETXID].
5527         (sigcancel_handler): Make definition conditional on [SIGCANCEL].
5528         (__pthread_initialize_minimal_internal): Set up SIGCANCEL only if it
5529         is defined.  Likewise for SIGSETXID.
5530         * nptl/allocatestack.c (setxid_mark_thread, setxid_unmark_thread):
5531         Conditionalize definitions on [SIGSETXID].
5532         (setxid_signal_thread, __nptl_setxid_error, __nptl_setxid): Likewise.
5533         * nptl/pthread_create.c (start_thread): Conditionalize SIGCANCEL
5534         unblocking on [SIGCANCEL].
5536         * nptl/nptl-init.c (__nptl_set_robust): Conditionalize body on
5537         [__NR_set_robust_list].
5539 2014-10-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
5541         * string/strcoll_l.c (get_next_seq): Fix up formatting.
5542         (do_compare): Likewise.
5544 2014-10-17  Leonhard Holz  <leonhard.holz@web.de>
5546         [BZ #15884]
5547         * string/strcoll_l.c: Don't include stdio.h.
5548         (coll_seq): Remove members idxarr and rulearr.
5549         (get_next_seq_cached): Remove function.
5550         (get_next_seq): Likewise.
5551         (get_next_seq_nocache): Rename to get_next_seq.
5552         (do_compare): Remove function.
5553         (do_compare_nocache): Rename to do_compare.
5554         (STRCOLL): Remove weight and rules cache.
5556 2014-10-16  Roland McGrath  <roland@hack.frob.com>
5558         * sysdeps/arm/soft-fp/sfp-machine.h: Filed moved ...
5559         * sysdeps/arm/sfp-machine.h: ... to here.
5560         * sysdeps/arm/Implies: Remove arm/soft-fp.
5562 2014-10-14  Joseph Myers  <joseph@codesourcery.com>
5564         * conform/data/sys/utsname.h-data (*_t): Allow.
5565         * conform/data/sys/wait.h-data [POSIX] (uid_t): Do not define.
5566         [POSIX] (WEXITED): Do not expect constant.
5567         [POSIX] (WSTOPPED): Likewise.
5568         [POSIX] (WNOHANG): Likewise.
5569         [POSIX] (WNOWAIT): Likewise.
5570         [POSIX] (siginfo_t): Do not expect type or elements.
5571         [POSIX] (pid_t): Do not expect type.
5572         [POSIX] (signal.h): Do not allow header.
5573         [POSIX] (sys/resource.h): Likewise.
5574         [POSIX] (si_*): Do not allow pattern.
5575         [POSIX] (W*): Likewise.
5576         [POSIX] (P_*): Likewise.
5577         [POSIX] (BUS_*): Likewise.
5578         [POSIX] (CLD_*): Likewise.
5579         [POSIX] (FPE_*): Likewise.
5580         [POSIX] (ILL_*): Likewise.
5581         [POSIX] (POLL_*): Likewise.
5582         [POSIX] (SEGV_*): Likewise.
5583         [POSIX] (SI_*): Likewise.
5584         [POSIX] (TRAP_*): Likewise.
5585         * conform/Makefile (test-xfail-POSIX/sys/wait.h/conform): New
5586         variable.
5588 2014-10-14  Paul Pluzhnikov  <ppluzhnikov@google.com>
5590         [BZ #12926]
5591         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Avoid
5592         infinite loop when __recvmsg returns 0.
5594 2014-10-10  Joseph Myers  <joseph@codesourcery.com>
5596         * CANCEL-FCT-WAIVE: Remove file.
5597         * CANCEL-FILE-WAIVE: Likewise.
5599         [BZ #14132]
5600         * elf/dl-sysdep.c (__libc_enable_secure): Use rtld_hidden_data_def
5601         instead of INTVARDEF.
5602         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
5603         * sysdeps/mach/hurd/dl-sysdep.c (__libc_enable_secure): Use
5604         rtld_hidden_data_def instead of INTVARDEF.
5605         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
5606         * elf/dl-deps.c (expand_dst): Likewise.
5607         * elf/dl-load.c (_dl_dst_count): Likewise.
5608         (_dl_dst_substitute): Likewise.
5609         (decompose_rpath): Likewise.
5610         (_dl_init_paths): Likewise.
5611         (open_path): Likewise.
5612         (_dl_map_object): Likewise.
5613         * elf/rtld.c (dl_main): Likewise.
5614         (process_dl_audit): Likewise.
5615         (process_envvars): Likewise.
5616         * include/unistd.h [IS_IN_rtld] (__libc_enable_secure_internal):
5617         Remove declaration.
5618         (__libc_enable_secure): Use rtld_hidden_proto.
5620 2014-10-09  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
5622         * elf/dl-load.c
5623         (add_path): New function broken out of _dl_rtld_di_serinfo.
5624         (_dl_rtld_di_serinfo): Remove that nested function.  Update call sites.
5626 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
5628         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_D): Use
5629         parentheses around macro arguments.
5630         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_DP): Likewise.
5631         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_D): Likewise.
5632         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_DP): Likewise.
5633         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_D): Likewise.
5634         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_DP): Likewise.
5635         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_D): Likewise.
5636         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
5637         [_FP_W_TYPE_SIZE < 64] (FP_PACK_D): Likewise.
5638         [_FP_W_TYPE_SIZE < 64] (FP_PACK_DP): Likewise.
5639         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_D): Likewise.
5640         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_DP): Likewise.
5641         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_D): Likewise.
5642         [_FP_W_TYPE_SIZE < 64] (FP_CMP_D): Likewise.
5643         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_D): Likewise.
5644         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_D): Likewise.
5645         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_D): Likewise.
5646         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_D): Likewise.
5647         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_D): Likewise.
5648         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_DP): Likewise.
5649         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_D): Likewise.
5650         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_DP): Likewise.
5651         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_D): Likewise.
5652         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_DP): Likewise.
5653         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D): Likewise.
5654         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
5655         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_D): Likewise.
5656         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_DP): Likewise.
5657         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_D): Likewise.
5658         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_DP): Likewise.
5659         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_D): Likewise.
5660         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_D): Likewise.
5661         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_D): Likewise.
5662         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_D): Likewise.
5663         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_D): Likewise.
5664         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_D): Likewise.
5665         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_E):
5666         Likewise.
5667         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_EP): Likewise.
5668         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_E): Likewise.
5669         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
5670         [_FP_W_TYPE_SIZE < 64] (FP_PACK_E): Likewise.
5671         [_FP_W_TYPE_SIZE < 64] (FP_PACK_EP): Likewise.
5672         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_E): Likewise.
5673         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_EP): Likewise.
5674         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_E): Likewise.
5675         [_FP_W_TYPE_SIZE < 64] (FP_CMP_E): Likewise.
5676         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_E): Likewise.
5677         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_E): Likewise.
5678         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_E): Likewise.
5679         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_E): Likewise.
5680         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_E): Likewise.
5681         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_EP): Likewise.
5682         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_E): Likewise.
5683         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
5684         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_E): Likewise.
5685         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_EP): Likewise.
5686         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_E): Likewise.
5687         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_EP): Likewise.
5688         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_E): Likewise.
5689         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_E): Likewise.
5690         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_E): Likewise.
5691         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_E): Likewise.
5692         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_E): Likewise.
5693         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_E): Likewise.
5694         * soft-fp/op-1.h (_FP_FRAC_SRST_1): Likewise.
5695         (_FP_FRAC_SRS_1): Likewise.
5696         (_FP_FRAC_CLZ_1): Likewise.
5697         (_FP_MUL_MEAT_1_imm): Likewise.
5698         (_FP_MUL_MEAT_1_wide): Likewise.
5699         (_FP_MUL_MEAT_1_hard): Likewise.
5700         (_FP_SQRT_MEAT_1): Likewise.
5701         (_FP_FRAC_ASSEMBLE_1): Likewise.
5702         (_FP_FRAC_DISASSEMBLE_1): Likewise.
5703         * soft-fp/op-2.h (_FP_FRAC_CLZ_2): Likewise.
5704         (__FP_CLZ_2): Likewise.
5705         (_FP_MUL_MEAT_2_wide): Likewise.
5706         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
5707         (_FP_MUL_MEAT_2_gmp): Likewise.
5708         (_FP_MUL_MEAT_2_120_240_double): Likewise.
5709         (_FP_SQRT_MEAT_2): Likewise.
5710         (_FP_FRAC_ASSEMBLE_2): Likewise.
5711         (_FP_FRAC_DISASSEMBLE_2): Likewise.
5712         * soft-fp/op-4.h (_FP_FRAC_SRS_4): Likewise.
5713         (_FP_FRAC_CLZ_4): Likewise.
5714         (_FP_MUL_MEAT_4_wide): Likewise.
5715         (_FP_MUL_MEAT_4_gmp): Likewise.
5716         (_FP_SQRT_MEAT_4): Likewise.
5717         (_FP_FRAC_ASSEMBLE_4): Likewise.
5718         (_FP_FRAC_DISASSEMBLE_4): Likewise.
5719         * soft-fp/op-common.h (_FP_CMP): Likewise.
5720         (_FP_CMP_EQ): Likewise.
5721         (_FP_CMP_UNORD): Likewise.
5722         (_FP_TO_INT): Likewise.
5723         (_FP_FROM_INT): Likewise.
5724         [!__FP_CLZ] (__FP_CLZ): Likewise.
5725         (_FP_DIV_HELP_imm): Likewise.
5726         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_Q):
5727         Likewise.
5728         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_QP): Likewise.
5729         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_Q): Likewise.
5730         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_QP): Likewise.
5731         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_Q): Likewise.
5732         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_QP): Likewise.
5733         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
5734         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
5735         [_FP_W_TYPE_SIZE < 64] (FP_PACK_Q): Likewise.
5736         [_FP_W_TYPE_SIZE < 64] (FP_PACK_QP): Likewise.
5737         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_Q): Likewise.
5738         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_QP): Likewise.
5739         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_Q): Likewise.
5740         [_FP_W_TYPE_SIZE < 64] (FP_CMP_Q): Likewise.
5741         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_Q): Likewise.
5742         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_Q): Likewise.
5743         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_Q): Likewise.
5744         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_Q): Likewise.
5745         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_Q): Likewise.
5746         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_QP): Likewise.
5747         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_Q): Likewise.
5748         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_QP): Likewise.
5749         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_Q): Likewise.
5750         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_QP): Likewise.
5751         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
5752         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
5753         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_Q): Likewise.
5754         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_QP): Likewise.
5755         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_Q): Likewise.
5756         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_QP): Likewise.
5757         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_Q): Likewise.
5758         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_Q): Likewise.
5759         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_Q): Likewise.
5760         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_Q): Likewise.
5761         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_Q): Likewise.
5762         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_Q): Likewise.
5763         * soft-fp/single.h (FP_UNPACK_RAW_S): Likewise.
5764         (FP_UNPACK_RAW_SP): Likewise.
5765         (FP_PACK_RAW_S): Likewise.
5766         (FP_PACK_RAW_SP): Likewise.
5767         (FP_UNPACK_S): Likewise.
5768         (FP_UNPACK_SP): Likewise.
5769         (FP_UNPACK_SEMIRAW_S): Likewise.
5770         (FP_UNPACK_SEMIRAW_SP): Likewise.
5771         (FP_PACK_S): Likewise.
5772         (FP_PACK_SP): Likewise.
5773         (FP_PACK_SEMIRAW_S): Likewise.
5774         (FP_PACK_SEMIRAW_SP): Likewise.
5775         (_FP_SQRT_MEAT_S): Likewise.
5776         (FP_CMP_S): Likewise.
5777         (FP_CMP_EQ_S): Likewise.
5778         (FP_CMP_UNORD_S): Likewise.
5779         (FP_TO_INT_S): Likewise.
5780         (FP_FROM_INT_S): Likewise.
5782         * soft-fp/op-common.h (_FP_TO_INT): Handle rsigned == 2.
5784         * soft-fp/soft-fp.h (FP_EX_INVALID_SNAN): New macro.
5785         (FP_EX_INVALID_IMZ): Likewise.
5786         (FP_EX_INVALID_IMZ_FMA): Likewise.
5787         (FP_EX_INVALID_ISI): Likewise.
5788         (FP_EX_INVALID_ZDZ): Likewise.
5789         (FP_EX_INVALID_IDI): Likewise.
5790         (FP_EX_INVALID_SQRT): Likewise.
5791         (FP_EX_INVALID_CVI): Likewise.
5792         (FP_EX_INVALID_VC): Likewise.
5793         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Specify more precise
5794         "invalid" exceptions.
5795         (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
5796         (_FP_ADD_INTERNAL): Likewise.
5797         (_FP_MUL): Likewise.
5798         (_FP_FMA): Likewise.
5799         (_FP_DIV): Likewise.
5800         (_FP_CMP_CHECK_NAN): Likewise.
5801         (_FP_SQRT): Likewise.
5802         (_FP_TO_INT): Likewise.
5803         (FP_EXTEND): Likewise.
5805 2014-10-09  Allan McRae  <allan@archlinux.org>
5807         * po/fr.po: Update French translation from translation project.
5809 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
5811         [BZ #14132]
5812         * stdlib/cxa_atexit.c (__cxa_atexit): Use libc_hidden_def instead
5813         of INTDEF.
5814         * include/stdlib.h (__cxa_atexit_internal): Remove declaration.
5815         (__cxa_atexit): Use libc_hidden_proto.
5816         [!NOT_IN_libc] (__cxa_atexit): Remove macro definition.
5818         [BZ #14132]
5819         * include/wctype.h [!_ISOMAC] (__iswalpha_l_internal): Remove
5820         declaration.
5821         [!_ISOMAC] (__iswdigit_l_internal): Likewise.
5822         [!_ISOMAC] (__iswspace_l_internal): Likewise.
5823         [!_ISOMAC] (__iswxdigit_l_internal): Likewise.
5824         [!_ISOMAC] (__iswctype_internal): Likewise.
5825         * stdio-common/siglist.c (_sys_siglist_internal): Remove alias.
5826         * sysdeps/unix/syscalls.list (chown): Remove __chown_internal
5827         alias.
5828         (fcntl): Remove __fcntl_internal alias.
5829         * sysdeps/unix/sysv/linux/hppa/syscalls.list (connect): Remove
5830         __connect_internal alias.
5831         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (connect):
5832         Likewise.
5834         * soft-fp/soft-fp.h (FP_DENORM_ZERO): New macro.
5835         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Check
5836         FP_DENORM_ZERO.
5837         (_FP_CHECK_FLUSH_ZERO): New macro.
5838         (_FP_ADD_INTERNAL): Call _FP_CHECK_FLUSH_ZERO.
5839         (_FP_CMP): Likewise.
5840         (_FP_CMP_EQ): Likewise.
5841         (_FP_TO_INT): Do not set inexact for subnormal arguments if
5842         FP_DENORM_ZERO.
5843         (FP_EXTEND): Call _FP_CHECK_FLUSH_ZERO.
5844         (FP_TRUNC): Likewise.
5846         * soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
5847         treated as invalid conversion, not as normal exponent.
5849         * soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
5850         (_FP_CMP): Add extra argument EX.  Call _FP_CMP_CHECK_NAN.
5851         (_FP_CMP_EQ): Likewise.
5852         (_FP_CMP_UNORD): Likewise.
5853         * soft-fp/double.h (FP_CMP_D): Add extra argument EX.
5854         (FP_CMP_EQ_D): Likewise.
5855         (FP_CMP_UNORD_D): Likewise.
5856         * soft-fp/extended.h (FP_CMP_E): Likewise.
5857         (FP_CMP_EQ_E): Likewise.
5858         (FP_CMP_UNORD_E): Likewise.
5859         * soft-fp/quad.h (FP_CMP_Q): Likewise.
5860         (FP_CMP_EQ_Q): Likewise.
5861         (FP_CMP_UNORD_Q): Likewise.
5862         * soft-fp/single.h (FP_CMP_S): Likewise.
5863         (FP_CMP_EQ_S): Likewise.
5864         (FP_CMP_UNORD_S): Likewise.
5865         * soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
5866         * soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
5867         * soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
5868         * soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
5869         * soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
5870         * soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
5871         * soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
5872         * soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
5873         * soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
5874         * soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
5875         * soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
5876         * soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
5877         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
5878         to FP_CMP_Q.
5879         * sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
5880         FP_CMP_Q.
5881         * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
5882         * sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
5883         FP_CMP_EQ_Q.
5884         * sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
5885         FP_CMP_Q.
5886         * sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
5887         * sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
5888         * sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
5889         * sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
5890         FP_CMP_EQ_Q.
5891         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
5892         FP_CMP_Q.
5893         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
5894         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
5895         FP_CMP_EQ_Q.
5896         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
5897         FP_CMP_Q.
5898         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
5899         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
5900         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
5901         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
5902         FP_CMP_EQ_Q.
5904         * soft-fp/op-common.h (FP_EXTEND): When a subnormal input produces
5905         a subnormal result, set the underflow exception if trapping on
5906         underflow is enabled.
5907         * soft-fp/soft-fp.h (FP_INIT_TRAPPING_EXCEPTIONS): New macro.
5908         (FP_INIT_EXCEPTIONS): Default to FP_INIT_TRAPPING_EXCEPTIONS.
5909         [FP_NO_EXACT_UNDERFLOW] (FP_TRAPPING_EXCEPTIONS): Undefine and
5910         redefine to 0.
5911         * soft-fp/extenddftf2.c (FP_NO_EXACT_UNDERFLOW): Define.
5912         * soft-fp/extendsfdf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
5913         * soft-fp/extendsftf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
5914         * soft-fp/extendxftf2.c (__extendxftf2): Use
5915         FP_INIT_TRAPPING_EXCEPTIONS instead of FP_INIT_ROUNDMODE.
5917         * soft-fp/soft-fp.h (FP_CLEAR_EXCEPTIONS): Remove macro.
5918         * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Define FP_NO_EXCEPTIONS.
5919         (_Q_itoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5920         FP_HANDLE_EXCEPTIONS.
5921         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Define FP_NO_EXCEPTIONS.
5922         (_Q_lltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5923         FP_HANDLE_EXCEPTIONS.
5924         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Define FP_NO_EXCEPTIONS.
5925         (_Q_ulltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5926         FP_HANDLE_EXCEPTIONS.
5927         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Define FP_NO_EXCEPTIONS.
5928         (_Q_utoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5929         FP_HANDLE_EXCEPTIONS.
5931 2014-10-08  Joseph Myers  <joseph@codesourcery.com>
5933         [BZ #14132]
5934         * sysdeps/unix/sysv/linux/include/sys/timex.h: New file.
5935         * sysdeps/unix/sysv/linux/adjtime.c [!ADJTIMEX] (ADJTIMEX): Do not
5936         use INTUSE.
5937         [!ADJTIMEX] (INTUSE(__adjtimex)): Remove declaration.
5938         * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal):
5939         Remove alias.
5940         (__adjtimex): Define using libc_hidden_ver.
5941         * sysdeps/unix/sysv/linux/ntp_gettime.c (INTUSE(__adjtimex)):
5942         Remove declaration.
5943         (ntp_gettime): Call __adjtimex directly.
5944         * sysdeps/unix/sysv/linux/ntp_gettimex.c (INTUSE(__adjtimex)):
5945         Remove declaration.
5946         (ntp_gettimex): Call __adjtimex directly.
5947         * sysdeps/unix/sysv/linux/syscalls.list (adjtimex): Remove
5948         __adjtimex_internal alias.
5950 2014-10-08  Roland McGrath  <roland@hack.frob.com>
5952         [BZ #17460]
5953         * nscd/nscd.c (more_help): Rewrite list of tables collection
5954         using xstrdup and asprintf.
5956         * nscd/nscd_conf.c: Remove local xstrdup declaration.
5958 2014-10-08  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
5959             Roland McGrath  <roland@hack.frob.com>
5961         * elf/dl-lookup.c (enter_unique_sym): New function, broken out of ...
5962         (do_lookup_unique): ... local function 'enter' here; update callers.
5964 2014-10-06  Joseph Myers  <joseph@codesourcery.com>
5966         * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Condition
5967         compat_symbol calls on [SHARED].
5968         * sysdeps/unix/sysv/linux/powerpc/lchown.S: Remove file.
5969         * sysdeps/unix/sysv/linux/i386/syscalls.list (oldsetrlimit):
5970         Remove.
5971         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5972         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list
5973         (oldsetrlimit): Remove.
5974         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5975         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
5976         (lchown): New syscall entry.
5977         (oldsetrlimit): Remove.
5978         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5979         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list
5980         (oldsetrlimit): Remove.
5981         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5983         [BZ #14138]
5984         * sysdeps/unix/sysv/linux/arm/fchown.c: Remove file.
5985         * sysdeps/unix/sysv/linux/arm/lchown.c: Likewise.
5986         * sysdeps/unix/sysv/linux/m68k/fchown.c: Likewise.
5987         * sysdeps/unix/sysv/linux/m68k/lchown.c: Likewise.
5988         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
5989         * sysdeps/unix/sysv/linux/arm/syscalls.list (lchown): Add syscall.
5990         (fchown): Likewise.
5991         * sysdeps/unix/sysv/linux/m68k/syscalls.list (lchown): Likewise.
5992         (fchown): Likewise.
5993         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list (chown):
5994         Likewise.
5996 2014-10-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5998         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Remove file.
5999         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c
6000         (pthread_spin_unlock): Use __ARCH_REL_INSTR instead of
6001         __lll_rel_instr and __ARCH_ACQ_INSTR instead of __lll_acq_instr.
6002         * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
6003         Likewise.
6004         (__old_sem_post): Likewise.
6006 2014-10-06  Chris Metcalf  <cmetcalf@tilera.com>
6008         * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL): Define
6009         INLINE_VSYSCALL, INTERNAL_VSYSCALL, and
6010         HAVE_CLOCK_GETTIME_VSYSCALL macros.
6011         * sysdeps/unix/sysv/linux/tile/gettimeofday.c (__gettimeofday):
6012         Use INLINE_VSYSCALL macro.
6013         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso: Add declaration of
6014         __vdso_clock_gettime.
6015         * sysdeps/unix/sysv/linux/tile/init-first.c
6016         (_libc_vdso_platform_setup): Set new __vdso_clock_gettime global.
6017         * sysdeps/unix/sysv/linux/tile/Versions (GLIBC_PRIVATE): Add
6018         __vdso_clock_gettime.
6020         * sysdeps/unix/sysv/linux/tile/clone.S (__clone): Fix code
6021         to set up frame more cleanly.
6023         * sysdeps/tile/memcmp.c: New file.
6025         * sysdeps/unix/sysv/linux/tile/sysconf.c: New file.
6027         * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro.
6028         * sysdeps/tile/tilegx/strcasestr.c: New file.
6029         * sysdeps/tile/tilegx/strnlen.c: New file.
6030         * sysdeps/tile/tilegx/strstr.c: New file.
6032         * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize.
6034 2014-10-06  Arjun Shankar  <arjun.is@lostca.se>
6036         * nptl/tst-setuid3.c: Write errors to stdout.
6038 2014-10-01  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
6040         * elf/dl-deps.c
6041         (preload): New functions broken out of _dl_map_object_deps.
6042         (_dl_map_object_deps):  Remove a nested function. Update call sites.
6044 2014-10-01  Joseph Myers  <joseph@codesourcery.com>
6046         [BZ #14138]
6047         * sysdeps/unix/sysv/linux/execve.c: Remove file.
6048         * sysdeps/unix/sysv/linux/syscalls.list (execve): Add syscall.
6050 2014-10-01  Steve Ellcey  <sellcey@mips.com>
6052         * sysdeps/mips/strcmp.S: New.
6054 2014-09-30  Joseph Myers  <joseph@codesourcery.com>
6056         [BZ #14138]
6057         * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall.
6058         (linkat): Likewise.
6059         (mkdirat): Likewise.
6060         (readlinkat): Likewise.
6061         (renameat): Likewise.
6062         (symlinkat): Likewise.
6063         (unlinkat): Likewise.
6064         * sysdeps/unix/sysv/linux/fchownat.c: Remove file.
6065         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
6066         * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
6067         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
6068         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
6069         * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
6070         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
6072 2014-09-30  Will Newton  <will.newton@linaro.org>
6074         * math/math.h: Define long double math functions if
6075         _LIBC_TEST is defined.
6076         * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
6078         * localedata/Makefile: Move assignment to tests-special
6079         into an ifdef testing run-built-tests.
6080         * timezone/Makefile: Likewise.
6082 2014-09-29  Joseph Myers  <joseph@codesourcery.com>
6084         * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
6085         with $(BASH) not $(SHELL).
6087 2014-09-29  Carlos O'Donell  <carlos@redhat.com>
6088             Matthew LeGendre  <legendre1@llnl.gov>
6090         [BZ #17411]
6091         * elf/dl-reloc.c (_dl_relocate_object): Allocate correct amount for
6092         l_reloc_result.
6094 2014-09-29  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
6096         * stdio-common/printf_fp.c
6097         (hack_digit): New function, broken out of ...
6098         (__printf_fp): ... local function here.  Update call sites.
6099         hack_digit now takes an additional parameter that is a pointer
6100         to a struct of the referenced locals.  Those locals moved inside
6101         the struct and references updated.
6103 2014-09-29  H.J. Lu  <hongjiu.lu@intel.com>
6105         * aclocal.m4: Require autoconf 2.69.
6106         * configure: Regenerated.
6107         * sysdeps/aarch64/configure: Likewise.
6108         * sysdeps/alpha/configure: Likewise.
6109         * sysdeps/arm/armv7/configure: Likewise.
6110         * sysdeps/arm/configure: Likewise.
6111         * sysdeps/ia64/configure: Likewise.
6112         * sysdeps/mach/configure: Likewise.
6113         * sysdeps/mips/configure: Likewise.
6114         * sysdeps/s390/configure: Likewise.
6115         * sysdeps/unix/sysv/linux/mips/configure: Likewise.
6116         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Likewise.
6118         * sysdeps/alpha/configure.ac: Avoid empty lines at the end of
6119         file.
6120         * sysdeps/ia64/configure.ac: Likewise.
6122 2014-09-26  Joseph Myers  <joseph@codesourcery.com>
6124         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Do not
6125         specify symbol version for ld.so.  Do not include entry for
6126         libpthread.
6127         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
6128         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
6129         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
6131         [BZ #14171]
6132         * Makeconfig [$(build-shared) = yes]
6133         ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
6134         makefiles.
6135         [$(build-shared) = yes && $(soversions.mk-done) = t]
6136         ($(common-objpfx)gnu/lib-names.h): Remove rule.
6137         [$(build-shared) = yes && $(soversions.mk-done) = t]
6138         ($(common-objpfx)gnu/lib-names.stmp): Likewise.  Split and moved
6139         to Makerules.
6140         [$(build-shared) = yes && $(soversions.mk-done) = t]
6141         (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
6142         here.
6143         [$(build-shared) = yes && $(soversions.mk-done) = t]
6144         (common-generated): Don't append gnu/lib-names.h and
6145         gnu/lib-names.stmp here.
6146         * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
6147         (lib-names-h-abi): New variable.
6148         [$(build-shared) = yes && $(soversions.mk-done) = t]
6149         (lib-names-stmp-abi): Likewise.
6150         [$(build-shared) = yes && $(soversions.mk-done) = t &&
6151         abi-variants] (before-compile): Append
6152         $(common-objpfx)$(lib-names-h-abi).
6153         [$(build-shared) = yes && $(soversions.mk-done) = t &&
6154         abi-variants] (common-generated): Append gnu/lib-names.h.
6155         [$(build-shared) = yes && $(soversions.mk-done) = t &&
6156         abi-variants] (install-others-nosubdir): Depend on
6157         $(inst_includedir)/$(lib-names-h-abi).
6158         [$(build-shared) = yes && $(soversions.mk-done) = t &&
6159         abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
6160         [$(build-shared) = yes && $(soversions.mk-done) = t]
6161         ($(common-objpfx)$(lib-names-h-abi)): New rule.
6162         [$(build-shared) = yes && $(soversions.mk-done) = t]
6163         ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
6164         [$(build-shared) = yes && $(soversions.mk-done) = t]
6165         (common-generated): Append $(lib-names-h-abi) and
6166         $(lib-names-stmp-abi).
6167         * scripts/lib-names.awk: Do not handle multi being set.
6168         * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
6169         Remove variable.
6170         (abi-lp64_be-ld-soname): Likewise.
6171         * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
6172         Likewise.
6173         (abi-hard-ld-soname): Likewise.
6174         * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
6175         * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
6176         Remove variable.
6177         (abi-o32_hard-ld-soname): Likewise.
6178         (abi-o32_soft_2008-ld-soname): Likewise.
6179         (abi-o32_hard_2008-ld-soname): Likewise.
6180         (abi-n32_soft-ld-soname): Likewise.
6181         (abi-n32_hard-ld-soname): Likewise.
6182         (abi-n32_soft_2008-ld-soname): Likewise.
6183         (abi-n32_hard_2008-ld-soname): Likewise.
6184         (abi-n64_soft-ld-soname): Likewise.
6185         (abi-n64_hard-ld-soname): Likewise.
6186         (abi-n64_soft_2008-ld-soname): Likewise.
6187         (abi-n64_hard_2008-ld-soname): Likewise.
6188         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
6189         Likewise.
6190         (abi-64-v2-ld-soname): Likewise.
6191         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
6192         ld.so entries.
6193         * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
6194         variable.
6195         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
6196         entry.
6197         * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
6198         variable.
6199         (abi-64-ld-soname): Likewise.
6200         (abi-x32-ld-soname): Likewise.
6201         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
6202         entry.
6203         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
6205 2014-09-23  Joseph Myers  <joseph@codesourcery.com>
6207         [BZ #14138]
6208         * sysdeps/unix/sysv/linux/arm/setrlimit.c: Remove file.
6209         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
6210         * sysdeps/unix/sysv/linux/m68k/setrlimit.c: Likewise.
6211         * sysdeps/unix/sysv/linux/powerpc/setrlimit.c: Likewise.
6212         * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: Likewise.
6213         * sysdeps/unix/sysv/linux/sh/setrlimit.c: Likewise.
6214         * sysdeps/unix/sysv/linux/i386/syscalls.list (setrlimit): Add
6215         syscall entry for GLIBC_2.2 symbol version.
6216         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list (setrlimit):
6217         Likewise.
6218         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
6219         (setrlimit): Likewise.
6220         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setrlimit):
6221         Likewise.
6223 2014-09-23  Will Newton  <will.newton@linaro.org>
6225         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: Check for
6226         _LINUX_ARM_SYSDEP_H include guard too.
6227         * sysdeps/unix/sysv/linux/arm/sysdep.h (_SYS_AUXV_H): Remove
6228         define.
6230 2014-09-20  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
6232         * sysdeps/unix/sysv/linux/eventfd.c:
6233         Make first argument unsigned.
6234         * sysdeps/unix/sysv/linux/hppa/sys/eventfd.h: Likewise.
6235         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
6237 2014-09-20  Ondřej Bílka  <neleai@seznam.cz>
6239         * socket/recvmmsg.c (recvmmsg): Drop const argument.
6240         * socket/sys/socket.h: Likewise
6241         * sysdeps/unix/sysv/linux/recvmmsg.c: Likewise.
6243 2014-09-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
6245         * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
6247 2014-09-17  Arjun Shankar  <arjun.is@lostca.se>
6249         * time/tst-ftime.c: New test.
6250         * time/Makefile (tests): Add tst-ftime.
6252 2014-09-17  Joseph Myers  <joseph@codesourcery.com>
6254         * soft-fp/extended.h: Fix comment formatting.
6255         * soft-fp/op-1.h: Likewise.
6256         * soft-fp/op-2.h: Likewise.
6257         * soft-fp/op-4.h: Likewise.
6258         * soft-fp/op-8.h: Likewise.
6259         * soft-fp/op-common.h: Likewise.
6260         * soft-fp/soft-fp.h: Likewise.
6262         * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
6264 2014-09-16  Joseph Myers  <joseph@codesourcery.com>
6266         [BZ #6652]
6267         * Makeconfig (soversions-default-setname): Remove variable.
6268         ($(common-objpfx)soversions.i): Don't pass default_setname to
6269         soversions.awk.
6270         * Makerules ($(common-objpfx)abi-versions.h): Don't pass
6271         oldest_abi to abi-versions.awk.
6272         * config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
6273         * config.make.in (oldest-abi): Remove variable.
6274         * configure.ac (--enable-oldest-abi): Remove configure option.
6275         * configure: Regenerated.
6276         * csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
6277         text.
6278         * scripts/abi-versions.awk: Do not handle oldest_abi variable.
6279         * scripts/soversions.awk: Do not handle default_setname variable.
6280         * sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
6281         variable.
6282         * sysdeps/mach/hurd/configure: Regenerated.
6283         * sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
6284         variable.
6285         * sysdeps/unix/sysv/linux/configure: Regenerated.
6287 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
6289         * elf/Makefile (CFLAGS-interp.c): Remove.
6290         ($(elf-objpfx)runtime-linker.h): Generate header with linker
6291         path string.
6292         * elf/interp.c: Include generated runtime-linker.h
6294         * Makerules (lib%.so): Don't include $(+interp) in
6295         prerequisites.
6296         * elf/Makefile (CFLAGS-interp.c): Don't define NOT_IN_libc.
6297         * dlfcn/eval.c: Remove file.
6299         * posix/getconf.c (vars): Don't check for _[SP]C_* and _CS
6300         macros.
6302         [BZ #17266]
6303         * misc/sys/cdefs.h: Define __extern_always_inline for clang
6304         4.2 and newer.
6306         [BZ #17370]
6307         * libio/wfileops.c (do_ftell_wide): Free OUT on error path.
6309 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
6310             Jakub Jelinek  <jakub@redhat.com>
6312         [BZ #17266]
6313         * libio/stdio.h: Check definition of __fortify_function
6314         instead of __extern_always_inline to include bits/stdio2.h.
6315         * math/bits/math-finite.h [__USE_XOPEN || __USE_ISOC99]: Also
6316         check if __extern_always_inline is defined.
6317         [__USE_MISC || __USE_XOPEN]: Likewise.
6318         [__USE_ISOC99] Likewise.
6319         * misc/sys/cdefs.h (__fortify_function): Define only if
6320         __extern_always_inline is defined.
6321         [!__cplusplus || __GNUC_PREREQ (4,3)]: Revert to defining
6322         __extern_always_inline and __extern_inline only for g++-4.3
6323         and newer or a compatible gcc.
6325 2014-09-15  Andreas Schwab  <schwab@linux-m68k.org>
6327         [BZ #17371]
6328         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
6329         last change to handle zero prefix length.
6331 2014-09-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
6333         * sysdeps/posix/sysconf.c (__sysconf): Return -1 for
6334         _SC_REGEX_VERSION.
6336         * posix/getconf.c (vars): Add _POSIX_IPV6 and
6337         _POSIX_RAW_SOCKETS.
6339 2014-09-13  Allan McRae  <allan@archlinux.org>
6341         * po/ru.po: Update Russian translation from translation project.
6343 2014-09-12  Roland McGrath  <roland@hack.frob.com>
6345         * locale/programs/locale.c (show_locale_vars): Inline local function
6346         into its sole call site.  Clean up some style nits.
6347         (print_item): New function, broken out of ...
6348         (show_info): ... local function here.  Clean up style nits.
6350         * locale/programs/ld-ctype.c (set_one_default): New function, broken
6351         out of ...
6352         (set_class_defaults): ... local function set_default here.
6353         Define set_default as a macro locally to pass constant parameters.
6354         (allocate_arrays, set_class_defaults): Use C99 for scope for each CNT,
6355         rather than a shared local.
6357         * stdlib/rpmatch.c (try): New function, broken out of ...
6358         (rpmatch): ... local function here.  Also, prototypify definition.
6360 2014-09-12  Joseph Myers  <joseph@codesourcery.com>
6362         * scripts/soversions.awk: Do not handle configuration names.
6363         * Makeconfig ($(common-objpfx)soversions.i): Do not pass cpu,
6364         vendor and os variables to soversions.awk.
6365         * configure.ac: Do not modify gnu-* host_os.
6366         * configure: Regenerated
6367         * shlib-versions: Remove first column with configuration names.
6368         * nptl/shlib-versions: Likewise.
6369         * nptl_db/shlib-versions: Likewise.
6370         * sysdeps/hppa/shlib-versions: Likewise.
6371         * sysdeps/m68k/shlib-versions: Likewise.
6372         * sysdeps/mach/hurd/shlib-versions: Likewise.
6373         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: Likewise.
6374         * sysdeps/unix/sysv/linux/alpha/shlib-versions: Likewise.
6375         * sysdeps/unix/sysv/linux/arm/shlib-versions: Likewise.
6376         * sysdeps/unix/sysv/linux/hppa/shlib-versions: Likewise.
6377         * sysdeps/unix/sysv/linux/ia64/shlib-versions: Likewise.
6378         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: Likewise.
6379         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: Likewise.
6380         * sysdeps/unix/sysv/linux/mips/shlib-versions: Likewise.
6381         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
6382         Likewise.
6383         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
6384         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
6385         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
6386         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
6387         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
6388         * sysdeps/unix/sysv/linux/tile/shlib-versions: Likewise.
6389         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
6390         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
6392         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
6393         (HAVE_ELFV2_ABI): AC_DEFINE in ELFv2 case.
6394         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
6395         Regenerated.
6396         * config.h.in (HAVE_ELFV2_ABI): New macro undefine.
6397         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
6398         Condition symbol version definitions on [HAVE_ELFV2_ABI].
6400         * shlib-versions: Remove OS-specific entries.  Moved to files in
6401         sysdeps.
6402         * sysdeps/mach/hurd/shlib-versions: New file.
6403         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
6405         * nptl/shlib-versions: Remove architecture-specific entries.
6406         Moved to files in sysdeps.
6407         * shlib-versions: Likewise.
6408         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
6409         file.
6410         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
6411         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
6412         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
6413         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
6415         * sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
6416         (UDP_NO_CHECK6_RX): Likewise.
6418 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
6420         * sysdeps/posix/sysconf.c (__sysconf): Spell
6421         _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
6423 2014-08-12  Florian Weimer  <fweimer@redhat.com>
6425         * iconv/gconv_open.c (__gconv_open): Remove transliteration module
6426         loading.
6427         * iconv/Versions (__gconv_transliterate): Export for use from
6428         gconv modules.
6429         * iconv/gconv.h (__GCONV_TRANSLIT): New flag.
6430         (struct __gconv_trans_data, __gconv_trans_fct,
6431         __gconv_trans_context_fct, __gconv_trans_query_fct,
6432         __gconv_trans_init_fct, __gconv_trans_end_fct): Remove type
6433         definitions.
6434         (struct __gconv_step_data): Remove __trans member.
6435         (__gconv_transliterate): Declaration moved from gconv_int.h.  No
6436         longer hidden.  Remove unused trans_data argument.
6437         * iconv/gconv_int.h (struct trans_struct): Remove definition.
6438         (__gconv_translit_find): Remove declaration.
6439         (__gconv_transliterate): Declaration moved to gconv.h.  Add hidden
6440         prototype.
6441         * iconv/gconv_close.c (__gconv_close): Remove __trans cleanup.
6442         * iconv/gconv_trans.c (__gconv_transliterate): Remove unused
6443         trans_data argument.  Add hidden definition.
6444         (__gconv_translit_find): Remove.
6445         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): Call
6446         __gconv_transliterate directly if __GCONV_TRANSLIT is set.
6447         * iconv/skeleton.c: Remove transliteration initialization.
6448         * libio/fileops.c (_IO_new_file_fopen): Adjust struct
6449         __gconv_step_data initialization.
6450         * libio/iofwide.c (__libio_translit_): Remove.
6451         (_IO_fwide): Adjust struct __gconv_step_data initialization.
6452         * wcsmbs/btowc.c (__btowc): Likewise.
6453         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
6454         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
6455         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
6456         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Likewise.
6457         * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
6458         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
6459         * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
6460         * wcsmbs/wctob.c (wctob): Likewise.
6462 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
6464         [BZ #16194]
6465         * sysdeps/x86/tst-xmmymm.sh: Rename file to...
6466         * sysdeps/x86/tst-ld-sse-use.sh: ... this.  Check for zmm
6467         register usage.
6468         * sysdeps/x86/Makefile: Adjust.
6470 2014-09-11  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
6471             Roland McGrath  <roland@hack.frob.com>
6473         * locale/weight.h: Add include guard.
6474         (findidx): Make static rather than auto; take new parameters
6475         TABLE, INDIRECT, and EXTRA instead of getting them as outer locals.
6476         * locale/weightwc.h: Likewise.
6477         * posix/fnmatch_loop.c
6478         (FCT): Change type of EXTRA from int32_t to wint_t.
6479         Don't include either header inside the function.
6480         Call FINDIDX rather than findidx, and pass new arguments.
6481         #undef FINDIDX at the end of the file.
6482         * posix/fnmatch.c [_LIBC]: #include <locale/weight.h> and define
6483         FINDIDX before including fnmatch_loop.c for the non-wide version.
6484         [_LIBC] [HANDLE_MULTIBYTE]: #define findidx to findidxwc around
6485         #include <locale/weightwc.h>, and define FINDIDX to findidxwc
6486         for the wide version.
6487         * posix/regcomp.c [_LIBC]: #include <locale/weight.h>.
6488         (build_equiv_class) [_LIBC]: Don't #include it inside the function.
6489         Pass new arguments to findidx.
6490         * posix/regexec.c [RE_ENABLE_I18N] [_LIBC]: #include <locale/weight.h>.
6491         [RE_ENABLE_I18N] (check_node_accept_bytes) [_LIBC]:
6492         Don't #include it inside the function.  Pass new arguments to findidx.
6493         * posix/regex_internal.h
6494         [!NOT_IN_libc] [_LIBC]: #include <locale/weight.h>.
6495         (re_string_elem_size_at): Don't #include it inside the function.
6496         Pass new arguments to findidx.
6497         * string/strcoll_l.c: #include WEIGHT_H at top level.
6498         (get_next_seq): Don't #include it inside the function.
6499         Pass new arguments to findidx.
6500         (get_next_seq_nocache): Likewise.
6501         * string/strxfrm_l.c: #include WEIGHT_H at top level.
6502         (STRXFRM): Don't #include it inside the function.
6503         Pass new arguments to findidx.
6505 2014-09-11  Florian Weimer  <fweimer@redhat.com>
6507         [BZ #17344]
6508         * malloc/malloc.c (unlink): Turn asserts into a call to
6509         malloc_printerr.
6511 2014-09-11  Tim Lammens  <tim.lammens@gmail.com>
6513         [BZ #17370]
6514         * libio/wfileops (do_ftell_wide): Free OUT.
6516 2014-09-10  Chris Metcalf  <cmetcalf@tilera.com>
6518         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Remove file.
6520 2014-09-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
6522         [BZ #17363]
6523         * inet/getnetgrent_r.c (__internal_getnetgrent_r): Try next
6524         group if the current group is empty.
6526 2014-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6528         * benchtests/bench-memset.c (test_main): Add more test from size
6529         from 32 to 512 bytes.
6530         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
6531         Add POWER8 memset object.
6532         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
6533         (__libc_ifunc_impl_list): Add POWER8 memset and bzero implementations.
6534         * sysdeps/powerpc/powerpc64/multiarch/bzero.c (__bzero): Add POWER8
6535         implementation.
6536         * sysdeps/powerpc/powerpc64/multiarch/memset.c (__libc_memset):
6537         Likewise.
6538         * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: New file:
6539         multiarch POWER8 memset optimization.
6540         * sysdeps/powerpc/powerpc64/power8/memset.S: New file: optimized
6541         POWER8 memset optimization.
6543         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
6544         Remove bzero multiarch objects.
6545         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: Remove file.
6546         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: Likewise.
6547         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: Likewise.
6548         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S [NO_BZERO_IMPL]:
6549         Remove define.
6550         [__bzero]: Redefine to specific name.
6551         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
6552         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
6553         * sysdeps/powerpc/powerpc64/power4/memset.S [NO_BZERO_IMPL]: Remove
6554         define.
6555         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
6556         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
6558 2014-09-10  Florian Weimer  <fweimer@redhat.com>
6560         * Makeconfig (gccwarn-c): Turn implicit-function-declaration
6561         warnings into errors.
6563         * stdlib/tst-tls-atexit-lib.c: Include <stdlib.h>, for the
6564         __cxa_thread_atexit_impl prototype.
6566 2014-09-09  Steve Ellcey  <sellcey@mips.com>
6568         * sysdeps/mips/preconfigure: Put code inside mips* case statement.
6569         Fix capitalization of error message.
6571 2014-09-09  Steve Ellcey  <sellcey@mips.com>
6573         * sysdeps/mips/preconfigure: Modify ABI tests.
6575 2014-09-07  Carlos O'Donell  <carlos@systemhalted.org>
6577         * sysdeps/unix/sysv/linux/hppa/c++-types.data: New file.
6579 2014-09-07  Roland McGrath  <roland@hack.frob.com>
6580             Carlos O'Donell  <carlos@systemhalted.org>
6582         * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: File removed.
6583         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Moved ...
6584         * sysdeps/unix/sysv/linux/hppa/lowlevellock.h: ... here.
6585         * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Moved ...
6586         * sysdeps/unix/sysv/linux/hppa/pt-vfork.S: ... here.
6587         * sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Moved ...
6588         * sysdeps/unix/sysv/linux/hppa/pthread.h: ... here.
6589         * sysdeps/unix/sysv/linux/hppa/nptl/pthreadP.h: Moved ...
6590         * sysdeps/unix/sysv/linux/hppa/pthreadP.h: ... here.
6591         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c: Moved ...
6592         * sysdeps/unix/sysv/linux/hppa/pthread_cond_broadcast.c: ... here.
6593         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c: Moved ...
6594         * sysdeps/unix/sysv/linux/hppa/pthread_cond_destroy.c: ... here.
6595         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c: Moved ...
6596         * sysdeps/unix/sysv/linux/hppa/pthread_cond_init.c: ... here.
6597         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c: Moved ...
6598         * sysdeps/unix/sysv/linux/hppa/pthread_cond_signal.c: ... here.
6599         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c: Moved ...
6600         * sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c: ... here.
6601         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c: Moved ...
6602         * sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c: ... here.
6603         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Moved ...
6604         * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: ... here.
6605         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h: Moved ...
6606         * sysdeps/hppa/nptl/bits/pthreadtypes.h: ... here.
6607         * sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h: Moved ...
6608         * sysdeps/hppa/nptl/bits/semaphore.h: ... here.
6609         * sysdeps/unix/sysv/linux/hppa/clone.S: Include <tcb-offsets.h>.
6610         Deconditionalize the code that was previously under [RESET_PID].
6611         * sysdeps/unix/sysv/linux/hppa/nptl/clone.S: File removed.
6612         * sysdeps/unix/sysv/linux/hppa/arch-fork.h: New file.
6613         * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: File removed.
6614         * sysdeps/hppa/nptl/tcb-offsets.sym: Include pthread.h and don't
6615         include sysdep.h.
6617 2014-09-08  Allan McRae  <allan@archlinux.org>
6619         * version.h (RELEASE): Set to "development".
6620         (VERSION): Set to "2.20.90"
6622 2014-09-07  Allan McRae  <allan@archlinux.org
6624         * version.h (RELEASE): Set to "stable".
6625         (VERSION): Set to "2.20"
6626         * include/features.h (__GLIBC_MINOR__): Set to 20.
6628         * manual/contrib.texi: Add entries for Wilco Dijkstra and Stefan
6629         Liebler.
6631         * po/ko.po: Update Korean translation from translation project.
6633 2014-09-06  Chris Metcalf  <cmetcalf@tilera.com>
6635         [BZ #17354]
6636         * sysdeps/tile/dl-machine.h (elf_machine_rela): Add a MUNGE_SIGNED
6637         macro for handling signed relocations.
6639 2014-09-03  Florian Weimer  <fweimer@redhat.com>
6641         [BZ #17325]
6642         * iconvdata/ibm1364.c (BODY): Fix check for sentinel.
6643         * iconvdata/ibm932.c (BODY): Replace invalid sentinel check with
6644         assert.
6645         * iconvdata/ibm933.c (BODY): Fix check for sentinel.
6646         * iconvdata/ibm935.c (BODY): Likewise.
6647         * iconvdata/ibm937.c (BODY): Likewise.
6648         * iconvdata/ibm939.c (BODY): Likewise.
6649         * iconvdata/ibm943.c (BODY): Replace invalid sentinel check with
6650         assert.
6651         * iconvdata/Makefile (iconv-test.out): Pass module list to test
6652         script.
6653         * iconvdata/run-iconv-test.sh: New test loop for checking for
6654         decoder crashers.
6656 2014-09-02  Khem Raj  <raj.khem@gmail.com>
6658         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (fegetenv): Add
6659         libm_hidden_ver.
6661 2014-09-01  Allan McRae  <allan@archlinux.org>
6663         * po/eo.po: Update Esperanto translation from translation project.
6665         * po/ca.po: Update Catalan translation from translation project.
6667 2014-08-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6669         * sysdeps/mach/hurd/fork.c (__fork): Lock SS->lock around
6670         __proc_dostop call.
6672 2014-08-27  Mark Wielaard  <mjw@redhat.com>
6674         [BZ #17319]
6675         * sysdeps/i386/nptl/tls.h (TLS_INIT_TP): Use INTERNAL_SYSCALL
6676         to call set_thread_area instead of hand written asm.
6677         (__NR_set_thread_area): Removed define.
6678         (TLS_FLAG_WRITABLE): Likewise.
6679         (__ASSUME_SET_THREAD_AREA): Remove check.
6680         (TLS_EBX_ARG): Remove define.
6681         (TLS_LOAD_EBX): Likewise.
6683 2014-08-27  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6685         Simplify atomicity of socket creation in bind.
6687         * sysdeps/mach/hurd/bind.c (__bind): Use dir_lookup(node, "") instead of
6688         looking up the name after linking the file.
6690 2014-08-27  Allan McRae  <allan@archlinux.org>
6692         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
6694 2014-08-26  Florian Weimer  <fweimer@redhat.com>
6696         [BZ #17187]
6697         * iconv/gconv_trans.c (struct known_trans, search_tree, lock,
6698         trans_compare, open_translit, __gconv_translit_find):
6699         Remove module loading code.
6701 2014-08-26  Allan McRae  <allan@archlinux.org>
6703         * po/vi.po: Update Vietnamese translation from translation project.
6705         * po/uk.po: Update Ukrainian translation from translation project.
6707         * po/fr.po: Update French translation from translation project.
6709         * po/ru.po: Update Russian translation from translation project.
6711         * po/pl.po: Update Polish translation from translation project.
6713         * po/cs.po: Update Czech translation from translation project.
6715         * po/de.po: Update German translation from translation project.
6717         * po/bg.po: Update Bulgarian translation from translation project.
6719         * po/sv.po: Update Sweedish translation from translation project.
6721         * po/nl.po: Update Dutch translation from translation project.
6723         * po/es.po: Update Spanish translation from translation project.
6725 2014-08-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
6727         * nptl/Makefile (CFLAGS-pthread_atfork.c): Remove.
6729         * catgets/Makefile (CPPFLAGS-gencat): Remove.
6730         * iconv/Makefile (CPPFLAGS-iconv_prog): Likewise.
6731         (CPPFLAGS-iconvconfig): Likewise.
6732         * timezone/Makefile (CPPFLAGS-zic): Likewise.
6734         * include/libc-symbols.h: Remove unnecessary check for
6735         NOT_IN_libc.
6736         * nptl/pthreadP.h: Likewise.
6737         * sysdeps/aarch64/setjmp.S: Likewise.
6738         * sysdeps/alpha/setjmp.S: Likewise.
6739         * sysdeps/arm/sysdep.h: Likewise.
6740         * sysdeps/i386/setjmp.S: Likewise.
6741         * sysdeps/m68k/setjmp.c: Likewise.
6742         * sysdeps/posix/getcwd.c: Likewise.
6743         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
6744         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
6745         * sysdeps/s390/s390-32/setjmp.S: Likewise.
6746         * sysdeps/s390/s390-64/setjmp.S: Likewise.
6747         * sysdeps/sh/sh3/setjmp.S: Likewise.
6748         * sysdeps/sh/sh4/setjmp.S: Likewise.
6749         * sysdeps/unix/alpha/sysdep.h: Likewise.
6750         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
6751         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
6752         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
6753         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
6754         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
6755         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
6756         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
6757         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
6758         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
6759         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
6760         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
6761         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
6762         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
6763         * sysdeps/x86_64/setjmp.S: Likewise.
6765 2014-08-13  Joseph Myers  <joseph@codesourcery.com>
6767         [BZ #17263]
6768         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Include
6769         <stdint.h>.
6770         (__get_clockfreq): Use uint64_t instead of hp_timing_t in
6771         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK call.
6773 2014-08-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
6775         * sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
6777         [BZ #17262]
6778         * sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
6779         and __x86_64__ when disabling x87 inline functions.
6781 2014-08-12  H.J. Lu  <hongjiu.lu@intel.com>
6783         [BZ #17259]
6784         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Replace cpuid
6785         asm statement with __cpuid_count.
6787 2014-08-12  Mike Frysinger  <vapier@gentoo.org>
6789         * configure.ac: Change __ehdr_start code to dereference the struct.
6790         Run readelf on the output to look for relocations.
6791         * configure: Regenerated.
6793 2014-08-12  Joseph Myers  <joseph@codesourcery.com>
6795         [BZ #17261]
6796         * sysdeps/powerpc/nofpu/fenv_const.c (__fe_enabled_env): Change
6797         value to 0.
6798         (__fe_nonieee_env): Define as an alias for __fe_dfl_env.
6800 2014-08-12  Roland McGrath  <roland@hack.frob.com>
6802         * NEWS: Mention x86-64 ld.so use of Intel MPX instructions.
6804 2014-08-12  Bernard Ogden  <bernie.ogden@linaro.org>
6806         [BZ #16892]
6807         * sysdeps/nptl/lowlevellock.h (__lll_timedlock): Use
6808         atomic_compare_and_exchange_bool_acq rather than atomic_exchange_acq.
6810 2014-08-12  Sean Anderson  <seanga2@gmail.com>
6812         * malloc/malloc.c: Fix typo in comment.
6814 2014-08-09  Allan McRae  <allan@archlinux.org>
6816         * Regenerate libc.po.
6818 2014-08-08  Mike Frysinger  <vapier@gentoo.org>
6820         * intl/tst-gettext2.sh: Check every lang file for creation.
6822 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
6824         * sysdeps/aarch64/fpu/math_private.h
6825         (libc_feholdsetround_noex_aarch64_ctx): New function.
6827 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
6829         * sysdeps/arm/armv6/strcpy.S (strcpy):
6830         Fix performance issue in misaligned cases.
6832 2014-08-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6834         * sysdeps/unix/sysv/linux/powerpc/bits/ioctl-types.h (struct winsize):
6835         Move definition from termios.h.
6836         (struct termio): Likewise.
6837         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
6838         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
6839         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
6840         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
6841         Likewise.
6842         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct winsize):
6843         Move definition to ioctl-types.h
6844         (struct termio): Likewise.
6845         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
6846         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
6847         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
6848         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
6849         Likewise.
6851 2014-08-05  Richard Henderson  <rth@redhat.com>
6853         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Always raise
6854         exceptions.
6855         * sysdeps/alpha/soft-fp/Makefile [soft-fp] (sysdep_routines):
6856         Add fraiseexcpt.
6857         * sysdeps/alpha/soft-fp/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
6858         Use __feraiseexcept.
6859         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (feraiseexcept):
6860         Protect libm symbols with IS_IN_libm.
6862         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Remove file.
6864 2014-08-04  Bernard Ogden  <bernie.ogden@linaro.org>
6866         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Remove file.
6868 2014-08-04  Will Newton  <will.newton@linaro.org>
6870         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Remove
6871         file.
6873 2014-08-04  Mike Frysinger  <vapier@gentoo.org>
6875         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Add nocancel
6876         variants for each function.
6878 2014-08-04  Roland McGrath  <roland@hack.frob.com>
6880         * sysdeps/unix/sysv/linux/ia64/nptl/Makefile: File removed, contents
6881         appended ...
6882         * sysdeps/unix/sysv/linux/ia64/Makefile: ... here.
6883         * sysdeps/unix/sysv/linux/ia64/nptl/Versions: File removed, contents
6884         appended ...
6885         * sysdeps/unix/sysv/linux/ia64/Versions: ... here.
6886         * sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S: Moved ...
6887         * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: ... here.
6888         * sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Moved ...
6889         * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: ... here.
6890         * sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data: Moved ...
6891         * sysdeps/unix/sysv/linux/ia64/c++-types.data: ... here.
6892         * sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h: Moved ...
6893         * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: ... here.
6894         * sysdeps/unix/sysv/linux/ia64/nptl/ld.abilist: Moved ...
6895         * sysdeps/unix/sysv/linux/ia64/ld.abilist: ... here.
6896         * sysdeps/unix/sysv/linux/ia64/nptl/libBrokenLocale.abilist: Moved ...
6897         * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: ... here.
6898         * sysdeps/unix/sysv/linux/ia64/nptl/libanl.abilist: Moved ...
6899         * sysdeps/unix/sysv/linux/ia64/libanl.abilist: ... here.
6900         * sysdeps/unix/sysv/linux/ia64/nptl/libc.abilist: Moved ...
6901         * sysdeps/unix/sysv/linux/ia64/libc.abilist: ... here.
6902         * sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist: Moved ...
6903         * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: ... here.
6904         * sysdeps/unix/sysv/linux/ia64/nptl/libdl.abilist: Moved ...
6905         * sysdeps/unix/sysv/linux/ia64/libdl.abilist: ... here.
6906         * sysdeps/unix/sysv/linux/ia64/nptl/libm.abilist: Moved ...
6907         * sysdeps/unix/sysv/linux/ia64/libm.abilist: ... here.
6908         * sysdeps/unix/sysv/linux/ia64/nptl/libnsl.abilist: Moved ...
6909         * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: ... here.
6910         * sysdeps/unix/sysv/linux/ia64/nptl/libpthread.abilist: Moved ...
6911         * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: ... here.
6912         * sysdeps/unix/sysv/linux/ia64/nptl/libresolv.abilist: Moved ...
6913         * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: ... here.
6914         * sysdeps/unix/sysv/linux/ia64/nptl/librt.abilist: Moved ...
6915         * sysdeps/unix/sysv/linux/ia64/librt.abilist: ... here.
6916         * sysdeps/unix/sysv/linux/ia64/nptl/libthread_db.abilist: Moved ...
6917         * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: ... here.
6918         * sysdeps/unix/sysv/linux/ia64/nptl/libutil.abilist: Moved ...
6919         * sysdeps/unix/sysv/linux/ia64/libutil.abilist: ... here.
6920         * sysdeps/unix/sysv/linux/ia64/nptl/localplt.data: Moved ...
6921         * sysdeps/unix/sysv/linux/ia64/localplt.data: ... here.
6922         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Moved ...
6923         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: ... here.
6924         * sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h: Moved ...
6925         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: ... here.
6926         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Moved ...
6927         * sysdeps/unix/sysv/linux/ia64/timer_create.c: ... here.
6928         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Moved ...
6929         * sysdeps/unix/sysv/linux/ia64/timer_delete.c: ... here.
6930         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Moved ...
6931         * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: ... here.
6932         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Moved ...
6933         * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: ... here.
6934         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Moved ...
6935         * sysdeps/unix/sysv/linux/ia64/timer_settime.c: ... here.
6936         * sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c: Moved ...
6937         * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: ... here.
6938         Update #include.
6939         * sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c: Moved ...
6940         * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: ... here.
6942 2014-08-04  Roland McGrath  <roland@hack.frob.com>
6944         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h: Moved ...
6945         * sysdeps/ia64/nptl/bits/pthreadtypes.h: ... here.
6946         * sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h: Moved ...
6947         * sysdeps/ia64/nptl/bits/semaphore.h: ... here.
6948         * sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h: Moved ...
6949         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: ... here.
6951 2014-08-04  Roland McGrath  <roland@hack.frob.com>
6953         * nptl/sysdeps/pthread/createthread.c: Include <arch-fork.h>.
6954         * sysdeps/unix/sysv/linux/ia64/arch-fork.h (ARCH_CLONE): New macro.
6955         * sysdeps/ia64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
6956         * sysdeps/unix/sysv/linux/ia64/nptl/createthread.c: File removed.
6958 2014-08-04  Roland McGrath  <roland@hack.frob.com>
6960         * sysdeps/unix/sysv/linux/ia64/nptl/vfork.S: Moved ...
6961         * sysdeps/unix/sysv/linux/ia64/vfork.S: ... here.
6962         (__libc_vfork): Define function under this name.
6963         (__vfork): Define as an alias.
6964         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
6965         * sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S: File removed.
6967 2014-08-04  Roland McGrath  <roland@hack.frob.com>
6969         * sysdeps/unix/sysv/linux/ia64/clone2.S: Deconditionalize the code
6970         that was previously under [RESET_PID].
6971         * sysdeps/unix/sysv/linux/ia64/nptl/clone2.S: File removed.
6973 2014-08-04  Andreas Schwab  <schwab@suse.de>
6975         * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>.
6977 2014-08-03  Mike Frysinger  <vapier@gentoo.org>
6979         * stdlib/tst-setcontext.c (test_stack): Fix coding style.
6980         (main): Likewise.
6982 2014-08-01  Roland McGrath  <roland@hack.frob.com>
6984         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: File removed.
6986 2014-08-01  Richard Henderon  <rth@redhat.com>
6988         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use math_force_eval before
6989         feclearexcept; use math_opt_barrier instead of open-coded asm; fix
6990         typo in exact zero test.
6991         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
6992         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
6993         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
6995 2014-08-01  Roland McGrath  <roland@hack.frob.com>
6997         * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD, PTR_MANGLE)
6998         (PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Move these macros...
6999         * sysdeps/arm/sysdep.h: ... here.
7000         [!__ASSEMBLER__]: Include <stdint.h>.
7002 2014-08-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
7004         * include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
7005         (HAVE_WCTYPE_H): Likewise.
7006         (HAVE_ISWCTYPE): Likewise.
7007         (ENABLE_NLS): Likewise.
7008         * posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
7009         && HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
7011         * posix/regex_internal.c: Check if DEBUG is defined and is
7012         set.
7014         * include/libc-symbols.h (HAVE_MBSTATE_T): Define macro.
7015         (HAVE_MBSRTOWCS): Likewise.
7016         * posix/fnmatch.c: Include string.h unconditionally.
7018 2014-08-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
7020         * NEWS: Explain the s390 jmp_buf / ucontext_t ABI change
7021         reversal.
7023 2014-07-31  Roland McGrath  <roland@hack.frob.com>
7025         * sysdeps/generic/safe-fatal.h: New file.
7026         * sysdeps/unix/sysv/linux/safe-fatal.h: New file.
7027         * nptl/forward.c: Include it.
7028         (__pthread_unwind): Use __safe_fatal as default action, rather
7029         than a bogus use of INTERNAL_SYSCALL that could never work.
7031         * config.h.in (HAVE_BUILTIN_TRAP): New #define to 0.
7032         * configure.ac (libc_cv_builtin_trap): New test.
7033         * configure: Regenerated.
7034         * sysdeps/generic/abort-instr.h [HAVE_BUILTIN_TRAP]
7035         (ABORT_INSTRUCTION): Define using __builtin_trap.
7037         * nptl/pthreadP.h (SIGCANCEL, SIGTIMER, SIGSETXID, __xidcmd): Moved ...
7038         * sysdeps/unix/sysv/linux/nptl-signals.h: ... to this new file.
7039         * sysdeps/nptl/nptl-signals.h: New file.
7040         * nptl/pthreadP.h: Include <nptl-signals.h>.
7042 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
7044         * sysdeps/s390/s390-64/utf16-utf32-z9.c
7045         (ONE_DIRECTION): Define.
7046         * sysdeps/s390/s390-64/utf8-utf16-z9.c
7047         (ONE_DIRECTION): Define.
7048         * sysdeps/s390/s390-64/utf8-utf32-z9.c
7049         (ONE_DIRECTION): Define.
7051 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
7053         * sysdeps/s390/Makefile: Delete file.
7054         * sysdeps/s390/Versions (GLIBC_2.19): Remove __setjmp.
7055         * sysdeps/s390/__longjmp.c: Delete file.
7056         * sysdeps/s390/bits/setjmp.h (__s390_jmp_buf):
7057         Remove fields __flags and __reserved.
7058         * sysdeps/s390/longjmp.c: Include setjmp/longjmp.c
7059         and add versioning.
7060         * sysdeps/s390/rtld-__longjmp.c: Delete file.
7061         * sysdeps/s390/rtld-global-offsets.sym: Likewise.
7062         * sysdeps/s390/rtld-setjmp.S: Likewise.
7063         * sysdeps/s390/s390-32/__longjmp-common.c: Move to ...
7064         * sysdeps/s390/s390-32/__longjmp.c: ... here.
7065         * sysdeps/s390/s390-32/setjmp-common.S: Move to ...
7066         * sysdeps/s390/s390-32/setjmp.S: ... here.
7067         Add versioning.
7068         (__sigsetjmp): Remove setting __flags field.
7069         * sysdeps/s390/s390-64/__longjmp-common.c:Move to ...
7070         * sysdeps/s390/s390-64/__longjmp.c: ... here.
7071         * sysdeps/s390/s390-64/setjmp-common.S: Move to ...
7072         * sysdeps/s390/s390-64/setjmp.S: ... here.
7073         Add versioning.
7074         (__sigsetjmp): Remove setting __flags field.
7075         * sysdeps/s390/setjmp.S: Delete file.
7076         * sysdeps/s390/sigjmp.c: Likewise.
7077         * sysdeps/s390/v1-longjmp.c: Likewise.
7078         * sysdeps/s390/v1-setjmp.h: Likewise.
7079         * sysdeps/s390/v1-sigjmp.c: Likewise.
7080         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines):
7081         Remove v1-longjmp_chk.
7082         * sysdeps/unix/sysv/linux/s390/getcontext.S: Delete file.
7083         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c:
7084         Include debug/longjmp_chk.c and add versioning.
7085         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c:
7086         Include nptl/pt-longjmp.c and add versioning.
7087         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: Delete file.
7088         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c:
7089         Include __longjmp.c.
7090         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
7091         Move to ...
7092         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: ... here.
7093         (__getcontext): Remove setting __flags field.
7094         Add versioning.
7095         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
7096         Don't restore upper high grps.
7097         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S:
7098         Likewise.
7099         (__swapcontext): Remove setting uc_flags field.
7100         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym:
7101         Delete file.
7102         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
7103         Include __longjmp.c.
7104         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
7105         Move to ...
7106         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: ... here.
7107         (__getcontext): Remove setting __flags field.
7108         Add versioning.
7109         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S:
7110         (__swapcontext): Remove setting uc_flags field.
7111         * unix/sysv/linux/s390/s390-64/ucontext_i.sym: Delete file.
7112         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (ucontext):
7113         Remove fields uc_high_gprs and __reserved.
7114         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym:
7115         New file with reverted content.
7116         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: Delete file.
7117         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist:
7118         Regenerated.
7119         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist:
7120         Regenerated.
7122 2014-07-31  Andreas Schwab  <schwab@suse.de>
7124         * config.h.in (HAVE_IFUNC): Define to 0.
7125         * rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
7126         definedness.
7128 2014-07-30  Ling Ma  <ling.ml@alibaba-inc.com>
7130         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
7131         memmove-avx-unaligned, memcpy-avx-unaligned and
7132         mempcpy-avx-unaligned.
7133         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
7134         Add tests for AVX memcpy functions.
7135         * sysdeps/x86_64/multiarch/memcpy.S: Add support for AVX memcpy.
7136         * sysdeps/x86_64/multiarch/memcpy_chk.S: Add support for AVX
7137         memcpy_chk.
7138         * sysdeps/x86_64/multiarch/memmove.c: Add support for AVX memmove.
7139         * sysdeps/x86_64/multiarch/memmove_chk.c: Add support for AVX
7140         memmove_chk.
7141         * sysdeps/x86_64/multiarch/mempcpy.S: Add support for AVX mempcpy.
7142         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Add support for AVX
7143         mempcpy_chk.
7144         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: New file.
7145         * sysdeps/x86_64/multiarch/mempcpy-avx-unaligned.S: New file.
7146         * sysdeps/x86_64/multiarch/memmove-avx-unaligned.S: New file.
7148 2013-07-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7150         [BZ #17213]
7151         * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
7152         powerpc64le.
7154 2014-07-29  Jeff Layton  <jlayton@poochiereds.net>
7156         [BZ #16839]
7157         * manual/llio.texi: Add section about open file description locks.
7158         * manual/examples/ofdlocks.c: Example of open file description
7159         lock usage.
7160         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Define F_OFD_GETLK,
7161         F_OFD_SETLK, and F_OFD_SETLKW.
7163 2014-07-23  Allan McRae  <allan@archlinux.org>
7165         * po/es.po: Update Spanish translation from translation project.
7167 2014-07-18  Andreas Schwab  <schwab@linux-m68k.org>
7169         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Removed.
7171 2014-07-17  Maciej W. Rozycki  <macro@codesourcery.com>
7173         [BZ #17078]
7174         * sysdeps/arm/dl-machine.h (elf_machine_rela)
7175         [RESOLVE_CONFLICT_FIND_MAP]: Handle R_ARM_TLS_DESC relocation.
7176         (elf_machine_lazy_rel): Handle prelinked R_ARM_TLS_DESC entries.
7178 2014-07-17  Joseph Myers  <joseph@codesourcery.com>
7180         [BZ #17088]
7181         * math/fesetenv.c (__fesetenv)
7182         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Return 1 for FE_NOMASK_ENV.
7183         * math/feupdateenv.c (__feupdateenv)
7184         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Likewise.
7186         * sysdeps/unix/sysv/linux/s390/kernel-features.h: New file.
7187         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
7188         (__ASSUME_SOCKETCALL): Do not define.
7190         * sysdeps/unix/sysv/linux/sh/kernel-features.h: New file.
7191         * sysdeps/unix/sysv/linux/kernel-features.h [__sh__]
7192         (__ASSUME_SOCKETCALL): Do not define.
7193         (__ASSUME_ST_INO_64_BIT): Define unconditionally.
7194         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
7195         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7196         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
7197         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7198         [__LINUX_KERNEL_VERSION >= 0x030000 && __sh__]
7199         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7200         [__sh__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7202         * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: New file.
7203         * sysdeps/unix/sysv/linux/kernel-features.h [__powerpc__]
7204         (__ASSUME_SOCKETCALL): Do not define.
7205         (__ASSUME_IPC64): Define unconditionally.
7206         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
7207         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7208         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
7209         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7210         [__LINUX_KERNEL_VERSION >= 0x030000 && __powerpc__]
7211         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7212         [__powerpc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL):
7213         Likewise.
7215         * sysdeps/unix/sysv/linux/sparc/kernel-features.h: New file.
7216         * sysdeps/unix/sysv/linux/kernel-features.h [__sparc__]
7217         (__ASSUME_SOCKETCALL): Do not define.
7218         (__ASSUME_SET_ROBUST_LIST): Define unconditionally.
7219         (__ASSUME_FUTEX_LOCK_PI): Likewise.
7220         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7221         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
7222         (__ASSUME_REQUEUE_PI): Define unconditionally.
7223         [__LINUX_KERNEL_VERSION >= 0x020621 && __sparc__]
7224         (__ASSUME_RECVMMSG_SYSCALL): Do not define.
7225         [__sparc__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7226         [__LINUX_KERNEL_VERSION >= 0x030000 && __sparc__]
7227         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7228         [__sparc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7230         * sysdeps/unix/sysv/linux/i386/kernel-features.h: New file.
7231         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__]
7232         (__ASSUME_SOCKETCALL): Do not define.
7233         [__LINUX_KERNEL_VERSION >= 0x020621 && __i386__]
7234         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7235         [__i386__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7236         [__LINUX_KERNEL_VERSION >= 0x030000 && __i386__]
7237         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7238         [__i386__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7240         * sysdeps/unix/sysv/linux/x86_64/kernel-features.h: New file.
7241         * sysdeps/unix/sysv/linux/kernel-features.h [__x86_64__]
7242         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7243         [__LINUX_KERNEL_VERSION >= 0x020621 && __x86_64__]
7244         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7245         [__LINUX_KERNEL_VERSION >= 0x030000 && __x86_64__]
7246         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7247         [__x86_64__ && __LINUX_KERNEL_VERSION >= 0x030100]
7248         (__ASSUME_GETCPU_SYSCALL): Likewise.
7250         * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): New macro.
7251         * sysdeps/gnu/configure.ac: Use LIBC_SLIBDIR_RTLDDIR.  Remove
7252         cases for individual architectures.
7253         * sysdeps/gnu/configure: Regenerated.
7254         * sysdeps/unix/sysv/linux/aarch64/configure.ac: Use
7255         LIBC_SLIBDIR_RTLDDIR.
7256         * sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
7257         * sysdeps/unix/sysv/linux/mips/configure.ac: Use
7258         LIBC_SLIBDIR_RTLDDIR.
7259         * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
7260         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: Use
7261         LIBC_SLIBDIR_RTLDDIR.
7262         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
7263         Regenerated.
7264         * sysdeps/unix/sysv/linux/s390/s390-64/configure.ac: New file.
7265         * sysdeps/unix/sysv/linux/s390/s390-64/configure: New generated
7266         file.
7267         * sysdeps/unix/sysv/linux/sparc/sparc64/configure.ac: New file.
7268         * sysdeps/unix/sysv/linux/sparc/sparc64/configure: New generated
7269         file.
7270         * sysdeps/unix/sysv/linux/x86_64/64/configure.ac: New file.
7271         * sysdeps/unix/sysv/linux/x86_64/64/configure: New generated file.
7272         * sysdeps/unix/sysv/linux/x86_64/x32/configure.ac: New file.
7273         * sysdeps/unix/sysv/linux/x86_64/x32/configure: Generate.
7275         * sysdeps/aarch64/shlib-versions: Move to ...
7276         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: ... here.
7277         * sysdeps/alpha/shlib-versions: Move to ...
7278         * sysdeps/unix/sysv/linux/alpha/shlib-versions: ... here.
7279         * sysdeps/arm/shlib-versions: Move to ...
7280         * sysdeps/unix/sysv/linux/arm/shlib-versions: ... here.
7281         * sysdeps/hppa/shlib-versions: Move all contents except for
7282         libgcc_s entry to ...
7283         * sysdeps/unix/sysv/linux/hppa/shlib-versions: ... here.  Merge in
7284         entry from ...
7285         * sysdeps/hppa/nptl/shlib-versions: ... here.  Remove file.
7286         * sysdeps/ia64/shlib-versions: Move to ...
7287         * sysdeps/unix/sysv/linux/ia64/shlib-versions: ... here.  Merge in
7288         entry from ...
7289         * sysdeps/ia64/nptl/shlib-versions: ... here.  Remove file.
7290         * sysdeps/m68k/coldfire/shlib-versions: Move to ...
7291         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: ... here.
7292         * sysdeps/microblaze/shlib-versions: Move to ...
7293         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: ... here.
7294         * sysdeps/mips/shlib-versions: Move to ...
7295         * sysdeps/unix/sysv/linux/mips/shlib-versions: ... here.  Merge in
7296         entry from ...
7297         * sysdeps/mips/nptl/shlib-versions: ... here.  Remove file.
7298         * sysdeps/tile/shlib-versions: Move to ...
7299         * sysdeps/unix/sysv/linux/tile/shlib-versions: ... here.
7300         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Merge in entry
7301         from ...
7302         * sysdeps/x86_64/64/shlib-versions: ... here.  Remove file.
7303         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Merge in
7304         entry from ...
7305         * sysdeps/x86_64/x32/shlib-versions: ... here.  Remove file.
7307 2014-07-17  Will Newton  <will.newton@linaro.org>
7309         * sysdeps/arm/bits/atomic.h
7310         (__arch_compare_and_exchange_bool_8_int): Evaluate to zero.
7311         (__arch_compare_and_exchange_bool_16_int): Likewise.
7312         (__arch_compare_and_exchange_bool_64_int): Likewise.
7314         * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc
7315         into an #else block.
7317 2014-07-16  Roland McGrath  <roland@hack.frob.com>
7319         * sysdeps/arm/preconfigure.ac: Apply EABI sanity check to arm*, not
7320         just Linux configurations.  Test empirically that the compiler sets
7321         __ARM_EABI__, rather than using the tuple to decide.
7322         * sysdeps/arm/preconfigure: Regenerated.
7323         * sysdeps/unix/sysv/linux/arm/configure: File removed.
7324         * sysdeps/unix/sysv/linux/arm/configure.ac: File removed,
7325         contents appended ...
7326         * sysdeps/arm/configure.ac: ... here.
7327         * sysdeps/arm/configure: Regenerated.
7329 2014-07-15  Roland McGrath  <roland@hack.frob.com>
7331         * nptl/pthread_kill.c: New file.
7332         * nptl/pthread_sigmask.c: New file.
7333         * nptl/pthread_sigqueue.c: New file.
7335         * sysdeps/nptl/lowlevellock.h: New file.
7336         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: New file.
7337         * sysdeps/nptl/lowlevellock-futex.h: New file.
7339         * nptl/pthreadP.h (__current_sigrtmin, __current_sigrtmax):
7340         Remove dead declarations.
7342 2014-07-14  H.J. Lu  <hongjiu.lu@intel.com>
7344         * config.h.in (HAVE_AVX2_SUPPORT): New #undef.
7345         * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and
7346         config-cflags-avx2.
7347         * sysdeps/x86_64/configure.ac: Likewise.
7348         * sysdeps/i386/configure: Regenerated.
7349         * sysdeps/x86_64/configure: Likewise.
7350         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
7351         memset-avx2 only if config-cflags-avx2 is yes.
7352         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
7353         Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is
7354         defined.
7355         * sysdeps/x86_64/multiarch/memset.S: Define multiple versions
7356         only if HAVE_AVX2_SUPPORT is defined.
7357         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
7359 2014-07-14  Alan Modra  <amodra@gmail.com>
7361         [BZ #17153]
7362         * elf/elf.h (DT_PPC64_NUM): Correct value.
7363         * NEWS: Add to fixed bug list.
7365 2014-07-13  Jim Meyering  <meyering@fb.com>
7367         [BZ 17150]
7368         regex: don't deref NULL upon heap allocation failure
7369         * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
7370         failure in one more place.
7371         To trigger the segfault, configure grep -with-included-regex,
7372         build it, and run these commands:
7373         ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
7375 2014-07-13  Andreas Schwab  <schwab@linux-m68k.org>
7377         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
7379 2014-07-11  Richard Henderson  <rth@redhat.com>
7381         * sysdeps/aarch64/libm-test-ulps: Update.
7383 2014-07-10  Florian Weimer  <fweimer@redhat.com>
7385         [BZ #17135]
7386         * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
7387         * nptl/allocatestack.c (__nptl_setxid_error): New function.
7388         (__nptl_setxid): Initialize error member.  Call
7389         __nptl_setxid_error.
7390         * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
7391         * nptl/descr.h (struct xid_command): Add error member.
7392         * nptl/tst-setuid3.c: New file.
7393         * nptl/Makefile (tests): Add it.
7395 2014-07-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7397         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
7398         New define.
7399         (__lll_trylock): Use __lll_base_trylock.
7400         (__lll_cond_trylock): Likewise.
7402 2014-07-10  Roland McGrath  <roland@hack.frob.com>
7404         * nptl/pthread_create.c (start_thread): Use atomic_or and
7405         lll_futex_wake directly rather than lll_robust_dead.
7406         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
7407         (lll_robust_dead): Macro removed.
7408         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
7409         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
7410         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
7411         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
7412         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
7413         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
7414         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
7415         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
7416         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
7417         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
7418         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
7419         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
7420         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
7421         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
7422         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
7424         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
7425         Use atomic_compare_and_exchange_val_acq directly rather than
7426         lll_robust_trylock.
7427         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
7428         (__lll_robust_trylock, lll_robust_trylock): Removed.
7429         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
7430         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
7431         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
7432         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
7433         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
7434         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
7435         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
7436         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
7437         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
7438         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
7439         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
7440         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
7441         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
7442         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
7444 2014-07-02  Florian Weimer  <fweimer@redhat.com>
7446         * manual/locale.texi (Locale Names): New section documenting
7447         locale name syntax.  Adjust menu and node chaining accordingly.
7448         (Choosing Locale): Reference Locale Names, Locale Categories.
7449         Mention setting LC_ALL=C.  Reflect that name syntax is now
7450         documented.
7451         (Locale Categories): New section title.  Reference Locale Names.
7452         LC_ALL is an environment variable, but not a category.
7453         (Setting the Locale): Remove "locale -a" invocation and LOCPATH
7454         description, now in Locale Name.  Reference that section.  Locale
7455         name syntax is now documented.
7457 2014-07-02  Florian Weimer  <fweimer@redhat.com>
7459         [BZ #17137]
7460         * locale/findlocale.c (name_present, valid_locale_name): New
7461         functions.
7462         (_nl_find_locale): Use the loc_name variable to store name
7463         candidates.  Call name_present and valid_locale_name to check and
7464         validate locale names.  Return an error if the locale is invalid.
7466 2014-07-02  Florian Weimer  <fweimer@redhat.com>
7468         * locale/setlocale.c (setlocale): Use strdup for allocating
7469         composite name copy.
7471 2014-07-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
7473         Sync up with gnulib.
7474         * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
7475         [!_LIBC && ENABLE_NLS]: Include gettext.h.
7476         [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
7477         and _GL_ARG_NONNULL.
7478         [USE_UNLOCKED_IO]: Include unlocked-io.h.
7479         [!_LIBC]: Include code for Windows and Cygwin.
7480         [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
7481         Include prototype for int strerror_r.
7482         [!_LIBC] (is_open): New function.
7483         (flush_stdout): New function.
7484         (print_errno_message): Use it.
7485         (error): Likewise.
7486         (error_at_line): Likewise.
7487         (error_tail) Add function attribute macros.  Use
7488         __builtin_expect.
7490         * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
7492         * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
7494         * io/ftw.c: Include sys/param.h unconditionally.
7496         * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
7498         [BZ #17125]
7499         * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
7500         libc_freeres_ptr.
7501         (freecache): New function to free CACHE on exit.
7503         * sunrpc/xdr.c (xdr_string): Add comment about SIZE
7504         initialization.
7506 2014-07-09  David S. Miller  <davem@davemloft.net>
7508         * sysdeps/sparc/fpu/libm-test-ulps: Update.
7510         * sysdeps/sparc/nptl/internaltypes.h: Delete.
7511         * sysdeps/sparc/nptl/sparc-nptl.h: New file.
7512         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
7513         * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
7514         * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
7515         * sysdeps/sparc/nptl/sem_init.c: Likewise.
7516         * sysdeps/sparc/nptl/sem_post.c: Likewise.
7517         * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
7518         * sysdeps/sparc/nptl/sem_wait.c: Likewise.
7519         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
7520         * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
7521         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
7522         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
7524 2014-07-09  Andreas Schwab  <schwab@suse.de>
7526         * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
7527         output.
7528         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
7529         (do_test): Likewise.
7531         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
7533 2014-07-09  Will Newton  <will.newton@linaro.org>
7535         * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
7536         * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
7537         * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
7538         * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
7539         * sysdeps/hppa/start.S (_start): Likewise.
7541 2014-07-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
7543         * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
7545         * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
7546         defined.
7548 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
7550         * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
7551         after checking that it is non-NULL.
7553         * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
7555 2014-07-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7557         * sysdeps/powerpc/memmove.c: Remove file.
7558         * sysdeps/powerpc/powerpc32/power4/memcopy.h
7559         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
7560         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
7561         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
7562         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
7563         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
7564         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
7565         string memmove instead of removed powerpc one.
7567         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
7568         [weak_alias]: Fix compiler warning due trailing data.
7569         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
7570         [weak_alias]: Likewise.
7571         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
7572         warnigs due missing definition of __strcpy_power7 and __strlen_power7.
7574         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
7575         (__libc_ifunc_impl_list): Add memmove functions.
7577 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
7579         * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
7580         Remove code.
7581         * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
7582         Likewise
7583         * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
7584         Likewise
7585         * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
7586         Likewise
7587         * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
7588         Likewise
7589         * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
7590         Likewise
7591         * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
7592         Likewise
7593         * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
7594         Likewise
7595         * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
7596         Likewise
7597         * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
7598         Likewise
7599         * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
7600         Likewise
7601         * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
7602         Likewise
7603         * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
7604         Likewise
7605         * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
7606         Likewise
7607         * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
7608         Likewise
7609         * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
7610         Likewise
7611         * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
7612         Likewise
7614 2014-07-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7616         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
7617         to avoid alignment traps in non-cacheable memory.
7618         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
7620         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
7621         multiarch objects.
7622         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
7623         file: multiarch power7 memmove.
7624         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
7625         multiarch default memmove.
7626         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
7627         multiarch memove for powerpc32/power4.
7629         * string/bcopy.c: Use full path to include memmove.c.
7630         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
7631         multiarch objects.
7632         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
7633         bcopy for powerpc64.
7634         * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
7635         bcopy for powerpc64.
7636         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
7637         and memmove implementations.
7638         * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
7639         optimized multiarch memmove for POWER7/powerpc64.
7640         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
7641         default multiarch memmove for powerpc64.
7642         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
7643         multiarch for powerpc64.
7644         * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
7645         for POWER7/powerpc64.
7646         * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
7647         memmove for POWER7/powerpc64.
7649         * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
7650         glibc default one.
7652         * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
7653         __ELF_NATIVE_CLASS equal to 64.
7655 2014-07-07  Roland McGrath  <roland@hack.frob.com>
7657         * sysdeps/nptl/lowlevellock.h: File removed.
7659         * NEWS: NPTL is no longer an add-on!
7660         * nptl/internaltypes.h: Moved ...
7661         * sysdeps/nptl/internaltypes.h: ... here.
7662         * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
7663         * sysdeps/nptl/fork.c: Likewise.
7664         * sysdeps/nptl/gai_misc.h: Likewise.
7665         * sysdeps/nptl/librt-cancellation.c: Likewise.
7666         * sysdeps/nptl/jmp-unwind.c: Likewise.
7667         * sysdeps/nptl/setxid.h: Likewise.
7668         * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
7669         * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
7670         * sysdeps/unix/sysv/linux/arm/Implies: New file.
7671         * sysdeps/unix/sysv/linux/hppa/Implies: New file.
7672         * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
7673         * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
7674         * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
7675         * sysdeps/unix/sysv/linux/m68k/Implies: New file.
7676         * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
7677         * sysdeps/unix/sysv/linux/mips/Implies: New file.
7678         * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
7679         * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
7680         * sysdeps/unix/sysv/linux/sh/Implies: New file.
7681         * sysdeps/unix/sysv/linux/sparc/Implies: New file.
7682         * sysdeps/unix/sysv/linux/tile/Implies: New file.
7683         * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
7684         * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
7685         * nptl/Makeconfig: Moved ...
7686         * sysdeps/nptl/Makeconfig: ... here.
7687         * nptl/configure: File removed.
7688         * nptl/ANNOUNCE: File removed.
7689         * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
7690         * sysdeps/unix/sysv/linux/configure: Regenerated.
7692         * nptl/Makefile (routines): Add libc_pthread_init,
7693         libc_multiple_threads, register-atfork and unregister-atfork.
7694         (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
7695         (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
7696         lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
7697         pthread-pi-defines.sym, structsem.sym.
7698         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
7699         (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
7700         [$(subdir) = nptl] (tests): Add tst-setgetname.
7701         * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
7702         * sysdeps/unix/sysv/linux/sigaction.c: Just include
7703         <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
7704         [!LIBC_SIGACTION]: Remove aliases.
7705         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
7706         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
7707         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
7708         * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
7709         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
7710         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
7711         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
7712         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
7713         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
7714         * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
7715         (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
7716         __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
7717         __libc_allocate_rtsig_private.
7718         * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
7719         * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
7720         * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
7721         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
7722         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
7723         * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
7724         * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
7725         * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
7726         * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
7727         * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
7728         * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
7729         * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
7730         * nptl/internaltypes.h: ... here.
7731         * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
7732         * sysdeps/nptl/jmp-unwind.c: ... here.
7733         * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
7734         * nptl/libc-lowlevellock.c: ... here.
7735         * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
7736         * nptl/libc_multiple_threads.c: ... here.
7737         * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
7738         * nptl/libc_pthread_init.c: ... here.
7739         * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
7740         * nptl/lowlevelbarrier.sym: ... here.
7741         * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
7742         * nptl/lowlevelcond.sym: ... here.
7743         * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
7744         * nptl/lowlevellock.c: ... here.
7745         * nptl/lowlevellock.h: Moved ...
7746         * sysdeps/nptl/lowlevellock.h: ... here.
7747         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
7748         * nptl/lowlevelrobustlock.c: ... here.
7749         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
7750         * nptl/lowlevelrobustlock.sym: ... here.
7751         * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
7752         * nptl/lowlevelrwlock.sym: ... here.
7753         * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
7754         * nptl/pt-fork.c: ... here.
7755         * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
7756         * nptl/pthread-pi-defines.sym: ... here.
7757         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
7758         * nptl/pthread_attr_getaffinity.c: ... here.
7759         * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
7760         * nptl/pthread_attr_setaffinity.c: ... here.
7761         * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
7762         * nptl/pthread_mutex_cond_lock.c: ... here.
7763         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
7764         Update #include.
7765         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
7766         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
7767         * nptl/pthread_once.c: ... here, replacing old file.
7768         * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
7769         * nptl/pthread_yield.c: ... here.
7770         * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
7771         * nptl/register-atfork.c: ... here.
7772         * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
7773         * nptl/sem_post.c: ... here.
7774         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
7775         * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
7776         * nptl/sem_timedwait.c: ... here.
7777         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
7778         * nptl/sem_trywait.c: ... here.
7779         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
7780         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
7781         * nptl/sem_wait.c: ... here.
7782         * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
7783         * nptl/structsem.sym: ... here.
7784         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
7785         * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
7786         * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
7787         * nptl/unregister-atfork.c: ... here.
7788         * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
7789         * nptl/unwindbuf.sym: ... here.
7790         * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
7791         * sysdeps/nptl/fork.c: ... here.
7792         * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
7793         * sysdeps/nptl/fork.h: ... here.
7794         * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
7795         * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
7796         * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
7797         * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
7798         * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
7799         * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
7800         * sysdeps/unix/sysv/linux/getpid.c: ... here.
7801         * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
7802         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
7803         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
7804         * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
7805         * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
7806         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
7807         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
7808         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
7809         * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
7810         * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
7811         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
7812         * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
7813         * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
7814         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
7815         * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
7816         * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
7817         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
7818         * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
7819         * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
7820         * sysdeps/unix/sysv/linux/raise.c: ... here.
7821         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
7822         * sysdeps/unix/sysv/linux/timer_create.c: ... here.
7823         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
7824         * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
7825         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
7826         * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
7827         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
7828         * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
7829         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
7830         * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
7831         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
7832         * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
7833         * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
7834         * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
7835         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
7837 2014-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
7839         * sysdeps/generic/memcopy.h: Add comment for
7840         MEMCPY_OK_FOR_FWD_MEMMOVE.
7842 2014-07-04  Will Newton  <will.newton@linaro.org>
7844         * string/memchr.c: Merge from gnulib.
7845         [_LIBC]: Remove conditionals.
7846         (__ptr_t): Remove define.
7847         (LONG_MAX_32_BITS): Likewise.
7848         (LONG_MAX): Likewise.
7849         (MEMCHR): Use ANSI prototype and optimize algorithm.
7851         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
7853 2014-07-03  Roland McGrath  <roland@hack.frob.com>
7855         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
7856         (lll_futex_timed_wait_bitset): Fix syscall argument count.
7858         * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
7859         Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
7860         in a bare environment with no <stdlib.h> installed.
7861         * sysdeps/nptl/configure: Regenerated.
7863         * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
7865         * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
7866         AC_EGREP_CPP for kernel header checks, so they only succeed if
7867         including <linux/version.h> actually works right.
7868         * sysdeps/unix/sysv/linux/configure: Regenerated.
7870         * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
7871         value so it's not diagnosed as unused.
7873         * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
7874         thing) with "ifeq ($(subdir),rt)".
7876 2014-07-03  Richard Henderson  <rth@redhat.com>
7878         * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
7879         * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
7880         include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
7882         * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
7883         (math_force_eval): New.
7885         * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
7886         * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
7888         * sysdeps/alpha/fpu/s_round.c: Remove file.
7889         * sysdeps/alpha/fpu/s_roundf.c: Remove file.
7891         * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
7892         (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
7893         * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
7894         (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
7895         (_dl_start, print_statistics): Likewise.
7896         * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
7897         HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
7899         * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7900         * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7901         * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7902         * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7903         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
7904         (HP_SMALL_TIMING_AVAIL): Define.
7905         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7906         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
7907         (HP_SMALL_TIMING_AVAIL): Define.
7908         * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7909         * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7911         * sysdeps/aarch64/hp-timing.h: New file.
7913         * sysdeps/generic/hp-timing.h: Remove dead comment.
7914         * sysdeps/generic/hp-timing-common.h: New file.
7915         * sysdeps/alpha/hp-timing.h: Include it.
7916         (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
7917         * sysdeps/i386/i686/hp-timing.h: Likewise.
7918         * sysdeps/ia64/hp-timing.h: Likewise.
7919         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
7920         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
7921         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
7922         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
7923         * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
7924         (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
7925         (hp_timing_t): New.
7927         * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
7928         * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
7929         (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
7930         * elf/rtld.c (_dl_start_final): Likewise.
7931         * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
7932         * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7933         * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7934         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7935         * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7936         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
7937         (HP_TIMING_DIFF_INIT): Remove.
7938         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7939         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
7940         (HP_TIMING_DIFF_INIT): Remove.
7941         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7942         * sysdeps/i386/i686/hp-timing.c: Remove file.
7943         * sysdeps/x86_64/hp-timing.c: Remove file.
7944         * sysdeps/ia64/hp-timing.c: Remove file.
7945         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
7946         * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
7947         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
7948         * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
7950         * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
7951         * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
7952         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
7953         * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
7954         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
7955         (HP_TIMING_ACCUM): Remove.
7956         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
7957         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
7958         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
7960         * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
7961         * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
7962         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
7963         * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
7964         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
7965         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
7966         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
7967         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
7969         * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
7971 2014-07-03  Maciej W. Rozycki  <macro@codesourcery.com>
7973         * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
7975 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
7977         Sync up with gettext.
7978         * intl/loadmsgcat.c: Define O_BINARY if not defined.
7979         [_MSC_VER]: Include malloc.h
7980         [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
7981         (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
7982         (_nl_load_domain): Open DOMAIN_FILE in binary mode.  Don't use
7983         TEMP_FAILURE_RETRY.  Cast return of alloca.
7984         [!_LIBC] Call gl_rwlock_init.
7985         [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
7987 2014-07-02  Roland McGrath  <roland@hack.frob.com>
7989         * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
7990         before checking its value.
7992 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
7994         * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
7996         * debug/memcpy_chk.c: Don't include pagecopy.h.
7997         * debug/mempcpy_chk.c: Likewise.
7998         * string/memcpy.c: Likewise.
7999         * string/memmove.c: Likewise.
8000         * sysdeps/powerpc/memmove.c: Likewise.
8001         * sysdeps/generic/memcopy.h: Include pagecopy.h.  Move
8002         definition of PAGE_COPY_FWD_MAYBE here...
8003         * sysdeps/generic/pagecopy.h: ... from here.
8004         * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
8006 2014-07-02  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
8007             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8009         * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
8010         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
8011         optimizations.
8012         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
8013         (__libc_ifunc_impl_list): Likewise.
8014         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
8015         multiarch strcat for PPC64.
8016         * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
8017         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
8019 2014-07-02  Roland McGrath  <roland@hack.frob.com>
8021         * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
8023 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
8025         * intl/loadmsgcat.c: Remove declaration of
8026         get_sysdep_segment_value.
8027         (get_sysdep_segment_value): Use ISO C style.
8028         (_nl_load_domain): Use ISO C style.  Get rid of redundant
8029         semicolon.  Fix typo and formatting in comment.
8030         (_nl_unload_domain): Use ISO C style.
8032         * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
8034 2014-07-02  Will Newton  <will.newton@linaro.org>
8036         * malloc/obstack.c: Merge from gnulib master.
8037         [HAVE_CONFIG_H]: Remove conditional code.
8038         [!_LIBC]: Include config.h.
8039         [!ELIDE_CODE]: Don't include inttypes.h, include
8040         stdint.h unconditionally.
8041         (print_and_abort): Mark as _Noreturn.
8042         (_obstack_allocated_p): Mark as __attribute_pure__.
8043         (obstack_free): Rename to __obstack_free.
8044         [!__attribute__]: Remove conditional code.
8045         * malloc/obstack.h: Merge from gnulib master.
8046         [__cplusplus]: Move conditional down.
8047         [!__attribute_pure__]: Define __attribute_pure__ here
8048         if it is not already defined.
8049         (_obstack_memory_used): Mark as __attribute_pure__.
8050         [!__obstack_free]: Define as obstack_free.
8051         [__GNUC__]: Remove check for ancient NeXT gcc.
8053 2014-07-02  Will Newton  <will.newton@linaro.org>
8054             Paul Eggert  <eggert@cs.ucla.edu>
8056         * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
8058 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
8060         * resolv/gethnamaddr.c: Add comment warning that the file is
8061         not maintained.
8063 2014-07-01  Carlos O'Donell  <carlos@redhat.com>
8065         * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
8066         entries.
8068         * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
8069         entry for aio_cancel and aio_cancel64.
8070         * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
8071         * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
8072         * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
8073         * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
8074         * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
8075         * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
8076         * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
8077         * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
8078         * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
8079         * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
8080         * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
8081         * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
8082         * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
8084 2014-07-01  Roland McGrath  <roland@hack.frob.com>
8086         * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
8087         * nptl/pthread_mutex_lock.c: Likewise.
8088         * nptl/pthread_mutex_timedlock.c: Likewise.
8089         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
8091 2014-07-01  Richard henderson  <rth@redhat.com>
8093         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
8094         (__isnan, __isnanl): Remove.
8095         * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
8097         * sysdeps/alpha/fpu/libm-test-ulps: Update.
8099 2014-07-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
8101         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
8103 2014-07-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
8105         * resolv/nss_dns/dns-host.c (getanswer_r)
8106         [MULTI_PTRS_ARE_ALIASES]: Remove code.
8108 2014-07-01  Joseph Myers  <joseph@codesourcery.com>
8110         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
8111         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
8112         undefine.
8113         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
8114         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
8116 2014-07-01  Roland McGrath <roland@hack.frob.com>
8118         * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
8119         * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
8121         * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
8122         * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
8124         * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
8125         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
8126         ... here.
8127         * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
8128         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
8130         * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
8131         * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
8132         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
8133         * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
8135         * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
8136         * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
8137         * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
8138         * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
8139         * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
8140         Moved ...
8141         * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
8142         ... here.
8143         * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
8144         * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
8145         * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
8146         * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
8147         * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
8148         * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
8149         * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
8150         * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
8151         * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
8152         * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
8153         * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
8154         * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
8155         * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
8156         * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
8157         * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
8158         * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
8159         * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
8160         * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
8161         * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
8162         * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
8163         ... here.
8164         * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
8165         * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
8166         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
8167         * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
8168         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
8169         * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
8170         * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
8171         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
8173 2014-07-01  David Holsgrove  <david.holsgrove@xilinx.com>
8175         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
8176         * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
8177         * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
8178         Add sysdep.
8180 2014-06-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8182         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8184 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
8186         * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
8187         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
8189         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
8191         * sysdeps/arm/libm-test-ulps: Regenerated.
8193 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
8194             Roland McGrath <roland@hack.frob.com>
8196         * test-skeleton.c (signal_handler): Kill the whole process group
8197         before killing the child individually.
8198         (main): Report any failure on `setpgid'.
8200 2014-06-30  Roland McGrath  <roland@hack.frob.com>
8202         * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
8203         from _TLS_H to _ARM_NPTL_TLS_H.
8204         (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
8205         * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
8207 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
8209         [BZ #16539]
8210         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
8211         (__expm1l): Return argument unchanged when small but not
8212         subnormal.
8214         * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
8215         include macro name.
8216         (_FP_UNPACK_RAW_1_P): Likewise.
8217         (_FP_PACK_RAW_1): Likewise.
8218         (_FP_PACK_RAW_1_P): Likewise.
8219         (_FP_MUL_MEAT_1_wide): Likewise.
8220         (_FP_MUL_MEAT_DW_1_hard): Likewise.
8221         (_FP_MUL_MEAT_1_hard): Likewise.
8222         (_FP_DIV_MEAT_1_imm): Likewise.
8223         (_FP_DIV_MEAT_1_udiv_norm): Likewise.
8224         (_FP_DIV_MEAT_1_udiv): Likewise.
8225         * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
8226         (_FP_UNPACK_RAW_2): Likewise.
8227         (_FP_UNPACK_RAW_2_P): Likewise.
8228         (_FP_PACK_RAW_2): Likewise.
8229         (_FP_PACK_RAW_2_P): Likewise.
8230         (_FP_MUL_MEAT_DW_2_wide): Likewise.
8231         (_FP_MUL_MEAT_2_wide): Likewise.
8232         (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
8233         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
8234         (_FP_MUL_MEAT_DW_2_gmp): Likewise.
8235         (_FP_MUL_MEAT_2_gmp): Likewise.
8236         (_FP_DIV_MEAT_2_udiv): Likewise.
8237         * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
8238         (_FP_FRAC_SRL_4): Likewise.
8239         (_FP_FRAC_SRST_4): Likewise.
8240         (_FP_FRAC_SRS_4): Likewise.
8241         (_FP_UNPACK_RAW_4): Likewise.
8242         (_FP_UNPACK_RAW_4_P): Likewise.
8243         (_FP_PACK_RAW_4): Likewise.
8244         (_FP_PACK_RAW_4_P): Likewise.
8245         (_FP_MUL_MEAT_DW_4_wide): Likewise.
8246         (_FP_MUL_MEAT_4_wide): Likewise.
8247         (_FP_MUL_MEAT_4_gmp): Likewise.
8248         (umul_ppppmnnn): Likewise.
8249         (_FP_DIV_MEAT_4_udiv): Likewise.
8250         (__FP_FRAC_ADD_4): Likewise.
8251         (__FP_FRAC_SUB_3): Likewise.
8252         (__FP_FRAC_SUB_4): Likewise.
8253         (__FP_FRAC_DEC_3): Likewise.
8254         (__FP_FRAC_DEC_4): Likewise.
8255         (__FP_FRAC_ADDI_4): Likewise.
8256         * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
8257         (_FP_FRAC_SRL_8): Likewise.
8258         (_FP_FRAC_SRS_8): Likewise.
8260         * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
8261         include macro name.
8262         (FP_UNPACK_RAW_EP): Likewise.
8263         (FP_PACK_RAW_E): Likewise.
8264         (FP_PACK_RAW_EP): Likewise.
8265         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
8266         (_FP_ISSIGNAN): Likewise.
8267         (_FP_ADD_INTERNAL): Likewise.
8268         (_FP_FMA): Likewise.
8269         (_FP_CMP): Likewise.
8270         (_FP_SQRT): Likewise.
8271         (_FP_TO_INT): Likewise.
8272         (_FP_FROM_INT): Likewise.
8273         (FP_EXTEND): Likewise.
8274         (_FP_DIV_MEAT_N_loop): Likewise.
8276 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
8278         * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
8279         throughout.
8281 2014-06-29  Joseph Myers  <joseph@codesourcery.com>
8283         [BZ #17097]
8284         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
8285         result with correct sign in case of exponents that produce
8286         overflow except for X very close to 1.
8288 2014-06-28  Paul Eggert  <eggert@cs.ucla.edu>
8290         mktime: merge #if/#ifdef usage from glibc
8291         * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
8292         as that works with both Glibc's and Gnulib's style.
8293         See thread starting at Siddhesh Poyarekar's bug report at:
8294         http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
8296 2014-06-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
8298         * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
8299         * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
8300         * sysdeps/tile/tilegx/memmove.c: Remove file.
8302 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
8304         * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
8305         abi-name definition.
8306         * scripts/soversions.awk: Do not handle or generate ABI lines.
8307         * shlib-versions: Remove ABI entries.
8308         * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
8309         * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
8311 2014-06-27  Roland McGrath  <roland@hack.frob.com>
8313         * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
8314         * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
8315         * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
8316         * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
8317         * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
8318         * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
8319         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
8320         Moved ...
8321         * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
8322         ... here.
8323         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
8324         * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
8325         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
8326         * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
8327         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
8328         * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
8329         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
8330         * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
8331         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
8332         * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
8333         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
8334         * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
8335         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
8336         Moved ...
8337         * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
8338         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
8339         * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
8340         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
8341         * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
8342         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
8343         Moved ...
8344         * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
8345         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
8346         Moved ...
8347         * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
8348         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
8349         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
8350         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
8351         Moved ...
8352         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
8353         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
8354         * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
8355         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
8356         * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
8357         * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
8358         * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
8359         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
8360         Moved ...
8361         * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
8362         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
8363         * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
8364         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
8365         Moved ...
8366         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
8367         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
8368         Moved ...
8369         * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
8370         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
8371         * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
8372         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
8373         Moved ...
8374         * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
8375         ... here.
8376         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
8377         Identical file removed.
8378         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
8379         Moved ...
8380         * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
8381         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
8382         Identical file removed.
8383         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
8384         * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
8385         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
8386         Moved ...
8387         * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
8388         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
8389         Identical file removed.
8390         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
8391         * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
8392         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
8393         Identical file removed.
8394         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
8395         * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
8396         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
8397         Identical file removed.
8398         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
8399         * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
8400         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
8401         Identical file removed.
8402         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
8403         Moved ...
8404         * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
8405         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
8406         Identical file removed.
8407         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
8408         Moved ...
8409         * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
8410         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
8411         * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
8412         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
8413         Identical file removed.
8414         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
8415         Moved ...
8416         * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
8417         ... here.
8418         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
8419         Identical file removed.
8420         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
8421         Moved ...
8422         * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
8423         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
8424         Identical file removed.
8425         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
8426         Moved ...
8427         * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
8428         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
8429         * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
8430         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
8431         * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
8432         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
8433         Moved ...
8434         * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
8435         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
8436         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
8438         * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
8439         SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
8440         * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
8441         * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
8442         * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
8444 2014-06-27  Arjun Shankar  <arjun.is@lostca.se>
8446         [BZ #17092]
8447         * nscd/nscd.c (monitor_child): Return exit status of child
8448         instead of return value from wait syscall.
8450 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
8452         * configure.ac (libc_commonpagesize): Remove variable.
8453         (libc_relro_required): Likewise.
8454         (libc_cv_z_relro): Remove configure test.
8455         * configure: Regenerated.
8456         * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
8457         variable.
8458         (libc_relro_required): Likewise.
8459         * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
8460         (libc_relro_required): Likewise.
8461         * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
8462         (libc_relro_required): Likewise.
8463         * sysdeps/arm/preconfigure: Regenerated.
8464         * sysdeps/ia64/preconfigure: Remove file.
8465         * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
8466         variable.
8467         (libc_relro_required): Likewise.
8469         [BZ #16561]
8470         [BZ #16562]
8471         * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
8472         (__ieee754_yn): Set FE_TONEAREST mode internally and then
8473         recompute overflowing results in original rounding mode.
8474         * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
8475         (__ieee754_ynf): Set FE_TONEAREST mode internally and then
8476         recompute overflowing results in original rounding mode.
8477         * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
8478         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
8479         recompute overflowing results in original rounding mode.
8480         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
8481         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
8482         recompute overflowing results in original rounding mode.
8483         * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
8484         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
8485         recompute overflowing results in original rounding mode.
8486         * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
8487         (libc_feholdsetround_ctx): New macro.
8488         * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
8489         * sysdeps/i386/fpu/libm-test-ulps: Update.
8490         * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
8492 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
8494         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
8495         [__PIC__] (PSEUDO): Use name of _nocancel entry point in
8496         corresponding .cpsetup call.
8498 2014-06-26  Roland McGrath  <roland@hack.frob.com>
8500         * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
8501         * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
8502         * sysdeps/arm/Makefile [$(subdir) = csu]
8503         (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
8504         (static-only-routines): Add aeabi_read_tp here.
8505         (shared-only-routines): Add libc-aeabi_read_tp here.
8506         (CFLAGS-libc-start.c): Add -fexceptions here.
8507         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
8508         (sysdep_routines, static-only-routines, shared-only-routines):
8509         Don't add to these here.
8510         (CFLAGS-libc-start.c): Likewise.
8512         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
8513         * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
8514         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
8515         * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
8516         * sysdeps/arm/Makefile [$(subdir) = rt]
8517         (librt-sysdep_routines, librt-shared-only-routines):
8518         Append rt-aeabi_unwind_cpp_pr1 here.
8519         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
8520         (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
8521         * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
8522         (libpthread-sysdep_routines, libpthread-shared-only-routines):
8523         Append nptl-aeabi_unwind_cpp_pr1 here.
8524         (tests): Filter out tst-cleanupx4 here.
8525         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
8526         (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
8527         Don't do those here.
8529 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
8531         * scripts/list-sources.sh: Do not handle ports specially.
8533 2014-06-26  Roland McGrath  <roland@hack.frob.com>
8535         * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
8536         * sysdeps/arm/feupdateenv.c: Likewise.
8538         * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
8540 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
8542         * manual/texinfo.tex: Update to version 2014-05-05.10 with
8543         trailing whitespace removed.
8544         * scripts/config.guess: Update to version 2014-03-23.
8545         * scripts/config.sub: Update to version 2014-05-01
8546         * scripts/install-sh: Update to version 2013-12-25.23.
8547         * scripts/move-if-change: Update from gnulib.
8549 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
8551         * debug/memmove_chk.c: Remove pagecopy.h include.
8553 2014-06-26  Paul Eggert  <eggert@cs.ucla.edu>
8555         * time/mktime.c (leapyear): Remove inline keyword.  The code is now
8556         identical to gnulib mktime.
8558 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
8560         * configure.ac: Do not test for machine being rs6000.  Do not test
8561         for powerpc*-*soft.
8562         * configure: Regenerated.
8564         * configure.ac (libc_cv_asm_cfi_directives): Remove configure
8565         test.
8566         * configure: Regenerated.
8567         * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
8568         * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
8569         Remove configure test.
8570         * sysdeps/arm/configure: Regenerated.
8571         * sysdeps/nptl/configure.ac: Do not check
8572         libc_cv_asm_cfi_directives.
8573         * sysdeps/nptl/configure: Regenerated.
8574         * sysdeps/x86_64/nptl/configure.ac: Remove file.
8575         * sysdeps/x86_64/nptl/configure: Remove generated file.
8576         * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
8577         unconditional.
8578         [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
8580 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
8582         * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
8583         * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
8584         (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
8585         it is defined.
8587         * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
8588         instead of whether it is defined.
8589         * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
8590         * sysdeps/hppa/dl-machine.h: Likewise.
8591         * sysdeps/ia64/dl-machine.h: Likewise.
8592         * sysdeps/m68k/dl-machine.h: Likewise.
8593         * sysdeps/microblaze/dl-machine.h: Likewise.
8594         * sysdeps/mips/dl-machine.: Likewise.
8595         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
8596         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
8597         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
8598         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
8599         * sysdeps/sh/dl-machine.h: Likewise.
8600         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
8601         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
8602         * sysdeps/tile/dl-machine.h: Likewise.
8603         * sysdeps/x86_64/dl-machine.h: Likewise.
8605         * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
8606         code.
8607         (verify_persistent_db): Likewise.
8609 2014-06-26  Roland McGrath  <roland@hack.frob.com>
8611         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
8612         * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
8613         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
8614         * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
8615         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
8616         Moved ...
8617         * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
8618         ... here.
8619         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
8620         * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
8621         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
8622         Identical file removed.
8623         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
8624         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
8625         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
8626         * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
8627         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
8628         * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
8629         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
8630         * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
8631         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
8632         * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
8633         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
8634         Moved ...
8635         * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
8636         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
8637         * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
8638         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
8639         * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
8640         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
8641         Moved ...
8642         * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
8643         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
8644         * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
8645         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
8646         * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
8647         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
8648         Identical file removed.
8649         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
8650         * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
8651         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
8652         * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
8653         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
8654         Moved ...
8655         * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
8656         ... here.
8657         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
8658         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
8659         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
8660         * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
8661         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
8662         * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
8663         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
8664         * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
8665         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
8666         * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
8667         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
8668         Moved ...
8669         * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
8670         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
8671         Moved ...
8672         * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
8673         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
8674         * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
8675         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
8676         Moved ...
8677         * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
8678         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
8679         * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
8681         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
8682         folded into ...
8683         * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
8684         * sysdeps/unix/sysv/linux/s390/Versions
8685         (libpthread: GLIBC_2.19): New version set.
8686         * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
8687         * sysdeps/unix/sysv/linux/s390/s390-64/Versions
8688         (librt: GLIBC_2.3.3): New version set.
8689         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
8690         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
8691         * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
8692         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
8693         * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
8694         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
8695         * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
8696         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
8697         * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
8698         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
8699         * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
8700         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
8701         * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
8702         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
8703         * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
8704         * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
8705         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
8706         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
8707         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
8708         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
8709         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
8710         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
8711         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
8712         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
8713         * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
8714         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
8715         * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
8716         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
8717         * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
8718         * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
8719         * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
8720         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
8721         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
8722         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
8723         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
8724         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
8725         * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
8726         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
8727         * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
8728         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
8729         * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
8730         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
8731         * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
8732         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
8733         * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
8735         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
8736         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
8737         (__libc_vfork): Define the function under this name.
8738         [!NOT_IN_libc] (__vfork): Make this an alias.
8739         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
8740         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
8741         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
8742         (__libc_vfork): Define the function under this name.
8743         [!NOT_IN_libc] (__vfork): Make this an alias.
8744         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
8745         * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
8746         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
8747         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
8748         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
8749         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
8751         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
8752         code that was previously under [RESET_PID].
8753         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
8754         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
8755         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
8757         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
8758         * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
8759         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
8760         * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
8761         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
8762         * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
8763         * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
8764         * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
8765         * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
8766         * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
8767         * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
8768         Moved ...
8769         * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
8770         * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
8771         * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
8772         * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
8773         * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
8774         * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
8775         * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
8776         * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
8777         * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
8778         * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
8779         * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
8780         * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
8781         * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
8782         * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
8783         * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
8784         * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
8785         * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
8786         * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
8787         * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
8788         * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
8789         * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
8790         * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
8791         * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
8792         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
8793         * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
8794         * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
8795         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
8796         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
8797         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
8799 2014-06-25  Roland McGrath  <roland@hack.frob.com>
8801         * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
8802         that was previously under [RESET_PID].
8803         * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
8805 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
8807         * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
8808         not undefine and redefine.
8809         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
8810         [O_CLOEXEC]: Make code unconditional.
8811         (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
8812         * sysdeps/unix/sysv/linux/shm_open.c: Do not include
8813         <kernel-features.h>.
8814         [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
8815         conditional variable definition.
8816         (shm_open) [O_CLOEXEC]: Make code unconditional.
8817         (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
8818         code.
8820         * configure.ac (USE_REGPARMS): Don't define here.
8821         * configure: Regenerated.
8822         * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
8823         * sysdeps/i386/configure: Regenerated.
8825         * nptl/createthread.c: Don't include kernel-features.h.
8826         * nptl/pthread_cancel.c: Likewise.
8827         * nptl/pthread_condattr_setclock.c: Likewise.
8828         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
8829         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
8830         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
8831         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
8832         * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
8833         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
8834         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
8835         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
8836         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
8837         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
8838         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
8839         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
8840         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
8841         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
8842         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
8843         * nscd/gai.c: Likewise.
8844         * nss/nss_db/db-open.c: Likewise.
8845         * sysdeps/generic/ldsodefs.h: Likewise.
8846         * sysdeps/sh/nptl/tls.h: Likewise.
8847         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
8848         * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
8849         * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
8850         * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
8851         * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
8852         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
8853         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
8854         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
8855         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
8856         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
8857         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
8858         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
8859         * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
8860         * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
8861         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
8862         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
8863         * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
8864         * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
8865         * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
8866         * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
8867         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
8868         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
8869         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
8870         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
8871         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
8872         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
8873         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
8874         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
8875         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
8876         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
8877         * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
8878         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
8879         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
8880         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
8881         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
8882         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
8883         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
8884         * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
8885         * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
8886         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
8887         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
8888         * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
8889         * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
8890         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
8891         * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
8892         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
8893         * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
8894         * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
8895         * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
8896         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
8897         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
8898         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
8899         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
8900         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
8901         * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
8902         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
8903         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
8904         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
8905         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
8906         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
8907         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
8908         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
8909         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
8910         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
8911         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
8912         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
8913         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
8914         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
8915         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
8916         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
8917         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
8918         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
8919         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
8920         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
8921         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
8922         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
8923         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
8924         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
8925         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
8926         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
8927         * sysdeps/unix/sysv/linux/pread.c: Likewise.
8928         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
8929         * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
8930         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
8931         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
8932         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
8933         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
8934         * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
8935         * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
8936         * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
8937         * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
8938         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
8939         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
8940         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
8941         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
8942         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
8943         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
8944         * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
8945         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
8946         * sysdeps/unix/sysv/linux/system.c: Likewise.
8947         * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
8948         * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
8949         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
8950         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
8951         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
8952         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
8953         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
8955         * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
8956         * configure: Regenerated.
8957         * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
8959         * configure.ac (base_machine): Do not set specially for particular
8960         machines here.
8961         * configure: Regenerated.
8962         * sysdeps/powerpc/preconfigure: Move machine and base_machine
8963         settings from configure.ac.
8964         * sysdeps/i386/preconfigure: New file.
8965         * sysdeps/s390/preconfigure: Likewise.
8966         * sysdeps/sh/preconfigure: Likewise.
8967         * sysdeps/sparc/preconfigure: Likewise.
8969 2014-06-25  Roland McGrath  <roland@hack.frob.com>
8971         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
8972         * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
8973         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
8974         * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
8975         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
8976         * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
8977         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
8978         * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
8979         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
8980         * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
8981         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
8982         * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
8983         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
8984         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
8985         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
8986         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
8987         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
8988         * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
8989         * sysdeps/sparc/sparc64/Makefile: ... appended here.
8991         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
8992         * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
8993         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
8994         * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
8995         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
8996         * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
8997         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
8998         * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
8999         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
9000         * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
9001         * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
9002         * sysdeps/sparc/sparc32/sem_post.c: ... here.
9003         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
9004         * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
9005         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
9006         * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
9007         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
9008         * sysdeps/sparc/sparc32/sem_wait.c: ... here.
9009         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
9010         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
9011         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
9012         * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
9013         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
9014         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
9015         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
9016         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
9017         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
9018         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
9019         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
9020         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
9021         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
9022         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
9023         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
9024         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
9025         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
9026         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
9027         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
9028         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
9030         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
9031         * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
9032         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
9033         * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
9034         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
9035         Moved ...
9036         * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
9037         ... here.
9038         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
9039         * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
9040         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
9041         * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
9042         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
9043         Moved ...
9044         * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
9045         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
9046         * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
9047         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
9048         * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
9049         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
9050         * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
9051         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
9052         Moved ...
9053         * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
9054         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
9055         Moved ...
9056         * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
9057         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
9058         * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
9059         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
9060         Moved ...
9061         * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
9062         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
9063         * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
9064         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
9065         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
9066         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
9067         * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
9068         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
9069         * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
9070         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
9071         Moved ...
9072         * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
9073         ... here.
9074         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
9075         * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
9076         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
9077         * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
9078         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
9079         Moved ...
9080         * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
9081         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
9082         * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
9083         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
9084         * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
9085         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
9086         * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
9087         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
9088         Moved ...
9089         * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
9090         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
9091         Moved ...
9092         * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
9093         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
9094         * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
9095         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
9096         Moved ...
9097         * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
9098         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
9099         * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
9100         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
9101         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
9103 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
9105         * timezone/checktab.awk: Update from tzcode 2014e.
9106         * timezone/private.h: Likewise.
9107         * timezone/tzfile.h: Likewise.
9108         * timezone/zdump.c: Likewise.
9109         * timezone/zic.c: Likewise.
9111         * sysdeps/unix/sysv/linux/kernel-features.h
9112         (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
9113         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
9114         [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
9115         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
9116         Remove conditional code.
9118 2014-06-25  Will Newton  <will.newton@linaro.org>
9120         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
9121         (_dl_arm_cap_flags): Add HWCAP2 values.
9122         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
9123         (_DL_HWCAP_COUNT): Increase to 37.
9124         (_DL_HWCAP_LAST): New define.
9125         (_DL_HWCAP2_LAST): New define.
9126         (_dl_procinfo): Add support for printing
9127         AT_HWCAP2 entries.
9128         (_dl_string_hwcap): Use _dl_hwcap_string.
9130 2014-06-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9132         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
9134 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
9136         * README: Do not mention ports directory.
9138         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
9139         Remove macro.
9140         * sysdeps/unix/sysv/linux/futimes.c: Do not include
9141         <kernel-features.h>.
9142         [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
9143         conditional variable definition.
9144         (__futimes): Update comment.
9145         (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
9146         (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
9148         [BZ #16560]
9149         * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
9150         arguments close to 0.
9151         * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
9152         Likewise.
9153         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
9154         Likewise.
9155         * math/auto-libm-test-in: Add more tests of exp10.
9156         * math/auto-libm-test-out: Regenerated.
9157         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
9159         * sysdeps/unix/sysv/linux/kernel-features.h
9160         (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
9161         * sysdeps/unix/sysv/linux/readv.c: Do not include
9162         <kernel-features.h>.
9163         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
9164         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
9165         (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
9166         unconditional.
9167         (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
9168         conditional code.
9169         * sysdeps/unix/sysv/linux/writev.c: Do not include
9170         <kernel-features.h>.
9171         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
9172         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
9173         (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
9174         unconditional.
9175         (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
9176         conditional code.
9178 2014-06-25  Will Newton  <will.newton@linaro.org>
9180         * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
9181         comment changes throughout the file.  Remove checks
9182         for HAVE_*_H definitions that are not required.
9183         (__gen_tempname): Call abort if an unknown kind value is
9184         passed.
9186 2014-06-25  Andreas Schwab  <schwab@suse.de>
9188         [BZ #17086]
9189         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
9190         scalbln, scalblnf, scalblnl in libc.
9192 2014-06-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
9194         [BZ #17086]
9195         * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
9196         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
9197         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
9199 2014-06-24  Roland McGrath  <roland@hack.frob.com>
9201         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
9202         * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
9203         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
9204         * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
9205         Update #include.
9206         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
9207         * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
9208         Update #include.
9209         * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
9210         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
9211         * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
9212         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
9213         * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
9214         * sysdeps/x86/bits/pthreadtypes.h: ... here.
9215         * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
9216         * sysdeps/x86/bits/semaphore.h: ... here.
9217         * sysdeps/x86/nptl/elide.h: Moved ...
9218         * sysdeps/x86/elide.h: ... here.
9219         * sysdeps/x86_64/nptl/Implies: File removed.
9220         * sysdeps/i386/nptl/Implies: File removed.
9222 2014-06-24  Joseph Myers  <joseph@codesourcery.com>
9224         [BZ #16539]
9225         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
9226         return the argument for normal arguments with exponent below -64.
9227         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
9228         Likewise.
9229         * math/auto-libm-test-in: Add another test of expm1.
9230         * math/auto-libm-test-out: Regenerated.
9232         [BZ #16287]
9233         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
9234         calling __erfcl for arguments at least 16.
9235         * math/auto-libm-test-in: Add more tests of erf.
9236         * math/auto-libm-test-out: Regenerated.
9238         * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
9239         individual architectures.
9240         * sysdeps/unix/sysv/linux/configure: Regenerated.
9241         * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
9242         * sysdeps/unix/sysv/linux/i386/configure: New generated file.
9243         * sysdeps/unix/sysv/linux/powerpc/configure.ac
9244         (ldd_rewrite_script): Define variable.
9245         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
9246         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
9247         file.
9248         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
9249         generated file.
9250         * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
9251         * sysdeps/unix/sysv/linux/s390/configure: New generated file.
9252         * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
9253         * sysdeps/unix/sysv/linux/sh/configure: New generated file.
9254         * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
9255         * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
9256         * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
9257         * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
9259 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
9261         [BZ #17084]
9262         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
9263         Rename member __data.d to __data.__elision_data.
9265 2014-06-24  Wilco  <wdijkstr@arm.com>
9267         * NEWS: Add 16918 to fixed bug list.
9269 2014-06-24  Wilco  <wdijkstr@arm.com>
9271         * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
9273 2014-06-24  Wilco  <wdijkstr@arm.com>
9275         * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
9276         * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
9277         (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
9278         (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
9279         (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
9280         * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
9281         * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
9282         Use _FPU_MASK_RM.
9284 2014-06-24  Wilco  <wdijkstr@arm.com>
9286         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
9288 2014-06-24  Wilco  <wdijkstr@arm.com>
9290         * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
9291         * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
9292         * sysdeps/arm/fesetround.c (fesetround): Remove space.
9293         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
9295 2014-06-24  Wilco  <wdijkstr@arm.com>
9297         [BZ #16918]
9298         * sysdeps/arm/feupdateenv.c (feupdateenv):
9299         Rewrite to reduce FPSCR accesses and fix return value.
9301 2014-06-24  Wilco  <wdijkstr@arm.com>
9303         * sysdeps/arm/fclrexcpt.c (feclearexcept):
9304         Optimize to avoid unnecessary FPSCR writes.
9305         * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
9306         * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
9307         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
9308         * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
9310 2014-06-24  Wilco  <wdijkstr@arm.com>
9312         * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
9313         * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
9314         * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
9315         * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
9316         Call libc_fetestexcept_vfp.
9317         * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
9318         * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
9319         __SOFTFP__ ifdef so that they can be built for softfp.
9321 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
9323         * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
9324         argument type signed char.
9326         * Makerules (check-abi): Dump diff of symlist if the test
9327         fails.
9329 2014-06-23  Roland McGrath  <roland@hack.frob.com>
9331         * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
9332         using abort.
9334         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
9335         Remove unused variable ST.
9337 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
9339         [BZ #16354]
9340         [BZ #17061]
9341         * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
9342         small arguments before calling __expm1.
9343         * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
9344         small arguments before calling __expm1f.
9345         * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
9346         small arguments before calling __expm1l.
9347         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
9348         Likewise.
9349         * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
9350         * math/auto-libm-test-in: Add more cosh tests.  Do not allow
9351         spurious underflow for some cosh tests.
9352         * math/auto-libm-test-out: Regenerated.
9353         * sysdeps/i386/fpu/libm-test-ulps: Update.
9355         [BZ #17050]
9356         * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
9357         (__ieee754_y1): Set errno if return value overflows.
9358         * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
9359         (__ieee754_y1f): Set errno if return value overflows.
9360         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
9361         (__ieee754_y1l): Set errno if return value overflows.
9362         * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
9363         (__ieee754_y1l): Set errno if return value overflows.
9364         * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
9365         * math/auto-libm-test-out: Regenerated.
9367         * math/gen-auto-libm-tests.c: Document use of
9368         ignore-zero-inf-sign.
9369         (input_flag_type): Add value flag_ignore_zero_inf_sign.
9370         (input_flags): Add ignore-zero-inf-sign.
9371         (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
9372         * math/gen-libm-test.pl (generate_testfile): Handle
9373         ignore-zero-inf-sign.
9374         * math/auto-libm-test-in: Mark some cpow tests with
9375         ignore-zero-inf-sign and some with xfail-rounding.
9376         * math/auto-libm-test-out: Regenerated.
9377         * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
9378         * sysdeps/i386/fpu/libm-test-ulps: Update.
9379         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9381         [BZ #16315]
9382         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
9383         overflowing or underflowing operations take place with sign of
9384         result.
9385         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
9386         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
9387         * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
9388         (__ieee754_pow): Recompute overflowing and underflowing results in
9389         original rounding mode.
9390         * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
9391         (__powl_helper): Allow negative argument X and scale negated value
9392         as needed.  Avoid passing value outside [-1, 1] to f2xm1.
9393         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
9394         overflowing or underflowing operations take place with sign of
9395         result.
9396         * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
9397         Include <math.h>.
9398         * math/auto-libm-test-in: Add more tests of pow.
9399         * math/auto-libm-test-out: Regenerated.
9400         * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
9401         (pow_tonearest_test_data): Remove.
9402         (pow_test_tonearest): Likewise.
9403         (pow_towardzero_test_data): Likewise.
9404         (pow_test_towardzero): Likewise.
9405         (pow_downward_test_data): Likewise.
9406         (pow_test_downward): Likewise.
9407         (pow_upward_test_data): Likewise.
9408         (pow_test_upward): Likewise.
9409         (main): Don't call removed functions.
9410         * sysdeps/i386/fpu/libm-test-ulps: Update.
9411         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9413 2014-06-23  Roland McGrath  <roland@hack.frob.com>
9415         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
9416         Moved ...
9417         * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
9418         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
9419         Moved ...
9420         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
9421         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
9422         Moved ...
9423         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
9424         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
9425         Moved ...
9426         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
9427         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
9428         File removed.
9429         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
9430         File removed.
9431         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
9432         File removed.
9433         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
9434         File removed.
9435         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
9436         File removed.
9437         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
9438         File removed.
9439         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
9440         File removed.
9441         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
9442         File removed.
9443         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
9444         File removed.
9445         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
9446         File removed.
9447         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
9448         File removed.
9449         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
9450         File removed.
9451         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
9452         Moved ...
9453         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
9454         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
9455         Moved ...
9456         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
9457         ... here.
9458         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
9459         Moved ...
9460         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
9461         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
9462         Moved ...
9463         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
9464         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
9465         Moved ...
9466         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
9467         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
9468         Moved ...
9469         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
9470         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
9471         Moved ...
9472         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
9473         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
9474         Moved ...
9475         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
9476         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
9477         Moved ...
9478         * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
9479         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
9480         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
9481         ... here.
9482         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
9483         Moved ...
9484         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
9485         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
9486         Moved ...
9487         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
9488         ... here.
9489         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
9490         Moved ...
9491         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
9492         ... here.
9493         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
9494         Moved ...
9495         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
9496         ... here.
9497         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
9498         Moved ...
9499         * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
9500         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
9501         Moved ...
9502         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
9503         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
9504         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
9505         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
9506         Moved ...
9507         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
9508         ... here.
9509         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
9510         Moved ...
9511         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
9512         ... here.
9513         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
9514         Moved ...
9515         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
9516         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
9517         Moved ...
9518         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
9519         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
9520         Moved ...
9521         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
9522         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
9523         Moved ...
9524         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
9525         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
9526         Moved ...
9527         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
9528         ... here.
9529         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
9530         Moved ...
9531         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
9532         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
9533         Moved ...
9534         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
9535         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
9536         Moved ...
9537         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
9538         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
9539         Moved ...
9540         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
9541         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
9542         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
9543         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
9544         Moved ...
9545         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
9546         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
9547         Moved ...
9548         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
9549         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
9550         Moved ...
9551         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
9552         ... here.
9553         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
9554         Moved ...
9555         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
9556         ... here.
9557         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
9558         Moved ...
9559         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
9560         ... here.
9561         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
9562         Moved ...
9563         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
9564         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
9565         Moved ...
9566         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
9567         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
9568         Moved ...
9569         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
9570         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
9571         Moved ...
9572         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
9573         ... here.
9574         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
9575         Moved ...
9576         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
9577         ... here.
9578         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
9579         Moved ...
9580         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
9581         ... here.
9582         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
9583         Moved ...
9584         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
9585         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
9586         Moved ...
9587         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
9589 2014-06-23  Will Newton  <will.newton@linaro.org>
9590             Wilco  <wdijkstr@arm.com>
9592         * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
9593         implementation.  Include get-rounding-mode.h.
9594         [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
9595         [!libc_feholdsetround_noex_ctx]: Define
9596         libc_feholdsetround_noex_ctx.
9597         [!libc_feholdsetround_noexf_ctx]: Define
9598         libc_feholdsetround_noexf_ctx.
9599         [!libc_feholdsetround_noexl_ctx]: Define
9600         libc_feholdsetround_noexl_ctx.
9601         (libc_feholdsetround_ctx): New function.
9602         (libc_feresetround_ctx): New function.
9603         (libc_feholdsetround_noex_ctx): New function.
9604         (libc_feresetround_noex_ctx): New function.
9606 2014-06-23  Roland McGrath  <roland@hack.frob.com>
9608         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
9609         * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
9610         * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
9611         * sysdeps/mips/nptl/bits/semaphore.h: ... here.
9612         * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
9613         * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
9615         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
9616         * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
9617         * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
9618         * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
9619         * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
9620         * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
9621         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
9622         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
9623         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
9624         * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
9625         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
9626         Moved ...
9627         * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
9628         ... here.
9629         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
9630         * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
9631         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
9632         * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
9633         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
9634         Moved ...
9635         * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
9636         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
9637         * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
9638         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
9639         * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
9640         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
9641         * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
9642         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
9643         Moved ...
9644         * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
9645         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
9646         Moved ...
9647         * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
9648         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
9649         * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
9650         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
9651         Moved ...
9652         * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
9653         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
9654         * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
9655         * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
9656         * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
9657         * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
9658         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
9659         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
9660         * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
9661         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
9662         Moved ...
9663         * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
9664         ... here.
9665         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
9666         * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
9667         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
9668         * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
9669         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
9670         * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
9671         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
9672         * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
9673         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
9674         * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
9675         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
9676         * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
9677         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
9678         Moved ...
9679         * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
9680         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
9681         * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
9682         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
9683         * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
9684         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
9685         Moved ...
9686         * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
9687         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
9688         * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
9689         * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
9690         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
9692         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
9693         * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
9694         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
9695         * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
9696         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
9697         * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
9698         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
9699         * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
9700         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
9701         * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
9702         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
9703         * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
9704         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
9705         * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
9706         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
9707         * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
9708         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
9709         * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
9710         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
9711         * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
9712         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
9713         * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
9714         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
9715         * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
9716         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
9717         * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
9718         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
9719         * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
9721 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
9723         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
9724         (FALLOC_FL_COLLAPSE_RANGE): New macro.
9725         [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
9726         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
9727         (IPV6_PMTUDISC_INTERFACE): Likewise.
9728         (IPV6_PMTUDISC_OMIT): Likewise.
9730 2014-06-23  Andreas Schwab  <schwab@suse.de>
9732         * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
9733         Remove unused errout label.
9735 2014-06-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9737         * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
9738         macro: hardware supports Vector Crypto instructions.
9740 2014-06-23  Will Newton  <will.newton@linaro.org>
9742         * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
9743         rather than __builtin_expect.
9745         * elf/dl-lookup.c (undefined_msg): Remove variable.
9746         (_dl_lookup_symbol_x): Replace undefined_msg with string
9747         literal.
9749         * elf/dl-lookup.c (do_lookup_unique): New function.
9750         (do_lookup_x): Move STB_GNU_UNIQUE handling code
9751         to a separate function.
9753 2014-06-23  Andreas Schwab  <schwab@suse.de>
9755         [BZ #17079]
9756         * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
9757         before reading the next line.
9759 2014-06-23  Will Newton  <will.newton@linaro.org>
9761         * test-skeleton.c (signal_handler): Use printf and %m
9762         rather than perror.  Use printf rather than fprintf to
9763         stderr.  Use puts rather than fputs to stderr.
9764         (main): Likewise.
9766 2014-06-22  Ludovic Courtès  <ludo@gnu.org>
9768         * nscd/nscd.c (thread_info_t): Remove typedef.
9769         (thread_info): Remove variable.
9771 2014-06-21  Allan McRae  <allan@archlinux.org>
9773         * NEWS: Mention CVE-2014-4043.
9775 2014-06-20  Roland McGrath  <roland@hack.frob.com>
9777         * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
9778         * nptl/smp.h: ... here.
9780         * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
9782         * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
9783         * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
9784         * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
9785         * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
9787         * nptl/allocatestack.c: Include <stack-aliasing.h>.
9788         * nptl/stack-aliasing.h: New file.
9789         * sysdeps/i386/i686/stack-aliasing.h: New file.
9790         * sysdeps/i386/i686/nptl/Makefile: File removed.
9791         * sysdeps/x86_64/stack-aliasing.h: New file.
9792         * sysdeps/x86_64/nptl/Makefile
9793         (CFLAGS-pthread_create.c): Variable removed.
9795         * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
9796         * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
9797         old file.
9798         * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
9799         * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
9800         old file.
9802 2014-06-21  Joseph Myers  <joseph@codesourcery.com>
9804         * sysdeps/unix/sysv/linux/arm/kernel-features.h
9805         (__ASSUME_SIGFRAME_V2): Remove macro.
9806         * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
9807         [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
9808         (__default_sa_restorer_v2): Rename to __default_sa_restorer.
9809         (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
9810         * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
9811         Declare as function.  Remove conditional macro definitions.
9812         (__default_rt_sa_restorer): Likewise.
9813         (__default_sa_restorer_v1): Remove declaration.
9814         (__default_sa_restorer_v2): Likewise.
9815         (__default_rt_sa_restorer_v1): Likewise.
9816         (__default_rt_sa_restorer_v2): Likewise.
9817         * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
9818         __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
9819         __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
9821 2014-06-20  Roland McGrath  <roland@hack.frob.com>
9823         * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
9824         (libpthread-routines): Add sysdep.
9825         * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
9826         * sysdeps/unix/sysv/linux/sparc/Versions
9827         (libpthread: GLIBC_2.3.3): New version set.
9828         * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
9829         * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
9830         * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
9831         * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
9832         * sysdeps/sparc/nptl/internaltypes.h: ... here.  Use #include_next.
9833         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
9834         Moved ...
9835         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
9836         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
9837         * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
9838         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
9839         * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
9840         * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
9841         * sysdeps/sparc/nptl/sem_init.c: ... here.
9842         * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
9843         * sysdeps/sparc/nptl/sem_post.c: ... here.
9844         * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
9845         * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
9846         * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
9847         * sysdeps/sparc/nptl/sem_wait.c: ... here.
9848         * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
9849         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
9850         * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
9851         (libpthread-routines): Add cpu_relax.
9852         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
9853         File removed.
9854         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
9855         (librt: GLIBC_2.3.3): New version set.
9856         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
9857         * sysdeps/sparc/sparc64/nptl/Makefile: New file.
9858         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
9859         (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
9860         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
9861         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
9862         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
9863         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
9864         Moved ...
9865         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
9866         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
9867         * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
9868         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
9869         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
9870         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
9871         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
9872         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
9873         * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
9874         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
9875         Moved ...
9876         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
9877         Update #include.
9878         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
9879         Moved ...
9880         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
9881         Update #include.
9882         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
9883         Moved ...
9884         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
9885         Update #include.
9886         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
9887         Moved ...
9888         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
9889         Update #include.
9890         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
9891         Moved ...
9892         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
9893         Update #include.
9894         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
9895         Moved ...
9896         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
9897         Update #include.
9898         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
9899         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
9900         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
9901         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
9902         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
9903         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
9904         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
9905         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
9906         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
9907         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
9908         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
9909         Moved ...
9910         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
9911         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
9912         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
9913         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
9914         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
9916 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
9918         * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
9919         * nptl/pthread_rwlock_timedrdlock.c: Likewise.
9920         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
9921         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
9922         * nscd/nscd.c: Likewise.
9923         * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
9924         * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
9925         * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
9926         * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
9928         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
9929         <kernel-features.h>.
9930         (init_mq_netlink): Remove conditional have_sock_cloexec
9931         definitions.  Remove code conditional on have_sock_cloexec < 0.
9932         (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
9933         (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
9934         * sysdeps/unix/sysv/linux/opensock.c: Do not include
9935         <kernel-features.h>.
9936         (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
9937         (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
9939 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
9941         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
9942         Add tests for memset_chk and memset.
9944         * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
9945         with AVX2_Usable.
9947 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
9949         [BZ #16046]
9950         * elf/tst-dl-iter-static.c: New file.
9951         * elf/Makefile (tests-static): Add tst-dl-iter-static.
9953         * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
9954         error.
9956 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
9958         * sysdeps/unix/sysv/linux/kernel-features.h
9959         (__ASSUME_F_GETOWN_EX): Remove macro.
9960         * sysdeps/unix/sysv/linux/fcntl.c: Do not include
9961         <kernel-features.h>.
9962         (miss_F_GETOWN_EX): Remove variable or macro.
9963         (do_fcntl): Do not check miss_F_GETOWN_EX.
9964         (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
9966         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
9967         Remove macro.
9968         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
9969         [!__ASSUME_AT_RANDOM]: Remove conditional code.
9970         (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
9972         * sysdeps/unix/sysv/linux/kernel-features.h
9973         (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
9974         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
9975         [ADJ_OFFSET_SS_READ]: Make code unconditional.
9976         (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
9978 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
9980         [BZ #17075]
9981         * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
9982         Fix calculation of the symbol's value.
9983         * sysdeps/arm/tst-armtlsdescloc.c: New file.
9984         * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
9985         * sysdeps/arm/tst-armtlsdescextnow.c: New file.
9986         * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
9987         * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
9988         * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
9989         * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
9990         `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
9991         (modules-names): Add `tst-armtlsdescmod',
9992         `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
9993         (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
9994         (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
9995         (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
9996         (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
9997         (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
9998         (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
9999         ($(objpfx)tst-armtlsdescloc): New dependency.
10000         ($(objpfx)tst-armtlsdescextnow): Likewise.
10001         ($(objpfx)tst-armtlsdescextlazy): Likewise.
10002         * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
10003         TLS scheme support.
10004         * sysdeps/arm/configure: Regenerate.
10006 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
10008         * include/fcntl.h (__atfct_seterrno): Remove prototype.
10009         (__atfct_seterrno_2): Likewise.
10010         * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
10011         <kernel-features.h>.
10012         (__ASSUME_ATFCTS): Do not undefine and redefine.
10013         * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
10014         (__have_atfcts): Remove conditional definition.
10015         (__fxstatat([__NR_fstatat64]: Make code unconditional.
10016         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
10017         unreachable if [__ASSUME_ATFCTS].
10018         * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
10019         not undefine and redefine.
10020         * sysdeps/unix/sysv/linux/faccessat.c: Do not include
10021         <kernel-features.h>.
10022         (faccessat) [__NR_faccessat]: Make code unconditional.
10023         (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
10024         * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
10025         <kernel-features.h>.
10026         (fchmodat) [__NR_fchmodat]: Make code unconditional.
10027         (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
10028         * sysdeps/unix/sysv/linux/fchownat.c: Do not include
10029         <kernel-features.h>.
10030         (fchownat) [__NR_fchownat]: Make code unconditional.
10031         (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
10032         * sysdeps/unix/sysv/linux/futimesat.c: Do not include
10033         <kernel-features.h>.
10034         (futimesat) [__NR_futimesat]: Make code unconditional.
10035         (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
10036         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
10037         <kernel-features.h>.
10038         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
10039         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
10040         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
10041         <kernel-features.h>.
10042         (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
10043         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
10044         * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
10045         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
10046         <kernel-features.h>.
10047         (__fxstatat) [__NR_fstatat64]: Make code unconditional.
10048         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
10049         * sysdeps/unix/sysv/linux/linkat.c: Do not include
10050         <kernel-features.h>.
10051         (linkat) [__NR_linkat]: Make code unconditional.
10052         (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
10053         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
10054         * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
10055         <kernel-features.h>.
10056         (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
10057         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
10058         * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
10059         <kernel-features.h>.
10060         (mkdirat) [__NR_mkdirat]: Make code unconditional.
10061         (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
10062         * sysdeps/unix/sysv/linux/openat.c: Do not include
10063         <kernel-features.h>.
10064         [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
10065         [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
10066         (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
10067         (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
10068         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
10069         * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
10070         <kernel-features.h>.
10071         (readlinkat) [__NR_readlinkat]: Make code unconditional.
10072         (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.  Return
10073         result of INLINE_SYSCALL directly, not via int variable.
10074         * sysdeps/unix/sysv/linux/renameat.c: Do not include
10075         <kernel-features.h>.
10076         [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
10077         (renameat) [__NR_renameat]: Make code unconditional.
10078         (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
10079         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
10080         * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
10081         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
10082         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
10083         (__ASSUME_ATFCTS): Do not undefine and redefine.
10084         * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
10085         <kernel-features.h>.
10086         (symlinkat) [__NR_symlinkat]: Make code unconditional.
10087         (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
10088         * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
10089         <kernel-features.h>.
10090         (unlinkat) [__NR_unlinkat]: Make code unconditional.
10091         (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
10092         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
10093         (__ASSUME_ATFCTS): Do not undefine and redefine.
10094         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
10095         <kernel-features.h>.
10096         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
10097         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
10098         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
10099         <kernel-features.h>.
10100         (__xmknodat) [__NR_mknodat]: Make code unconditional.
10101         (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
10103 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
10105         * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
10107 2014-06-20  Andreas Schwab  <schwab@linux-m68k.org>
10109         [BZ #17069]
10110         * posix/regcomp.c (parse_reg_exp): Deallocate partially
10111         constructed tree before returning error.
10112         * posix/bug-regexp36.c: Expand test case.
10114 2014-06-20  Stefan Liebler  <stli@linux.vnet.ibm.com>
10116         [BZ #6803]
10117         * math/libm-test.inc (scalbln_test_date):
10118         Add errno expectations.
10119         * math/w_scalblnf.c: New File.
10120         Add wrapper which checks for setting errno to ERANGE.
10121         Add weak_alias for corresponding scalbln function.
10122         * math/w_scalbln.c: Likewise.
10123         * math/w_scalblnl.c: Likewise.
10124         * math/Makefile (libm-calls): Add w_scalbln.
10125         * sysdeps/ieee754/flt-32/s_scalblnf.c:
10126         Remove weak_alias for corresponding scalbln function.
10127         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
10128         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
10129         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
10130         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
10131         * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
10132         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
10133         * sysdeps/i386/fpu/s_scalbn.S: Likewise.
10134         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
10135         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
10136         * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
10137         Remove long_double_symbol for scalblnl function in libm, libc.
10138         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
10139         Add wrapper which checks for setting errno to ERANGE.
10140         Add long_double_symbol for scalblnl function in libm, libc.
10141         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
10142         Remove long_double_symbol for scalblnl in libm.
10143         * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
10144         Add wrapper which checks for setting errno to ERANGE.
10145         Add long_double_symbol for scalblnl function in libm.
10146         * sysdeps/ia64/fpu/w_scalblnf.c: New File.
10147         Do not use wrapper because of own implementation.
10149 2014-06-19  H.J. Lu  <hongjiu.lu@intel.com>
10151         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
10152         3 bytes for __pad1 for x32.
10153         (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
10155 2014-06-19  Ling Ma  <ling.ml@alibaba-inc.com>
10156             H.J. Lu  <hongjiu.lu@intel.com>
10158         * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
10159         * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
10160         * sysdeps/x86_64/multiarch/memset.S: Likewise.
10161         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
10162         * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
10164 2014-06-19  Andreas Schwab  <schwab@linux-m68k.org>
10166         [BZ #17069]
10167         * posix/regcomp.c (parse_expression): Deallocate partially
10168         constructed tree before returning error.
10169         * posix/Makefile.c (tests): Add bug-regex36.
10170         (generated): Add bug-regex36.mtrace.
10171         (tests-special): Add $(objpfx)bug-regex36-mem.out
10172         (bug-regex36-ENV): New variable.
10173         ($(objpfx)bug-regex36-mem.out): New rule.
10174         * posix/bug-regex36.c: New file.
10176 2014-06-19  Will Newton  <will.newton@linaro.org>
10178         * malloc/malloc.c (systrim): If extra is zero then return
10179         early.
10181 2014-06-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
10183         * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
10185 2014-06-19  Richard Earnshaw  <rearnsha@arm.com>
10187         * sysdeps/aarch64/strchr.S: New file.
10189 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
10191         [BZ #17022]
10192         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
10193         from arguments -2 or below.
10194         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
10195         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
10197 2014-06-18  Andreas Schwab  <schwab@suse.de>
10199         [BZ #17062]
10200         * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
10201         of a bracket expr not to run off the end of the string.
10202         * posix/Makefile (tests): Add tst-fnmatch3.
10203         * posix/tst-fnmatch3.c: New file.
10205 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
10207         * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
10208         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
10209         [$(cross-compiling) = no]: Likewise.
10210         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
10211         [$(cross-compiling) = no]: Likewise.
10213 2014-16-17  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
10215         [BZ #17031]
10216         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
10217         double, adjusted for any remainder from the high double.
10218         * math/libm-test.inc (nearbyint): Add tests.
10219         (rint): Likewise.
10221 2014-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10223         * nptl/sysdeps/powerpc/Makefile: Moved ...
10224         * sysdeps/powerpc/nptl/Makefile: ... here.
10225         * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
10226         * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
10227         * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
10228         * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
10229         * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
10230         * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
10231         * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
10232         * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
10233         * nptl/sysdeps/powerpc/tls.h: Moved ...
10234         * sysdeps/powerpc/nptl/tls.h: ... here.
10236 2014-06-16  Joseph Myers  <joseph@codesourcery.com>
10238         [BZ #16681]
10239         * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
10240         * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
10241         * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
10242         * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
10243         * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
10244         * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
10245         * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
10246         * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
10247         * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
10249 2014-06-17  Andreas Schwab  <schwab@linux-m68k.org>
10251         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
10253 2014-06-16  Andreas Schwab  <schwab@linux-m68k.org>
10255         * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
10256         defined operator.
10258         * scripts/cross-test-ssh.sh (timeoutfactor): Default to
10259         $TIMEOUTFACTOR.
10261 2014-06-16  Florian Weimer  <fweimer@redhat.com>
10263         [BZ #17058]
10264         * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
10265         non-executed part of the test.
10267 2014-06-16  Andreas Schwab  <schwab@suse.de>
10269         * string/bits/string2.h (strdup, strndup): Update feature guard.
10271 2014-06-14  David S. Miller  <davem@davemloft.net>
10273         * sysdeps/sparc/fpu/libm-test-ulps: Update.
10275 2014-06-14  Andreas Schwab  <schwab@linux-m68k.org>
10277         * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
10278         that was previously under [RESET_PID].
10279         * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
10281         * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
10282         * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
10283         * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
10284         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10285         (__libc_vfork): New strong alias.
10286         * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
10288 2014-06-14 Andi Kleen  <ak@linux.intel.com>
10290         * sysdeps/generic/elide.h: New file.
10292 2014-06-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
10294         * Makefile (installed-headers): Adjust path of pthread.h header.
10296 2014-06-13  Roland McGrath  <roland@hack.frob.com>
10298         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
10299         * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
10300         * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
10301         * sysdeps/s390/nptl/bits/semaphore.h: ... here.
10303         * nptl/sysdeps/s390/Makefile: Moved ...
10304         * sysdeps/s390/nptl/Makefile: ... here.
10305         * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
10306         * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
10307         * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
10308         * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
10309         * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
10310         * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
10311         * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
10312         * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
10313         * nptl/sysdeps/s390/pthreaddef.h: Moved ...
10314         * sysdeps/s390/nptl/pthreaddef.h: ... here.
10315         * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
10316         * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
10317         * nptl/sysdeps/s390/tls.h: Moved ...
10318         * sysdeps/s390/nptl/tls.h: ... here.
10320         * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
10321         * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
10323 2014-06-13  David S. Miller  <davem@davemloft.net>
10325         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
10326         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
10327         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
10328         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
10329         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
10330         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
10331         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
10332         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
10333         * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
10334         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
10335         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
10336         Remove RESET_PID cpp guards.
10337         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
10338         Remove RESET_PID cpp guards.
10339         * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
10341 2014-06-13  Andreas Schwab  <schwab@linux-m68k.org>
10343         * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
10344         __sp to uintptr_t.
10346 2014-06-13  Andi Kleen  <ak@linux.intel.com>
10348         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
10349         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
10350         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
10351         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
10352         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
10353         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
10354         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
10355         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
10356         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
10357         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
10358         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
10359         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
10360         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
10361         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
10362         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
10363         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
10364         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
10365         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
10366         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
10367         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
10369         * nptl/pthread_rwlock_rdlock.c: Include elide.h.
10370         (pthread_rwlock_rdlock): Add elision.
10371         * nptl/pthread_rwlock_wrlock.c: Include elide.h.
10372         (pthread_rwlock_wrlock): Add elision.
10373         * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
10374         (pthread_rwlock_trywrlock): Add elision.
10375         * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
10376         (pthread_rwlock_tryrdlock): Add elision.
10377         * nptl/pthread_rwlock_unlock.c: Include elide.h.
10378         (pthread_rwlock_tryrdlock): Add elision unlock.
10379         * nptl/sysdeps/pthread/pthread.h:
10380         (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
10381         (PTHREAD_RWLOCK_INITIALIZER,
10382         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
10383         Handle new elision field.
10384         * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
10385         * sysdeps/arm/nptl/bits/pthreadtypes.h
10386         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10387         * sysdeps/sh/nptl/bits/pthreadtypes.h
10388         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10389         * sysdeps/tile/nptl/bits/pthreadtypes.h
10390         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10391         * sysdeps/a/nptl/bits/pthreadtypes.h
10392         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10393         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
10394         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10395         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
10396         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10397         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
10398         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10399         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
10400         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10401         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
10402         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10403         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
10404         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10405         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
10406         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10407         * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
10408         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10409         * sysdeps/unix/sysv/linux/x86/elision-conf.c:
10410         (elision_init): Set try_xbegin to zero when no RTM.
10411         * sysdeps/x86/nptl/bits/pthreadtypes.h
10412         (pthread_rwlock_t): Change __pad1 to __rwelision.
10413         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10415 2014-06-13  Andi Kleen  <ak@linux.intel.com>
10417         * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
10418         Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
10419         * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
10420         Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
10422 2014-06-13  Meador Inge  <meadori@codesourcery.com>
10424         [BZ #16996]
10425         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
10426         that the cached result has been set before returning it.
10428 2014-06-12  Roland McGrath  <roland@hack.frob.com>
10430         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
10431         * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
10432         * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
10433         * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
10434         * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
10435         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
10437         * nptl/sysdeps/sparc/Makefile: Moved ...
10438         * sysdeps/sparc/nptl/Makefile: ... here.
10439         * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
10440         * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
10441         * nptl/sysdeps/sparc/tls.h: Moved ...
10442         * sysdeps/sparc/nptl/tls.h: ... here.
10443         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
10444         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
10445         * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
10446         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
10447         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
10448         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
10449         * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
10450         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
10451         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
10452         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
10453         * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
10454         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
10455         * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
10456         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
10457         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
10458         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
10459         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
10460         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
10461         Update #include.
10462         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
10463         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
10464         Update #include.
10465         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
10466         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
10467         Update #include.
10468         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
10469         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
10470         Update #include.
10472         * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
10474         * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
10475         * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
10477         * sysdeps/pthread/posix-timer.h: Include <list.h>.
10478         (struct list_links): Type removed.
10479         (struct thread_node, struct timer_node): Replace struct list_links
10480         with struct list_head.
10481         (list_unlink_ip): Likewise.
10482         * sysdeps/pthread/timer_routines.c
10483         (timer_free_list, thread_free_list, thread_active_list): Likewise.
10484         (list_append, list_insbefore): Likewise.
10485         (list_init): Function removed.
10486         (thread_init, init_module): Use INIT_LIST_HEAD instead.
10487         * sysdeps/nptl/Makefile: Move tst-timer bits to ...
10488         * sysdeps/pthread/Makefile: ... here, new file.
10490         * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
10491         * sysdeps/nptl/Implies: ... here.
10492         * sysdeps/unix/sysv/linux/Implies: Add nptl.
10493         * nptl/sysdeps/pthread/list.h: Moved ...
10494         * include/list.h: ... here.
10495         * nptl/sysdeps/pthread/createthread.c: Moved ...
10496         * nptl/createthread.c: ... here.
10497         * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
10498         * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
10499         * nptl/pt-longjmp.c: ... here.
10500         * nptl/sysdeps/pthread/Makefile: Moved ...
10501         * sysdeps/nptl/Makefile: ... here.
10502         * nptl/sysdeps/pthread/Subdirs: Moved ...
10503         * sysdeps/nptl/Subdirs: ... here.
10504         * nptl/sysdeps/pthread/aio_misc.h: Moved ...
10505         * sysdeps/nptl/aio_misc.h: ... here.
10506         * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
10507         * sysdeps/nptl/bits/libc-lock.h: ... here.
10508         * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
10509         * sysdeps/nptl/bits/libc-lockP.h: ... here.
10510         * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
10511         * sysdeps/nptl/bits/stdio-lock.h: ... here.
10512         * nptl/sysdeps/pthread/configure: Moved ...
10513         * sysdeps/nptl/configure: ... here.
10514         * nptl/sysdeps/pthread/configure.ac: Moved ...
10515         * sysdeps/nptl/configure.ac: ... here.
10516         * nptl/sysdeps/pthread/gai_misc.h: Moved ...
10517         * sysdeps/nptl/gai_misc.h: ... here.
10518         * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
10519         * sysdeps/nptl/librt-cancellation.c: ... here.
10520         * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
10521         * sysdeps/nptl/malloc-machine.h: ... here.
10522         * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
10523         * sysdeps/nptl/pthread-functions.h: ... here.
10524         * nptl/sysdeps/pthread/pthread.h: Moved ...
10525         * sysdeps/nptl/pthread.h: ... here.
10526         * nptl/sysdeps/pthread/setxid.h: Moved ...
10527         * sysdeps/nptl/setxid.h: ... here.
10528         * nptl/sysdeps/pthread/sigfillset.c: Moved ...
10529         * sysdeps/nptl/sigfillset.c: ... here.
10530         * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
10531         * sysdeps/nptl/tcb-offsets.h: ... here.
10532         * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
10533         * sysdeps/nptl/tst-mqueue8x.c: ... here.
10534         * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
10535         * sysdeps/nptl/unwind-forcedunwind.c: ... here.
10536         * nptl/sysdeps/pthread/allocalim.h: Moved ...
10537         * sysdeps/pthread/allocalim.h: ... here.
10538         * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
10539         * sysdeps/pthread/bits/sigthread.h: ... here.
10540         * nptl/sysdeps/pthread/flockfile.c: Moved ...
10541         * sysdeps/pthread/flockfile.c: ... here.
10542         * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
10543         * sysdeps/pthread/ftrylockfile.c: ... here.
10544         * nptl/sysdeps/pthread/funlockfile.c: Moved ...
10545         * sysdeps/pthread/funlockfile.c: ... here.
10546         * nptl/sysdeps/pthread/posix-timer.h: Moved ...
10547         * sysdeps/pthread/posix-timer.h: ... here.
10548         * nptl/sysdeps/pthread/timer_create.c: Moved ...
10549         * sysdeps/pthread/timer_create.c: ... here.
10550         * nptl/sysdeps/pthread/timer_delete.c: Moved ...
10551         * sysdeps/pthread/timer_delete.c: ... here.
10552         * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
10553         * sysdeps/pthread/timer_getoverr.c: ... here.
10554         * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
10555         * sysdeps/pthread/timer_gettime.c: ... here.
10556         * nptl/sysdeps/pthread/timer_routines.c: Moved ...
10557         * sysdeps/pthread/timer_routines.c: ... here.
10558         * nptl/sysdeps/pthread/timer_settime.c: Moved ...
10559         * sysdeps/pthread/timer_settime.c: ... here.
10560         * nptl/sysdeps/pthread/tst-timer.c: Moved ...
10561         * sysdeps/pthread/tst-timer.c: ... here.
10562         * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
10563         * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
10565         * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
10566         * nptl/sysdeps/pthread/sigprocmask.c: File removed.
10568         * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
10569         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
10570         * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
10571         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
10572         Update #include target.
10573         * nptl/sysdeps/i386/i686/Makefile: Moved ...
10574         * sysdeps/i386/i686/nptl/Makefile: ... here.
10575         * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
10576         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
10577         Update #include target.
10578         * nptl/sysdeps/i386/i686/tls.h: Moved ...
10579         * sysdeps/i386/i686/nptl/tls.h: ... here.  Use #include_next.
10580         * nptl/sysdeps/i386/Makefile: Moved ...
10581         * sysdeps/i386/nptl/Makefile: ... here.
10582         * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
10583         * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
10584         * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
10585         * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
10586         * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
10587         * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
10588         * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
10589         * nptl/sysdeps/i386/pthreaddef.h: Moved ...
10590         * sysdeps/i386/nptl/pthreaddef.h: ... here.
10591         * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
10592         * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
10593         * nptl/sysdeps/i386/tls.h: Moved ...
10594         * sysdeps/i386/nptl/tls.h: ... here.
10596         * sysdeps/sh/Makefile [$(subdir) = csu]
10597         (gen-as-const-headers): Add tcb-offsets.sym.
10598         * nptl/sysdeps/sh/Makefile: File removed.
10599         * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
10600         * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
10601         * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
10602         * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
10603         * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
10604         * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
10605         * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
10606         * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
10607         * nptl/sysdeps/sh/pthreaddef.h: Moved ...
10608         * sysdeps/sh/nptl/pthreaddef.h: ... here.
10609         * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
10610         * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
10611         * nptl/sysdeps/sh/tls.h: Moved ...
10612         * sysdeps/sh/nptl/tls.h: ... here.
10613         * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
10614         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
10615         * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
10616         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
10617         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
10618         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
10619         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
10620         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
10621         * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
10622         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
10623         * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
10624         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
10625         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
10626         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
10627         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
10628         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
10629         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
10630         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
10631         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
10632         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
10633         * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
10634         * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
10635         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
10636         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
10637         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
10638         Moved ...
10639         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
10640         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
10641         Moved ...
10642         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
10643         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
10644         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
10645         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
10646         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
10647         * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
10648         * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
10649         * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
10650         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
10651         * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
10652         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
10653         * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
10654         * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
10655         * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
10656         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
10657         * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
10658         * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
10659         * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
10660         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
10662 2014-06-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
10664         * posix/spawn_faction_addopen.c: Include string.h.
10666 2014-06-11  Roland McGrath  <roland@hack.frob.com>
10668         * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
10669         * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
10670         * nptl/sysdeps/x86_64/Makefile: Moved ...
10671         * sysdeps/x86_64/nptl/Makefile: ... here.
10672         * nptl/sysdeps/x86_64/configure: Moved ...
10673         * sysdeps/x86_64/nptl/configure: ... here.
10674         * nptl/sysdeps/x86_64/configure.ac: Moved ...
10675         * sysdeps/x86_64/nptl/configure.ac: ... here.
10676         * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
10677         * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
10678         * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
10679         * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
10680         * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
10681         * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
10682         * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
10683         * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
10684         * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
10685         * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
10686         * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
10687         * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
10688         * nptl/sysdeps/x86_64/tls.h: Moved ...
10689         * sysdeps/x86_64/nptl/tls.h: ... here.
10690         * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
10691         * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
10692         * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
10693         * sysdeps/x86_64/x32/nptl/tls.h: ... here.
10695         * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
10697 2014-06-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10699         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10701 2014-06-11  Joseph Myers  <joseph@codesourcery.com>
10703         * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
10704         type.
10705         [POSIX] (off_t): Likewise.
10706         * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
10707         [POSIX] (S_ISBLK): Require macro.
10708         [POSIX] (S_ISCHR): Likewise.
10709         [POSIX] (S_ISDIR): Likewise.
10710         [POSIX] (S_ISFIFO): Likewise.
10711         [POSIX] (S_ISREG): Likewise.
10712         [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
10713         optional-macro.
10714         * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
10715         type.
10716         [POSIX] (time_t): Likewise.
10717         [POSIX] (timer_t): Likewise.
10719 2014-06-11  Florian Weimer  <fweimer@redhat.com>
10721         [BZ #17048]
10722         * posix/spawn_int.h (struct __spawn_action): Make the path string
10723         non-const to support deallocation.
10724         * posix/spawn_faction_addopen.c
10725         (posix_spawn_file_actions_addopen): Make a copy of the pathname.
10726         * posix/spawn_faction_destroy.c
10727         (posix_spawn_file_actions_destroy): Adjust comment.  Deallocate
10728         path in all spawn_do_open actions.
10729         * posix/tst-spawn.c (do_test): Exercise the copy operation in
10730         posix_spawn_file_actions_addopen.
10732 2014-06-11  Chris Metcalf  <cmetcalf@tilera.com>
10734         * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
10735         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
10736         * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
10737         conditional code always true.
10738         (__libc_vfork): New alias.
10740 2014-06-11  Roland McGrath  <roland@hack.frob.com>
10742         * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10743         * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
10745         * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
10747         * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10748         * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
10750         * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
10751         * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
10753         * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10754         * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
10756 2014-06-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
10758         * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
10759         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
10760         multiarch strcmp for PPC64.
10761         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
10762         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
10763         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
10764         multiarch optimizations.
10765         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
10766         (__libc_ifunc_impl_list): Likewise.
10768 2014-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
10770         * benchtests/scripts/validate_benchout.py: New script.
10771         * benchtests/Makefile (bench-func): Call it.
10772         * benchtests/scripts/benchout.schema.json: New file.
10774 2014-06-10  Chris Metcalf  <cmetcalf@tilera.com>
10776         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
10777         * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
10778         * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
10779         * sysdeps/tile/nptl/bits/semaphore.h: ... here.
10780         * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
10781         * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
10782         * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
10783         * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
10784         * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
10785         * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
10786         * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
10787         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
10788         * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
10789         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
10790         * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
10791         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
10792         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
10793         Moved ...
10794         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
10795         ... here.
10796         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
10797         Moved ...
10798         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
10799         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
10800         Moved ...
10801         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
10802         ... here.
10803         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
10804         Moved ...
10805         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
10806         ... here.
10807         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
10808         Moved ...
10809         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
10810         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
10811         Moved ...
10812         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
10813         ... here.
10814         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
10815         Moved ...
10816         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
10817         ... here.
10818         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
10819         Moved ...
10820         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
10821         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
10822         Moved ...
10823         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
10824         ... here.
10825         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
10826         Moved ...
10827         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
10828         ... here.
10829         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
10830         Moved ...
10831         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
10832         ... here.
10833         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
10834         Moved ...
10835         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
10836         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
10837         Moved ...
10838         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
10839         ... here.
10840         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
10841         Moved ...
10842         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
10843         ... here.
10844         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
10845         Moved ...
10846         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
10847         ... here.
10848         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
10849         Moved ...
10850         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
10851         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
10852         Moved ...
10853         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
10854         ... here.
10855         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
10856         Moved ...
10857         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
10858         ... here.
10859         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
10860         Moved ...
10861         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
10862         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
10863         Moved ...
10864         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
10865         ... here.
10866         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
10867         Moved ...
10868         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
10869         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
10870         Moved ...
10871         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
10872         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
10873         Moved ...
10874         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
10875         ... here.
10876         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
10877         Moved ...
10878         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
10879         ... here.
10880         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
10881         Moved ...
10882         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
10883         ... here.
10884         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
10885         Moved ...
10886         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
10887         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
10888         Moved ...
10889         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
10890         ... here.
10891         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
10892         Moved ...
10893         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
10894         ... here.
10895         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
10896         * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
10897         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
10898         * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
10899         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
10900         Moved ...
10901         * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
10902         ... here.
10903         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
10904         * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
10905         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
10906         * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
10907         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
10908         * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
10909         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
10910         * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
10911         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
10912         * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
10913         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
10914         * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
10915         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
10916         Moved ...
10917         * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
10918         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
10919         Moved ...
10920         * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
10921         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
10922         * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
10923         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
10924         Moved ...
10925         * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
10926         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
10927         * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
10928         * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
10929         * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
10930         * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
10931         * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
10933 2014-06-10  Wilco  <wdijkstr@arm.com>
10935         * math/test-fenv-return.c: New file.
10936         * math/Makefile: Add new test test-fenv-return.
10938 2014-06-10  Joseph Myers  <joseph@codesourcery.com>
10940         [BZ #17042]
10941         * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
10942         when x - 1 is zero.
10943         * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
10944         * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
10945         * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
10946         0.0L for an argument of 1.0L.
10947         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
10948         Likewise.
10949         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
10950         value when x - 1 is zero.
10951         * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
10952         * sysdeps/i386/fpu/libm-test-ulps: Update.
10953         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10955 2014-06-09  Bernard Ogden  <bernie.ogden@linaro.org>
10957         [BZ #15119]
10958         * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
10960 2014-06-09  Roland McGrath  <roland@hack.frob.com>
10962         * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
10963         * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
10965 2014-06-09  Roland McGrath  <roland@hack.frob.com>
10967         * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10968         * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
10970         * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10971         * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
10973         * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10974         * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
10976         * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10977         * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
10979         * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
10980         if not already defined.
10981         (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
10982         * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
10983         * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
10984         (TLS_INIT_TP): Use it.
10985         (TLS_DEFINE_INIT_TP): New macro.
10986         * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
10988 2014-06-09  Joseph Myers  <joseph@codesourcery.com>
10990         * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
10991         constant.
10992         [POSIX] (IXANY): Likewise.
10993         [POSIX] (OLCUC): Likewise.
10994         [POSIX || POSIX2008] (CBAUD): Do not allow.
10995         [POSIX || POSIX2008] (DEFECHO): Likewise.
10996         [POSIX || POSIX2008] (ECHOCTL): Likewise.
10997         [POSIX || POSIX2008] (ECHOKE): Likewise.
10998         [POSIX || POSIX2008] (ECHOPRT): Likewise.
10999         [POSIX || POSIX2008] (EXTA): Likewise.
11000         [POSIX || POSIX2008] (EXTB): Likewise.
11001         [POSIX || POSIX2008] (FLUSHO): Likewise.
11002         [POSIX || POSIX2008] (LOBLK): Likewise.
11003         [POSIX || POSIX2008] (PENDIN): Likewise.
11004         [POSIX || POSIX2008] (SWTCH): Likewise.
11005         [POSIX || POSIX2008] (VDISCARD): Likewise.
11006         [POSIX || POSIX2008] (VDSUSP): Likewise.
11007         [POSIX || POSIX2008] (VLNEXT): Likewise.
11008         [POSIX || POSIX2008] (VREPRINT): Likewise.
11009         [POSIX || POSIX2008] (VSTATUS): Likewise.
11010         [POSIX || POSIX2008] (VWERASE): Likewise.
11011         (B*): Change to B[0123456789]*.
11012         * conform/data/time.h-data [POSIX || UNIX98]
11013         (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
11014         [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
11015         [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
11016         [POSIX] (tm_*): Do not allow.
11018 2014-06-07  Joseph Myers  <joseph@codesourcery.com>
11020         * Makefile (install): Don't set LANGUAGE.
11021         * Makefile.in (install): Likewise.
11022         * assert/Makefile (test-assert-ENV): Remove variable.
11023         (test-assert-perr-ENV): Likewise.
11024         * elf/Makefile (neededtest4-ENV): Likewise.
11025         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
11026         [$(cross-compiling) = no]: Don't set LANGUAGE.
11027         * io/ftwtest-sh (LANG): Remove variable.
11028         * libio/Makefile (tst-widetext-ENV): Likewise.
11029         * manual/install.texi (Running make install): Don't refer to
11030         environment settings for make install.
11031         * INSTALL: Regenerated.
11032         * nptl/tst-tls6.sh: Don't set LANG.
11033         * posix/globtest.sh (LANG): Remove variable.
11034         * string/Makefile (tester-ENV): Likewise.
11035         (inl-tester-ENV): Likewise.
11036         (noinl-tester-ENV): Likewise.
11037         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
11038         [$(cross-compiling) = no]: Don't set LANGUAGE.
11039         * timezone/Makefile (build-testdata): Use $(built-program-cmd)
11040         without explicit environment settings.
11042 2014-06-06  Roland McGrath  <roland@hack.frob.com>
11044         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
11045         * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
11046         * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
11047         * sysdeps/sh/nptl/bits/semaphore.h: ... here.
11049 2014-06-06  Chris Metcalf  <cmetcalf@tilera.com>
11051         * crypt/crypt-private.h [DOS]: Add some includes taken from the
11052         other files in the crypt directory.
11053         * crypt/crypt.c: Remove duplicate includes.
11054         * crypt/crypt-entry.c: Likewise.
11055         * crypt/crypt_util.c: Likewise.
11057 2014-06-06  Joseph Myers  <joseph@codesourcery.com>
11059         * Makeconfig (run-program-env): New variable.
11060         (run-program-prefix-before-env): Likewise.
11061         (run-program-prefix-after-env): Likewise.
11062         (run-program-prefix): Define in terms of new variables.
11063         (built-program-cmd-before-env): New variable.
11064         (built-program-cmd-after-env): Likewise.
11065         (built-program-cmd): Define in terms of new variables.
11066         (test-program-prefix-before-env): New variable.
11067         (test-program-prefix-after-env): Likewise.
11068         (test-program-prefix): Define in terms of new variables.
11069         (test-program-cmd-before-env): New variable.
11070         (test-program-cmd-after-env): Likewise.
11071         (test-program-cmd): Define in terms of new variables.
11072         * Rules (make-test-out): Use $(run-program-env).
11073         * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
11074         (help): Do not mention environment variables.  Mention
11075         --timeoutfactor option.
11076         (timeoutfactor): New variable.
11077         (blacklist_exports): Remove function.
11078         (exports): Remove variable.
11079         (command): Do not include ${exports}.
11080         * manual/install.texi (Configuring and compiling): Do not mention
11081         test wrappers preserving environment variables.  Mention that last
11082         assignment to a variable must take precedence.
11083         * INSTALL: Regenerated.
11084         * benchtests/Makefile (run-bench): Use $(run-program-env).
11085         * catgets/Makefile ($(objpfx)test1.cat): Use
11086         $(built-program-cmd-before-env), $(run-program-env) and
11087         $(built-program-cmd-after-env).
11088         ($(objpfx)test2.cat): Do not specify environment variables
11089         explicitly.
11090         ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
11091         $(run-program-env) and $(built-program-cmd-after-env).
11092         ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
11093         $(run-program-env) and $(test-program-cmd-after-env).
11094         ($(objpfx)sample.SJIS.cat): Do not specify environment variables
11095         explicitly.
11096         * catgets/test-gencat.sh: Use test_program_cmd_before_env,
11097         run_program_env and test_program_cmd_after_env arguments.
11098         * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
11099         * elf/tst-pathopt.sh: Use run_program_env argument.
11100         * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
11101         $(test-wrapper-env) and $(run-program-env).
11102         * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
11103         run_program_env arguments.
11104         * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
11105         * intl/Makefile ($(objpfx)tst-gettext.out): Use
11106         $(test-program-prefix-before-env), $(run-program-env) and
11107         $(test-program-prefix-after-env).
11108         ($(objpfx)tst-gettext2.out): Likewise.
11109         * intl/tst-gettext.sh: Use test_program_prefix_before_env,
11110         run_program_env and test_program_prefix_after_env arguments.
11111         * intl/tst-gettext2.sh: Likewise.
11112         * intl/tst-gettext4.sh: Do not set environment variables
11113         explicitly.
11114         * intl/tst-gettext6.sh: Likewise.
11115         * intl/tst-translit.sh: Likewise.
11116         * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
11117         $(test-program-prefix-before-env), $(run-program-env) and
11118         $(test-program-prefix-after-env).
11119         * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
11120         run_program_env and test_program_prefix_after_env arguments.
11121         * math/Makefile (run-regen-ulps): Use $(run-program-env).
11122         * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
11123         * nptl/tst-tls6.sh: Use run_program_env argument.  Set LANG=C
11124         explicitly with each use of ${test_wrapper_env}.
11125         * posix/Makefile ($(objpfx)wordexp-tst.out): Use
11126         $(test-program-prefix-before-env), $(run-program-env) and
11127         $(test-program-prefix-after-env).
11128         * posix/tst-getconf.sh: Do not set environment variables
11129         explicitly.
11130         * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
11131         run_program_env and test_program_prefix_after_env arguments.
11132         * stdio-common/tst-printf.sh: Do not set environment variables
11133         explicitly.
11134         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
11135         $(test-program-prefix-before-env), $(run-program-env) and
11136         $(test-program-prefix-after-env).
11137         * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
11138         run_program_env and test_program_prefix_after_env arguments.
11139         Split $test calls into $test_pre and $test.
11140         * timezone/Makefile (build-testdata): Use
11141         $(built-program-cmd-before-env), $(run-program-env) and
11142         $(built-program-cmd-after-env).
11144 2014-06-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11146         * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
11147         strlen for non SHARED builds.
11149 2014-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
11151         * nptl/allocatestack.c (check_list): Inlined function...
11152         (__reclaim_stacks): ... here.
11154 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
11156         [BZ #15698]
11157         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
11158         memory overrun.
11160 2014-06-05  Joseph Myers  <joseph@codesourcery.com>
11162         * Rules (make-test-out): Include
11163         LOCPATH=$(common-objpfx)localedata in default environment.
11164         * debug/Makefile (tst-chk1-ENV): Remove variable.
11165         (tst-chk2-ENV): Likewise.
11166         (tst-chk3-ENV): Likewise.
11167         (tst-chk4-ENV): Likewise.
11168         (tst-chk5-ENV): Likewise.
11169         (tst-chk6-ENV): Likewise.
11170         (tst-lfschk1-ENV): Likewise.
11171         (tst-lfschk2-ENV): Likewise.
11172         (tst-lfschk3-ENV): Likewise.
11173         (tst-lfschk4-ENV): Likewise.
11174         (tst-lfschk5-ENV): Likewise.
11175         (tst-lfschk6-ENV): Likewise.
11176         * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
11177         (tst-iconv7-ENV): Likewise.
11178         * intl/Makefile (LOCPATH-ENV): Likewise.
11179         (tst-codeset-ENV): Likewise.
11180         (tst-gettext3-ENV): Likewise.
11181         (tst-gettext5-ENV): Likewise.
11182         * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
11183         (tst-fopenloc-ENV): Likewise.
11184         (tst-fgetws-ENV): Remove variable.
11185         (tst-ungetwc1-ENV): Likewise.
11186         (tst-ungetwc2-ENV): Likewise.
11187         (bug-ungetwc2-ENV): Likewise.
11188         (tst-swscanf-ENV): Likewise.
11189         (bug-ftell-ENV): Likewise.
11190         (tst-fgetwc-ENV): Likewise.
11191         (tst-fseek-ENV): Likewise.
11192         (tst-ftell-partial-wide-ENV): Likewise.
11193         (tst-ftell-active-handler-ENV): Likewise.
11194         (tst-ftell-append-ENV): Likewise.
11195         * posix/Makefile (tst-fnmatch-ENV): Likewise.
11196         (tst-regexloc-ENV): Likewise.
11197         (bug-regex1-ENV): Likewise.
11198         (tst-regex-ENV): Likewise.
11199         (tst-regex2-ENV): Likewise.
11200         (bug-regex5-ENV): Likewise.
11201         (bug-regex6-ENV): Likewise.
11202         (bug-regex17-ENV): Likewise.
11203         (bug-regex18-ENV): Likewise.
11204         (bug-regex19-ENV): Likewise.
11205         (bug-regex20-ENV): Likewise.
11206         (bug-regex22-ENV): Likewise.
11207         (bug-regex23-ENV): Likewise.
11208         (bug-regex25-ENV): Likewise.
11209         (bug-regex26-ENV): Likewise.
11210         (bug-regex30-ENV): Likewise.
11211         (bug-regex32-ENV): Likewise.
11212         (bug-regex33-ENV): Likewise.
11213         (bug-regex34-ENV): Likewise.
11214         (bug-regex35-ENV): Likewise.
11215         (tst-rxspencer-ENV): Likewise.
11216         (tst-rxspencer-no-utf8-ENV): Likewise.
11217         * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
11218         (tst-sscanf-ENV): Likewise.
11219         (tst-swprintf-ENV): Likewise.
11220         (tst-swscanf-ENV): Likewise.
11221         (test-vfprintf-ENV): Likewise.
11222         (scanf13-ENV): Likewise.
11223         (bug14-ENV): Likewise.
11224         (tst-grouping-ENV): Likewise.
11225         * stdlib/Makefile (tst-strtod-ENV): Likewise.
11226         (tst-strtod3-ENV): Likewise.
11227         (tst-strtod4-ENV): Likewise.
11228         (tst-strtod5-ENV): Likewise.
11229         (testmb2-ENV): Likewise./
11230         * string/Makefile (tst-strxfrm-ENV): Likewise.
11231         (tst-strxfrm2-ENV): Likewise.
11232         (bug-strcoll1-ENV): Likewise.
11233         (test-strcasecmp-ENV): Likewise.
11234         (test-strncasecmp-ENV): Likewise.
11235         * time/Makefile (tst-strptime-ENV): Likewise.
11236         (tst-ftime_l-ENV): Likewise.
11237         * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
11238         (tst-mbrtowc-ENV): Likewise.
11239         (tst-wcrtomb-ENV): Likewise.
11240         (tst-mbrtowc2-ENV): Likewise.
11241         (tst-c16c32-1-ENV): Likewise.
11242         (tst-mbsnrtowcs-ENV): Likewise.
11244 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
11246         * manual/resource.texi (How to get information about the memory
11247         subsystem?): Fix typo.
11248         Reported by Peon de la Parra Ivan <peon@keba.com>
11250 2014-06-03  Guo Yixuan  <culu.gyx@gmail.com>
11252         [BZ #16882]
11253         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
11254         (pthread_spin_lock): Branch out of spin loop to proper location.
11255         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
11256         (pthread_spin_lock): Likewise.
11258         * nptl/tst-spin4.c: New test.
11259         * nptl/Makefile (tests): Add tst-spin4.
11261 2014-06-03  Andreas Schwab  <schwab@suse.de>
11263         [BZ #15946]
11264         * resolv/res_send.c (send_dg): Reload file descriptor after
11265         calling reopen.
11267 2014-06-03  Stefan Liebler  <stli@linux.vnet.ibm.com>
11269         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
11271 2014-06-03  Richard Henderson  <rth@redhat.com>
11273         * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
11274         * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
11275         * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
11276         SAVE_PID and RESTORE_PID blocks from pt-vfork.S.  Map 0 to INT_MIN
11277         in the SAVE_PID block.
11278         (__libc_vfork): New alias.
11279         * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
11281         * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
11282         child in registers, not on the stack.  Remove RESET_PID conditionals.
11283         * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
11285 2014-06-03  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11287         * sysdeps/aarch64/libm-test-ulps: Regenerate.
11289 2014-06-03  Wilco  <wdijkstr@arm.com>
11291         * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
11292         (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
11293         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
11294         Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
11295         * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
11296         Likewise.
11298 2014-06-03  Wilco  <wdijkstr@arm.com>
11300         * sysdeps/aarch64/fpu/math_private.h
11301         (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
11302         (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
11303         (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
11304         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
11305         Fix declarations.
11307 2014-06-03  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
11309         * crypt/crypt-private.h: Include ufc-crypt.h.
11310         (__b64_from_24bit): Declare extern.
11311         * crypt/crypt_util.c(__b64_from_24bit): New function.
11312         (b64t): New static const variable.
11313         * crypt/md5-crypt.c (b64_from_24bit): Remove function.
11314         (b64t): Remove variable.
11315         (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
11316         * crypt/sha256-crypt.c: Include crypt-private.h.
11317         (b64t): Remove variable.
11318         (__sha256_crypt_r): Remove b64_from_24bit and replace
11319         with __b64_from_24bit.
11320         * crypt/sha512-crypt.c: Likewise.
11322 2014-06-02  Roland McGrath  <roland@hack.frob.com>
11324         * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
11325         * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
11326         Label the code __libc_vfork rather than __vfork.
11327         [!NOT_IN_libc] (vfork): Define as weak alias.
11328         [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
11329         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
11330         * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
11332 2014-06-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
11334         * malloc/malloc.c (malloc_info): Fix format specifier for
11335         n_mmaps.
11337 2014-06-02  Wilco  <wdijkstr@arm.com>
11339         * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
11340         FPCR write.
11342 2014-06-02  Wilco  <wdijkstr@arm.com>
11344         [BZ #17009]
11345         * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
11346         Rewrite to reduce FPCR/FPSR accesses.
11348 2014-06-01  David S. Miller  <davem@davemloft.net>
11350         * sysdeps/sparc/fpu/libm-test-ulps: Update.
11352 2014-05-31  David S. Miller  <davem@davemloft.net>
11354         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
11355         to occur in round to nearest mode when |x| >= 2.0
11357 2014-05-30  Richard Henderson  <rth@twiddle.net>
11359         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
11360         (PSEUDO_RET_NOERRNO): Remove.
11361         (ret): Don't redefine.
11362         (ret_NOERRNO): Define in terms of ret.
11363         (ret_ERRVAL): Likewise.
11365         * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
11366         use of PSEUDO_RET; perform the error check directly.
11368 2014-05-30 Marko Myllynen  <myllynen@redhat.com>
11370         * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
11371         with __int128_t.
11373 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
11375         * malloc/malloc (malloc_info): Fix formatting.
11377 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
11378             Roland McGrath  <roland@hack.frob.com>
11380         * malloc/malloc (malloc_info): Also print mmapped statistics.
11382 2014-05-30  Roland McGrath  <roland@hack.frob.com>
11384         * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
11385         * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
11387 2014-05-30  Ondřej Bílka  <neleai@seznam.cz>
11389         * malloc/malloc.c (malloc_info): Inline mi_arena.
11391 2014-05-29  Richard Henderson  <rth@twiddle.net>
11393         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
11394         Remove comma before expanding ASM_ARGS_##nr.
11395         (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
11396         Make _x0 a strict output; make _x8 a strict input; adjust expansion
11397         of ASM_ARGS_##nr.
11398         (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
11399         (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
11400         (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
11401         (ASM_ARGS_1): Add leading comma.
11403         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
11404         (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
11405         to __errno_location.
11406         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
11407         Remove the expected plt for __errno_location.
11409         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11410         [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
11411         call to __read_tp.
11413         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11414         Always allocate 64 bytes of stack frame.  Use ldp/stp to create
11415         it and break it down.
11416         (DOCARGS_0, DOCARGS_1): Do nothing.
11417         (DOCARGS_2): Update to store into the new stack frame.
11418         (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
11419         (UNDOCARGS_1): Update to restore from the new stack frame.
11420         (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
11421         (UNDOCARGS_5, UNDOCARGS_6): Likewise.
11423         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11424         (SINGLE_THREAD_P): New parameter for result regno.
11425         (PSEUDO): Update to match; use cbz instead of beq.
11427         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11428         Use ENTRY to define the _nocancel entry point.  Share the syscall
11429         and syscall error check paths with the cancel path.
11430         (PSEUDO_END): New.
11432         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
11433         whitespace; tabs before and after asm mnemonics.
11435 2014-05-29  Eric Wong  <normalperson@yhbt.net>
11437         [BZ #15132]
11438         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
11439         Call fstat64 or stat64 internally, depending on arguments passed.
11440         Replace stat buffer argument with file descriptor argument.
11441         (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
11442         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
11443         Pass fd to __internal_statvfs instead of calling fstat64.
11444         * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
11445         Pass fd to __internal_statvfs64 instead of calling fstat64.
11446         * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
11447         Pass -1 to __internal_statvfs instead of calling stat64.
11448         * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
11449         Pass -1 to __internal_statvfs64 instead of calling stat64.
11451 2014-05-28  Roland McGrath  <roland@hack.frob.com>
11453         * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
11454         that was previously under [RESET_PID].
11455         * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
11457         * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
11458         * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
11460 2014-05-27  Roland McGrath  <roland@hack.frob.com>
11462         * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
11464         * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
11465         * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
11467 2014-05-27  Ondřej Bílka  <neleai@seznam.cz>
11469         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
11471 2014-05-27  Andreas Schwab  <schwab@suse.de>
11473         * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
11474         TLS_INIT_TP macro.
11475         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
11476         * elf/rtld.c (init_tls, dl_main): Likewise.
11477         * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
11478         * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
11479         * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
11480         * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
11481         * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
11482         * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
11483         * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
11484         * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
11485         * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
11486         * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
11487         * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
11488         * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
11489         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
11490         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
11491         * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
11492         * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
11493         * sysdeps/generic/tls.h: Update description.
11495 2014-05-27  Will Newton  <will.newton@linaro.org>
11497         [BZ #16990]
11498         * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
11499         and restore r2 rather than just restoring.
11501 2014-05-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
11503         [BZ #16724]
11504         * libio/tst-ftell-append.c: New test case.
11505         * libio/Makefile (tests): Add test case.
11506         * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
11507         append mode.
11508         * libio/wfileops.c (do_ftell_wide): Likewise.
11510 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11512         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11514         * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
11515         ...
11516         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
11517         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
11518         * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
11519         * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
11520         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
11521         * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
11522         * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
11523         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
11524         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
11525         Moved ...
11526         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
11527         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
11528         Moved ...
11529         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
11530         * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
11531         * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
11532         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
11533         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
11534         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
11535         ...
11536         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
11537         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
11538         Moved ...
11539         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
11540         here.
11541         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
11542         ...
11543         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
11544         * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
11545         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
11547         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
11548         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
11549         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
11550         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
11552         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
11553         merge into ...
11554         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
11555         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
11556         ...
11557         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
11558         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
11559         ...
11560         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
11561         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
11562         Moved ...
11563         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
11564         here.
11565         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
11566         Moved ...
11567         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
11568         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
11569         Moved ...
11570         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
11572         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
11573         conditional [RESET_PID].
11574         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
11575         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
11576         removed.
11577         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
11578         removed.
11580         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
11581         <tcb-offsets.h>.
11582         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
11583         (__libc_vfork): New strong alias.
11584         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
11585         removed.
11586         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
11587         Removed.
11589         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
11590         <tcb-offsets.h>.
11591         (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
11592         (__libc_vfork): New strong alias.
11593         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
11594         removed.
11595         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
11596         removed.
11598 2014-05-26  Carlos O'Donell  <carlos@redhat.com>
11600         * malloc/malloc.c (mi_arena): New function.
11601         (malloc_info): Remove nested function mi_arena. Call non-nosted
11602         function mi_arena.
11604 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11606         * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
11607         by insrwi.
11608         * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
11609         * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
11610         * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
11611         * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
11612         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
11613         * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
11614         * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
11616 2014-05-26  Andreas Schwab  <schwab@suse.de>
11618         [BZ #16984]
11619         * locale/programs/repertoire.c (repertoire_read): Add slash
11620         between I18NPATH element and file name.
11621         * locale/programs/locfile.c (locfile_read): Likewise.
11623 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
11625         * nptl/pthread_mutexattr_settype.c
11626         (__pthread_mutexattr_settype):
11627         Disable lock elision for PTHREAD_MUTEX_NORMAL.
11629 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
11631         * nptl/tst-mutex5 (do_test):
11632         Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
11634 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
11636         * benchtests/README: Document 'init' directive.
11637         * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
11638         BENCH_INIT.
11639         * scripts/bench.py (gen_source): Define BENCH_INIT macro.
11640         (parse_file): Recognize 'init' directive.
11642 2014-05-26  Kyle McMartin  <kyle@redhat.com>
11644         [BZ #16796]
11645         * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
11646         alignment of struct pthread.
11648 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
11650         [BZ #16878]
11651         * nscd/netgroupcache.c (addgetnetgrentX): Look for
11652         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
11653         * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
11654         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
11656 2014-05-25  Richard Henderson  <rth@twiddle.net>
11658         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11659         (SINGLE_THREAD_P_PIC): Remove.
11660         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
11661         (SINGLE_THREAD_P_PIC): Remove.
11663         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
11664         branch to syscall error ...
11665         (PSEUDO): ... here.
11666         [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
11667         from __local_syscall_error to .Lsyscall_error.
11668         [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
11669         (SYSCALL_ERROR): Update label name.
11671         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11672         Do not use DOARGS/UNDOARGS.
11673         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
11674         (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
11675         (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
11676         (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
11677         (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
11679         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
11680         block comment.
11682         * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
11683         define if !NOT_IN_libc.
11684         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
11685         define with non-default symbol versions.
11687 2014-05-23  Richard Henderson  <rth@twiddle.net>
11689         * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
11690         (vfork, __vfork): Define via compat_symbol.
11692         * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
11693         [!HAVE_IFUNC] (vfork_compat): Remove.
11694         [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
11696 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
11698         [BZ #16978]
11699         * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
11700         * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
11701         variable.
11703 2014-05-23  Richard Henderson  <rth@twiddle.net>
11705         * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
11706         * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
11707         * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
11708         * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
11710         * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
11711         * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
11712         * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
11713         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
11714         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
11715         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
11716         * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
11717         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
11718         * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
11719         * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
11720         * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
11721         * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
11722         * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
11723         * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
11724         * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
11725         * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
11726         * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
11727         * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
11728         * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
11729         * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
11730         * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
11731         * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
11732         * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
11733         * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
11734         * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
11735         * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
11736         * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
11737         * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
11738         * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
11739         * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
11740         * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
11741         * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
11742         * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
11743         * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
11744         * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
11745         * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
11746         * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
11747         * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
11748         * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
11749         * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
11750         * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
11751         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
11752         * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
11753         * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
11754         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
11755         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
11756         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
11757         * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
11758         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
11759         * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
11760         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
11761         * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
11762         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
11763         * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
11764         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
11765         * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
11767         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
11768         * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
11769         * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here.  Restore PID
11770         before exiting on error.
11771         (__libc_vfork): New strong alias.
11772         * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
11773         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
11775         * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
11776         that was previously under [RESET_PID].
11777         * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
11779         * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
11781 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
11783         [BZ #16977]
11784         * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
11785         value when x - 1 is zero.
11786         * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
11787         * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
11788         * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
11789         0.0L for an argument of 1.0L.
11790         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
11791         Likewise.
11792         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
11793         value when x - 1 is zero.
11794         * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
11795         * sysdeps/i386/fpu/libm-test-ulps: Update.
11796         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11798 2014-05-23  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
11800         * manual/filesys.texi (Scanning Directory Content): Fix prototype of
11801         alphasort and versionsort.
11803 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11805         * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
11806         macro.
11807         [copysignf]: Likewise.
11809 2014-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
11811         * crypt/md5-crypt.c: Fix formatting.
11813 2014-05-22  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
11815         * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
11816         (b64_from_24bit): New function.
11818 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11820         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
11821         libc_hidden_builtin_def to ifunc.
11822         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
11823         [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
11825 2014-05-21  Roland McGrath  <roland@hack.frob.com>
11827         * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
11828         * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
11830 2014-05-21  Joseph Myers  <joseph@codesourcery.com>
11832         * nscd/Depend (linuxthreads): Remove.
11833         (nptl): Add.
11834         * resolv/Depend (linuxthreads): Remove.
11835         * rt/Depend (linuxthreads): Remove.
11837         * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
11838         (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
11839         $(common-objpfx)elf/.
11840         (link-libc-before-gnulib): Likewise.
11841         (elfobjdir): Remove variable.
11842         * Makefile (install): Use $(elf-objpfx) instead of
11843         $(common-objpfx)elf/.
11844         * Makerules (link-libc-args): Use $(elf-objpfx) instead of
11845         $(elfobjdir)/.
11846         (link-libc-deps): Likewise.
11847         ($(common-objpfx)libc.so): Likewise.
11848         ($(common-objpfx)linkobj/libc.so): Likewise.
11849         [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
11850         instead of $(common-objpfx)elf/.
11851         (symbolic-link-list): Likewise.
11852         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
11853         [$(cross-compiling) = no]: Likewise.
11854         * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
11855         $(elfobjdir)/.
11856         (static-gnulib-arch): Likewise.
11857         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
11858         [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
11859         $(common-objpfx)elf/.
11861 2014-05-21  Richard Henderson  <rth@redhat.com>
11863         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11864         (SINGLE_THREAD_P): Use the correct width load.  Fold
11865         into the ldr offset.
11867         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
11868         (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
11870 2014-05-20  Joseph Myers  <joseph@codesourcery.com>
11872         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
11873         (libgcc_s_resume): Use __attribute_used__.
11874         * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
11875         Likewise.
11877 2014-05-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11879         * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
11880         optimization when used with float constants.
11882         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11884 2014-05-20  Aurelien Jarno  <aurelien@aurel32.net>
11886         [BZ #16915]
11887         * locale/nl_langinfo_l.c: Make direct reference to every
11888         _nl_current_CATEGORY symbol.
11889         * localedata/Makefile (test-srcs): Add tst-langinfo-static.
11890         (tests-static): Add tst-langinfo-static.
11891         (tests-special): Add tst-langinfo-static.out.
11892         ($(objpfx)tst-langinfo.out): Redirect output.
11893         ($(objpfx)tst-langinfo-static.out): New.
11894         * localedata/tst-langinfo.sh: Send output to stdout.
11895         * localedata/tst-langinfo-static.c: New file.
11897         [BZ #16965]
11898         * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
11899         when the shift amount is modulo the limb size.
11901 2014-05-20  Richard Henderson  <rth@redhat.com>
11903         [BZ #16967]
11904         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
11905         Change type of sa_flags from unsigned int to int.
11907         [BZ #16966]
11908         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
11910         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
11912 2014-05-20  Will Newton  <will.newton@linaro.org>
11914         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11915         Test the return value of the system call in the nocancel case.
11917 2014-05-20  Will Newton  <will.newton@linaro.org>
11918             Yvan Roux  <yvan.roux@linaro.org>
11920         * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
11921         #include of asm/ptrace.h.
11922         (PTRACE_GET_THREAD_AREA): Remove #undef.
11923         (PTRACE_GETHBPREGS): Likewise.
11924         (PTRACE_SETHBPREGS): Likewise.
11925         (struct user_regs_struct): New structure.
11926         (struct user_fpsimd_struct): New structure.
11927         * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
11928         #include of asm/ptrace.h and second #include of sys/user.h.
11929         (PTRACE_GET_THREAD_AREA): Remove #undef.
11930         (PTRACE_GETHBPREGS): Likewise.
11931         (PTRACE_SETHBPREGS): Likewise.
11932         (ELF_NGREG): Use new struct user_regs_struct.
11933         (elf_fpregset_t): Use new struct user_fpsimd_struct.
11935 2014-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11937         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
11938         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
11940 2014-05-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
11942         [BZ #16958]
11943         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
11944         membar to avoid block loads/stores to overlap previous stores.
11946 2014-05-17  Richard Henderson  <rth@redhat.com>
11948         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
11949         Create the __##syscall_name##_nocancel entry point.
11950         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
11951         Remove; let the sysdep-cancel.h code create it.
11953 2014-05-17  David S. Miller  <davem@davemloft.net>
11955         * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
11956         Protect with __USE_GNU.
11957         (TIOCSET_TEMPT): Likewise.
11958         (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
11959         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
11960         these are already provided in bits/ioctl-types.h
11962 2014-05-16  Roland McGrath  <roland@hack.frob.com>
11964         * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
11965         * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
11967         * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
11968         Use wait4 regardless of [__NR_waitpid].
11970 2014-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
11972         PR libgcc/60166
11973         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
11974         (_FP_NANSIGN_Q): Set the quiet bit.
11976 2014-05-16  Joseph Myers  <joseph@codesourcery.com>
11978         * benchtests/Makefile
11979         ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
11980         not $(common-objpfx)math/libm.so.
11981         ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
11982         $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
11983         * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
11984         $(common-objpfx)dlfcn/libdl.so.
11985         ($(objpfx)tst-audit8): Depend on $(libm), not
11986         $(common-objpfx)math/libm.so.
11987         * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
11988         not $(common-objpfx)dlfcn/libdl.so.
11989         * math/Makefile
11990         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
11991         Depend on $(libm), not $(objpfx)libm.so.  Do not condition on
11992         [$(build-shared) = yes].
11993         ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
11994         $(common-objpfx)nptl/libpthread.so.
11995         * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
11996         $(common-objpfx)math/libm.so$(libm.so-version) or
11997         $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
11998         * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
11999         $(common-objpfx)dlfcn/libdl.so.
12000         * setjmp/Makefile (link-libm): Remove variable.
12001         ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
12002         * stdio-common/Makefile (link-libm): Remove variable.
12003         ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
12004         * stdlib/Makefile (link-libm): Remove variable.
12005         ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
12006         ($(objpfx)tst-strtod-round): Likewise.
12007         ($(objpfx)tst-tininess): Likewise.
12008         ($(objpfx)tst-strtod-underflow): Likewise.
12009         ($(objpfx)tst-strtod6): Likewise.
12010         ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
12011         $(libdl), not $(common-objpfx)nptl/libpthread.so and
12012         $(common-objpfx)dlfcn/libdl.so.
12014 2014-05-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12016         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
12017         BSD terminal modes definitions.
12019 2014-05-16  Roland McGrath  <roland@hack.frob.com>
12021         * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
12022         * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
12024         * sysdeps/unix/sysv/linux/arch-fork.h: New file.
12025         * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
12026         * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
12027         Don't do #include_next.
12028         * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
12029         * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
12030         Don't do #include_next.
12031         * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
12032         * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
12033         * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
12034         * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
12036 2014-05-16  Allan McRae  <allan@archlinux.org>
12038         * po/sv.po: Update Swedish translation from translation project.
12040         * timezone/Makefile ($(objpfx)tzselect): Use correct variable
12041         in sed expression.
12043 2014-05-16  Aurelien Jarno  <aurelien@aurel32.net>
12045         [BZ #16917]
12046         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
12047         errno if the TIOCGPTN ioctl fails with an error different than
12048         EINVAL.
12049         * login/tst-ptsname.c: New file.
12050         * login/Makefile (tests): Add tst-ptsname.
12052         [BZ #16943]
12053         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
12054         and prlimit64.
12056 2014-05-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
12058         [BZ #16849]
12059         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
12060         herrno to return EAI_AGAIN.
12062 2014-05-14  Roland McGrath  <roland@hack.frob.com>
12064         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
12065         * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
12066         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
12067         * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
12068         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
12069         * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
12070         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
12071         * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
12072         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
12073         * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
12074         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
12075         * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
12076         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
12077         * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
12078         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
12079         * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
12080         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
12081         * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
12082         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
12083         * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
12084         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
12085         * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
12086         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
12087         * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
12088         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
12089         * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
12090         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
12091         * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
12092         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
12093         * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
12094         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
12095         * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
12096         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
12097         * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
12098         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
12099         Moved ...
12100         * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
12101         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
12102         * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
12103         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
12104         * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
12105         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
12106         * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
12107         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
12108         * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
12109         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
12110         * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
12111         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
12112         * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
12113         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
12114         * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
12115         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
12116         * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
12117         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
12118         * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
12119         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
12120         * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
12121         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
12122         * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
12123         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
12124         * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
12125         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
12126         * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
12127         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
12128         Moved ...
12129         * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
12130         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
12131         * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
12132         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
12133         * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
12134         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
12135         * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
12136         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
12137         * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
12138         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
12139         * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
12140         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
12141         * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
12142         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
12143         * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
12144         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
12145         * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
12146         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
12147         * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
12148         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
12149         Moved ...
12150         * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
12151         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
12152         * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
12154         * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
12155         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
12156         (libpthread-sysdep_routines): Add elision-related stuff here instead.
12157         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
12158         * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
12159         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
12160         * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
12161         * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
12162         * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
12163         * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
12164         * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
12165         * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
12166         * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
12167         * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
12168         * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
12169         * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
12170         * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
12171         * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
12172         * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
12173         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
12174         * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
12175         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
12176         * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
12177         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
12178         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
12179         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
12180         * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
12181         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
12182         * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
12183         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
12184         * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
12186         * sysdeps/unix/sysv/linux/mips/fork.h: New file.
12187         * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
12189         * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
12190         * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
12191         * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
12192         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
12193         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
12194         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
12195         Moved ...
12196         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
12197         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
12198         Moved ...
12199         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
12200         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
12201         Moved ...
12202         * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
12203         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
12204         Moved ...
12205         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
12206         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
12207         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
12208         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
12209         Moved ...
12210         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
12211         * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
12212         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
12213         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
12214         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
12215         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
12216         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
12217         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
12218         Moved ...
12219         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
12220         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
12221         Moved ...
12222         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
12223         ... here.
12224         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
12225         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
12226         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
12227         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
12228         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
12229         Moved ...
12230         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
12231         ... here.
12232         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
12233         Moved ...
12234         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
12235         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
12236         * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
12237         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
12238         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
12239         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
12240         Moved ...
12241         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
12242         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
12243         Moved ...
12244         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
12245         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
12246         Moved ...
12247         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
12248         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
12249         Moved ...
12250         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
12251         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
12252         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
12253         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
12254         Moved ...
12255         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
12256         * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
12257         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
12258         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
12259         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
12260         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
12261         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
12262         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
12263         Moved ...
12264         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
12265         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
12266         Moved ...
12267         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
12268         ... here.
12269         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
12270         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
12271         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
12272         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
12273         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
12274         Moved ...
12275         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
12276         ... here.
12277         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
12278         Moved ...
12279         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
12280         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
12281         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
12282         * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
12283         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
12284         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
12285         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
12286         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
12287         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
12288         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
12289         Moved ...
12290         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
12291         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
12292         Moved ...
12293         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
12294         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
12295         Moved ...
12296         * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
12297         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
12298         Moved ...
12299         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
12300         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
12301         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
12302         * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
12303         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
12304         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
12305         Moved ...
12306         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
12307         * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
12308         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
12309         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
12310         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
12311         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
12312         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
12313         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
12314         Moved ...
12315         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
12316         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
12317         Moved ...
12318         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
12319         ... here.
12320         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
12321         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
12322         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
12323         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
12324         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
12325         Moved ...
12326         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
12327         ... here.
12328         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
12329         Moved ...
12330         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
12331         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
12332         * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
12333         * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
12334         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
12335         * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
12336         * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
12337         * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
12338         * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
12339         * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
12340         * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
12342         * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
12343         * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
12345         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
12346         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
12348         * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
12349         * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
12350         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
12351         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
12352         * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
12353         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
12354         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
12355         * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
12356         * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
12357         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
12358         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
12359         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
12360         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
12361         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
12362         * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
12363         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
12364         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
12365         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
12366         Moved ...
12367         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
12368         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
12369         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
12370         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
12371         Moved ...
12372         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
12373         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
12374         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
12375         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
12376         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
12377         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
12378         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
12379         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
12380         Moved ...
12381         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
12382         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
12383         Moved ...
12384         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
12385         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
12386         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
12387         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
12388         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
12389         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
12390         * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
12391         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
12392         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
12393         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
12394         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
12395         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
12396         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
12397         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
12398         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
12399         * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
12400         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
12402         * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
12403         * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
12404         * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
12405         * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
12406         * sysdeps/unix/sysv/linux/i386/fork.h: New file.
12408         * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
12409         * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
12410         * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
12411         * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
12412         * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
12413         * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
12414         * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
12415         * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
12416         * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
12417         * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
12419         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
12420         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
12422         * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
12423         * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
12424         * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
12425         * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
12426         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
12427         * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
12428         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
12429         * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
12430         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
12431         * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
12432         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
12433         * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
12434         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
12435         * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
12436         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
12437         Update #include.
12438         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
12439         Likewise.
12440         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
12441         Likewise.
12442         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
12443         Likewise.
12444         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
12445         Likewise.
12446         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
12447         Likewise.
12448         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
12449         Likewise.
12450         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
12451         Likewise.
12452         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
12453         Likewise.
12454         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
12455         Likewise.
12456         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
12457         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
12458         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
12459         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
12460         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
12461         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
12462         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
12463         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
12464         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
12465         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
12466         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
12467         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
12468         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
12469         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c:  Likewise.
12470         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c:  Likewise.
12472         * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
12473         that was previously under [RESET_PID].
12474         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
12475         * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
12476         * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
12478         * sysdeps/i386/nptl/Implies: New file.
12479         * sysdeps/x86_64/nptl/Implies: New file.
12480         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
12481         * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
12482         * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
12483         * sysdeps/x86/nptl/bits/semaphore.h: ... here.
12485         * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
12486         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12487         (__libc_vfork): New strong alias.
12488         * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
12489         * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
12491         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
12492         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12493         (__libc_vfork): New strong alias.
12494         * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
12495         * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
12497         * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
12498         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12499         (__libc_vfork): New strong alias.
12500         * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
12501         * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
12502         * nptl/pt-vfork.c: New file.
12503         * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
12504         (libpthread: GLIBC_2.20): New version set (empty).
12506 2014-05-14  Will Newton  <will.newton@linaro.org>
12508         * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
12509         rather than #if.
12511 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
12513         [BZ #16564]
12514         * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
12515         arguments with exponent 65 or above.
12516         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
12517         arguments 0x1p113L or above.
12518         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
12519         to arguments 0x1p107L or above.
12520         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
12521         positive arguments with exponent 65 or above.
12522         * math/auto-libm-test-in: Add more tests of log1p.
12523         * math/auto-libm-test-out: Regenerated.
12525         [BZ #16928]
12526         * math/s_cacos.c (__cacos): Ensure zero real part of result from
12527         non-finite arguments is +0.
12528         * math/s_cacosf.c (__cacosf): Likewise.
12529         * math/s_cacosl.c (__cacosl): Likewise.
12530         * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
12531         * sysdeps/i386/fpu/libm-test-ulps: Update.
12532         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12534         [BZ #16927]
12535         * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
12536         value.
12537         * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
12538         * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
12539         * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
12540         for explicit high bit of mantissa when testing for argument equal
12541         to 1.
12542         * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
12543         * sysdeps/i386/fpu/libm-test-ulps: Update.
12544         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12546         [BZ #16516]
12547         * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
12548         (__erf): Scale by 16 instead of 8 in potentially underflowing
12549         case.  Ensure exception if result actually underflows.
12550         * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
12551         (__erff): Scale by 16 instead of 8 in potentially underflowing
12552         case.  Ensure exception if result actually underflows.
12553         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
12554         (efx8): Remove variable.
12555         (__erfl): Scale by 16 instead of 8 in potentially underflowing
12556         case.  Ensure exception if result actually underflows.
12557         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
12558         (efx8): Remove variable.
12559         (__erfl): Scale by 16 instead of 8 in potentially underflowing
12560         case.  Ensure exception if result actually underflows.
12561         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
12562         (efx8): Remove variable.
12563         (__erfl): Scale by 16 instead of 8 in potentially underflowing
12564         case.  Ensure exception if result actually underflows.
12565         * math/auto-libm-test-in: Add more tests of erf.
12566         * math/auto-libm-test-out: Regenerated.
12568 2014-05-14  Andreas Schwab  <schwab@suse.de>
12570         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
12571         Remove code conditionalized on USE___THREAD.
12573         * config.h.in (HAVE_PT_CHOWN): Define as 0.
12574         * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
12575         not definedness.
12577 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
12579         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
12580         Define unconditionally.
12581         (__ASSUME_O_CLOEXEC): Likewise.
12582         (__ASSUME_SOCK_CLOEXEC): Likewise.
12583         (__ASSUME_IN_NONBLOCK): Likewise.
12584         (__ASSUME_PIPE2): Likewise.
12585         (__ASSUME_EVENTFD2): Likewise.
12586         (__ASSUME_SIGNALFD4): Likewise.
12587         (__ASSUME_DUP3): Likewise.
12588         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
12589         (__ASSUME_DUP3): Do not define.
12590         (__ASSUME_EVENTFD2): Likewise.
12591         (__ASSUME_IN_NONBLOCK): Likewise.
12592         (__ASSUME_O_CLOEXEC): Likewise.
12593         (__ASSUME_PIPE2): Likewise.
12594         (__ASSUME_SIGNALFD4): Likewise.
12595         (__ASSUME_SOCK_CLOEXEC): Likewise.
12596         (__ASSUME_UTIMES): Undefine.
12597         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
12598         (__ASSUME_UTIMES): Do not define.
12599         (__ASSUME_O_CLOEXEC): Likewise.
12600         (__ASSUME_SOCK_CLOEXEC): Likewise.
12601         (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
12602         0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
12603         0x020621].
12604         (__ASSUME_PIPE2): Likewise.
12605         (__ASSUME_EVENTFD2): Likewise.
12606         (__ASSUME_SIGNALFD4): Likewise.
12607         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
12608         * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
12609         Do not define.
12610         (__ASSUME_EVENTFD2): Likewise.
12611         (__ASSUME_SIGNALFD4): Likewise.
12612         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
12613         (__ASSUME_32BITUIDS): Likewise.
12614         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
12615         (__ASSUME_IPC64): Likewise.
12616         (__ASSUME_ST_INO_64_BIT): Likewise.
12617         (__ASSUME_GETDENTS64_SYSCALL): Likewise.
12618         [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
12619         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
12620         (__ASSUME_UTIMES): Do not define.
12621         (__ASSUME_PSELECT): Likewise.
12622         (__ASSUME_PPOLL): Likewise.
12623         (__ASSUME_O_CLOEXEC): Likewise.
12624         (__ASSUME_SOCK_CLOEXEC): Likewise.
12625         (__ASSUME_IN_NONBLOCK): Likewise.
12626         (__ASSUME_PIPE2): Likewise.
12627         (__ASSUME_EVENTFD2): Likewise.
12628         (__ASSUME_SIGNALFD4): Likewise.
12629         (__ASSUME_DUP3): Likewise.
12630         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
12631         (__ASSUME_UTIMES): Likewise.
12632         (__ASSUME_O_CLOEXEC): Likewise.
12633         (__ASSUME_SOCK_CLOEXEC): Likewise.
12634         (__ASSUME_IN_NONBLOCK): Likewise.
12635         (__ASSUME_PIPE2): Likewise.
12636         (__ASSUME_EVENTFD2): Likewise.
12637         (__ASSUME_SIGNALFD4): Likewise.
12638         (__ASSUME_DUP3): Likewise.
12639         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12640         (__ASSUME_UTIMES): Likewise.
12641         (__ASSUME_O_CLOEXEC): Likewise.
12642         (__ASSUME_SOCK_CLOEXEC): Likewise.
12643         (__ASSUME_IN_NONBLOCK): Likewise.
12644         (__ASSUME_PIPE2): Likewise.
12645         (__ASSUME_EVENTFD2): Likewise.
12646         (__ASSUME_SIGNALFD4): Likewise.
12647         (__ASSUME_DUP3): Likewise.
12648         * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
12649         Likewise.
12650         (__ASSUME_UTIMES): Likewise.
12651         (__ASSUME_EVENTFD2): Likewise.
12652         (__ASSUME_SIGNALFD4): Likewise.
12653         * sysdeps/unix/sysv/linux/tile/kernel-features.h
12654         (__ASSUME_O_CLOEXEC): Likewise.
12655         (__ASSUME_SOCK_CLOEXEC): Likewise.
12656         (__ASSUME_IN_NONBLOCK): Likewise.
12657         (__ASSUME_PIPE2): Likewise.
12658         (__ASSUME_EVENTFD2): Likewise.
12659         (__ASSUME_SIGNALFD4): Likewise.
12660         (__ASSUME_DUP3): Likewise.
12661         (__ASSUME_UTIMES): Undefine.
12663         * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
12664         feclearexcept.  Remove symbol versioning code.
12665         * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv.  Remove
12666         symbol versioning code.
12667         * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv.  Remove
12668         symbol versioning code.
12669         * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
12670         feupdateenv.  Remove symbol versioning code.
12671         * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
12672         fegetexceptflag.  Remove symbol versioning code.
12673         * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
12674         fesetexceptflag.  Remove symbol versioning code.
12675         * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
12676         GLIBC_2.2 and GLIBC_2.3.3 entries.  Change GLIBC_2.1 to GLIBC_2.4.
12677         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
12678         (__posix_fadvise64_l32): Remove prototype.
12679         [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
12680         code.
12682 2014-05-13  Roland McGrath  <roland@hack.frob.com>
12684         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
12685         * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
12686         * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
12687         * sysdeps/arm/nptl/bits/semaphore.h: ... here.
12689 2014-05-13  Sami Kerola  <kerolasa@iki.fi>
12691         * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
12692         current working directory
12694 2014-05-13  Roland McGrath  <roland@hack.frob.com>
12696         * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
12697         * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
12698         * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
12699         * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
12700         * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
12701         * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
12702         * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
12703         * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
12704         * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
12705         * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
12706         * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
12707         * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
12708         * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
12709         * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
12710         * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
12711         * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
12712         * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
12713         * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
12714         * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
12715         * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
12716         * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
12717         * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
12718         * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
12719         * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
12720         * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
12721         * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
12722         * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
12723         * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
12724         * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
12725         * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
12726         * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
12727         * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
12728         * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
12729         * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
12730         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
12731         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
12732         * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
12733         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
12734         * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
12735         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
12736         * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
12737         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
12739         * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
12740         * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
12742         * sysdeps/unix/sysv/linux/arm/Makefile
12743         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
12744         Add rt-aeabi_unwind_cpp_pr1.
12745         [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
12746         Add nptl-aeabi_unwind_cpp_pr1.
12747         [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
12748         * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
12749         * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
12750         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
12751         * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
12752         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
12754         * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
12755         * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
12756         * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
12757         * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
12759         * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
12760         Deconditionalize the code that was previously under [RESET_PID].
12761         * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
12763         * sysdeps/generic/exit-thread.h: New file.
12764         * sysdeps/unix/sysv/linux/exit-thread.h: New file.
12765         * include/unistd.h (__exit_thread): Remove declaration.
12766         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
12767         * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
12768         * csu/libc-start.c: Include <exit-thread.h>.
12769         (LIBC_START_MAIN): Pass no argument to __exit_thread.
12770         * nptl/pthread_create.c: Include <exit-thread.h>.
12771         (start_thread): Call __exit_thread in place of __exit_thread_inline.
12772         * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
12773         * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
12774         * nptl/sysdeps/s390/pthreaddef.h: Likewise.
12775         * nptl/sysdeps/sh/pthreaddef.h: Likewise.
12776         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
12777         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
12778         * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
12779         * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
12780         * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
12781         * sysdeps/arm/nptl/pthreaddef.h: Likewise.
12782         * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
12783         * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
12784         * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
12785         * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
12786         * sysdeps/mips/nptl/pthreaddef.h: Likewise.
12787         * sysdeps/tile/nptl/pthreaddef.h: Likewise.
12789 2014-05-13  Andreas Schwab  <schwab@suse.de>
12791         * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
12793 2014-05-12  Joseph Myers  <joseph@codesourcery.com>
12795         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
12796         (__ASSUME_UTIMES): Do not condition on kernel version.
12797         (__ASSUME_PSELECT): Define unconditionally.
12798         (__ASSUME_PPOLL): Likewise.
12799         (__ASSUME_ATFCTS): Likewise.
12800         (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
12801         (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
12802         (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
12803         (__ASSUME_UTIMENSAT): Define unconditionally.
12804         (__ASSUME_PRIVATE_FUTEX): Likewise.
12805         (__ASSUME_FALLOCATE): Likewise.
12806         (__ASSUME_O_CLOEXEC): Likewise.
12807         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
12808         (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
12809         (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
12810         (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
12811         (__ASSUME_IN_NONBLOCK): Likewise.
12812         (__ASSUME_PIPE2): Likewise.
12813         (__ASSUME_EVENTFD2): Likewise.
12814         (__ASSUME_SIGNALFD4): Likewise.
12815         (__ASSUME_DUP3): Likewise.
12816         [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
12817         (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
12818         (__ASSUME_AT_RANDOM): Likewise.
12819         (__ASSUME_PREADV): Likewise.
12820         (__ASSUME_PWRITEV): Likewise.
12821         (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
12822         (__ASSUME_F_GETOWN_EX): Define unconditionally.
12823         (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
12824         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
12825         [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
12826         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
12827         (__ASSUME_O_CLOEXEC): Define unconditionally.
12828         (__ASSUME_PSELECT): Do not undefine conditionally.
12829         (__ASSUME_PPOLL): Likewise.
12830         (__ASSUME_ATFCTS): Likewise.
12831         (__ASSUME_SET_ROBUST_LIST): Likewise.
12832         (__ASSUME_UTIMENSAT): Likewise.
12833         (__ASSUME_FDATASYNC): Define unconditionally.
12834         * sysdeps/unix/sysv/linux/arm/kernel-features.h
12835         (__ASSUME_SIGFRAME_V2): Likewise.
12836         )__ASSUME_EVENTFD2): Likewise.
12837         (__ASSUME_SIGNALFD4): Likewise.
12838         (__ASSUME_PSELECT): Do not undefine conditionally.
12839         (__ASSUME_PPOLL): Likewise.
12840         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
12841         (__ASSUME_PSELECT): Define unconditionally.
12842         (__ASSUME_PPOLL): Likewise.
12843         (__ASSUME_O_CLOEXEC): Likewise.
12844         (__ASSUME_SOCK_CLOEXEC): Likewise.
12845         (__ASSUME_IN_NONBLOCK): Likewise.
12846         (__ASSUME_PIPE2): Likewise.
12847         (__ASSUME_EVENTFD2): Likewise.
12848         (__ASSUME_SIGNALFD4): Likewise.
12849         (__ASSUME_DUP3): Likewise.
12850         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
12851         (__ASSUME_O_CLOEXEC): Likewise.
12852         (__ASSUME_SOCK_CLOEXEC): Likewise.
12853         (__ASSUME_IN_NONBLOCK): Likewise.
12854         (__ASSUME_PIPE2): Likewise.
12855         (__ASSUME_EVENTFD2): Likewise.
12856         (__ASSUME_SIGNALFD4): Likewise.
12857         (__ASSUME_DUP3): Likewise.
12858         * sysdeps/unix/sysv/linux/mips/kernel-features.h
12859         (__ASSUME_EVENTFD2): Likewise.
12860         (__ASSUME_SIGNALFD4): Likewise.
12861         (__ASSUME_ACCEPT4_SYSCALL): Likewise.
12863 2014-05-12  Andreas Schwab  <schwab@suse.de>
12865         [BZ #16932]
12866         * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
12867         (_nss_nis_gethostbyname4_r): Return error if item length is larger
12868         than maximum RPC packet size.
12869         * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
12870         * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
12871         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
12872         (_nss_nis_getservbyport_r): Likewise.
12874 2014-05-12  Will Newton  <will.newton@linaro.org>
12876         * malloc/Makefile (tests): Add tst-mallopt.
12877         * malloc/tst-mallopt.c: New file.
12879 2014-05-09  Roland McGrath  <roland@hack.frob.com>
12881         * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
12882         [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
12884 2014-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12886         * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
12887         (tst-tlsmod6.so): Likewise.
12889 2014-05-09  Roland McGrath  <roland@hack.frob.com>
12891         * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
12893 2014-05-09  Joseph Myers  <joseph@codesourcery.com>
12895         [BZ #16064]
12896         * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
12897         and <dl-procinfo.h>.
12898         (__fegetenv): Save SSE state in envp->__eip if supported.
12899         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
12900         envp->__eip if supported.
12901         * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
12902         and <dl-procinfo.h>.
12903         (__fesetenv): Always set __eip, __cs_selector, __opcode,
12904         __data_offset and __data_selector in environment to 0.  Set SSE
12905         state if supported.
12906         * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
12907         test-fenv-sse.
12908         [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
12909         -mfpmath=sse.
12910         * sysdeps/x86/fpu/test-fenv-sse.c: New file.
12912 2014-05-09  Will Newton  <will.newton@linaro.org>
12914         * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
12915         and libc_relro_required for ARM.
12916         * sysdeps/arm/preconfigure: Regenerate.
12918 2014-05-09  Dominik Vogt  <vogt@linux.vnet.ibm.com>
12919             Stefan Liebler  <stli@linux.vnet.ibm.com>
12921         * config.make.in (enable-lock-elision): New Makefile variable.
12922         * configure.ac: Likewise.
12923         * configure: Regenerate.
12924         * sysdeps/s390/configure.ac:
12925         Add check for gcc transactions support.
12926         * sysdeps/s390/configure: Regenerate.
12927         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
12928         Build elision files if enabled.
12929         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
12930         Add lock elision support for s390.
12931         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
12932         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
12933         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
12934         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
12935         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
12936         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
12937         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
12938         Likewise.
12939         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
12940         Likewise.
12941         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
12942         Likewise.
12943         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
12944         Likewise.
12945         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
12946         (__lll_timedlock_elision, __lll_lock_elision)
12947         (__lll_unlock_elision, __lll_trylock_elision)
12948         (lll_timedlock_elision, lll_lock_elision)
12949         (lll_unlock_elision, lll_trylock_elision): Add.
12950         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
12951         (pthread_mutex_t): Add lock elision support for s390.
12953 2014-05-14  Wilco  <wdijkstr@arm.com>
12955         * sysdeps/arm/fclrexcpt.c: Cleanup.
12956         * sysdeps/arm/fedisblxcpt.c: Cleanup.
12957         * sysdeps/arm/feenablxcpt.c: Cleanup.
12958         * sysdeps/arm/fegetenv.c: Cleanup.
12959         * sysdeps/arm/fegetexcept.c: Cleanup.
12960         * sysdeps/arm/fegetround.c: Cleanup.
12961         * sysdeps/arm/feholdexcpt.c: Cleanup.
12962         * sysdeps/arm/fesetenv.c: Cleanup.
12963         * sysdeps/arm/fesetround.c: Cleanup.
12964         * sysdeps/arm/feupdateenv.c: Cleanup.
12965         * sysdeps/arm/fgetexcptflg.c: Cleanup.
12966         * sysdeps/arm/fraiseexcpt.c: Cleanup.
12967         * sysdeps/arm/fsetexcptflg.c: Cleanup.
12968         * sysdeps/arm/ftestexcept.c: Cleanup.
12969         * sysdeps/arm/get-rounding-mode.h: Cleanup.
12970         * sysdeps/arm/setfpucw.c: Cleanup.
12972 2014-05-09  Will Newton  <will.newton@linaro.org>
12974         * sysdeps/arm/armv7/strcmp.S: New file.
12975         * NEWS: Mention addition of ARMv7 optimized strcmp.
12977 2014-05-08  Roland McGrath  <roland@hack.frob.com>
12979         * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
12980         look for %.ac rather than %.in.
12982         * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
12983         * sysdeps/unix/sysv/linux/configure.ac: Likewise.
12984         * sysdeps/mach/hurd/configure: Regenerated.
12985         * sysdeps/unix/sysv/linux/configure: Regenerated.
12987         * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
12989 2014-05-07  Steve Ellcey  <sellcey@mips.com>
12991         [BZ# 16922]
12992         * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
12993         (LONG_SUB): Ditto.
12994         (PTR_SUB): Ditto.
12996 2014-05-07  Andreas Schwab  <schwab@suse.de>
12998         * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
12999         when skipping over non-matching result from nscd.
13001 2014-05-07  Ondřej Bílka  <neleai@seznam.cz>
13003         [BZ #16876]
13004         * nptl/sockperf.c (client): Check socket return value.
13006         [BZ #16877]
13007         * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
13008         nscd security class.
13010 2014-05-06  Roland McGrath  <roland@hack.frob.com>
13012         * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
13013         * sysdeps/arm/unwind.h: ... here.
13015 2014-05-06  Aurelien Jarno  <aurelien@aurel32.net>
13017         [BZ# 16916]
13018         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
13019         Define.
13021 2014-05-06  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
13023         * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
13024         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
13025         multiarch strncpy for PPC64.
13026         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
13027         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
13028         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
13029         multiarch optimizations.
13030         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13031         (__libc_ifunc_impl_list): Likewise.
13032         * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
13033         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
13034         multiarch stpncpy for PPC64.
13035         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
13036         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
13038 2014-05-06  Andreas Schwab  <schwab@suse.de>
13040         [BZ #16912]
13041         * gmon/mcount.c (_MCOUNT_DECL): Use
13042         atomic_compare_and_exchange_bool_acq instead of
13043         catomic_compare_and_exchange_bool_acq.
13045 2014-05-05  Roland McGrath  <roland@hack.frob.com>
13047         * elf/Makefile (others, install-bin): Remove pldd.
13048         (pldd-modules): Variable removed.
13049         ($(objpfx)pldd): Target removed.
13050         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
13051         (others, install-bin): Append pldd here.
13052         ($(objpfx)pldd): New target.
13054         * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
13055         to 0, so the first #if test emitted later doesn't see it undefined.
13056         (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
13057         * sysdeps/gnu/errlist.c: Regenerated.
13059 2014-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13061         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
13062         [libc_hidden_builtin_def]: Define to empty value.
13063         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
13064         [libc_hidden_builtin_def]: Likewise.
13065         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
13066         [libc_hidden_builtin_def]: Likewise.
13067         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
13068         [libc_hidden_builtin_def]: Likewise.
13069         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
13070         __redirect_memcpy and define ifunc as default hidden symbol.
13071         * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
13072         * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
13074 2014-05-04  Adam Conrad  <adconrad@0c3.net>
13076         * locale/iso-4217.def: Reintroduce XDR currency.
13078 2014-05-04  Allan McRae  <allan@archlinux.org>
13080         * po/eo.po: Update Esperanto translation from translation project.
13082 2014-05-02  Carlos O'Donell  <carlos@redhat.com>
13084         * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
13085         and FEATURE_INDEX_MAX to 1.
13086         [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
13088 2014-05-01  Steve Ellcey  <sellcey@mips.com>
13090         * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
13091         * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
13092         * iconvdata/big5.c (ONE_DIRECTION): Define.
13093         * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
13094         * iconvdata/cp1255.c (ONE_DIRECTION): Define.
13095         * iconvdata/cp1258.c (ONE_DIRECTION): Define.
13096         * iconvdata/cp932.c (ONE_DIRECTION): Define.
13097         * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
13098         * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
13099         * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
13100         * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
13101         * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
13102         * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
13103         * iconvdata/gb18030.c (ONE_DIRECTION): Define.
13104         * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
13105         * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
13106         * iconvdata/gbk.c (ONE_DIRECTION): Define.
13107         * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
13108         * iconvdata/ibm930.c (ONE_DIRECTION): Define.
13109         * iconvdata/ibm932.c (ONE_DIRECTION): Define.
13110         * iconvdata/ibm933.c (ONE_DIRECTION): Define.
13111         * iconvdata/ibm935.c (ONE_DIRECTION): Define.
13112         * iconvdata/ibm937.c (ONE_DIRECTION): Define.
13113         * iconvdata/ibm939.c (ONE_DIRECTION): Define.
13114         * iconvdata/ibm943.c (ONE_DIRECTION): Define.
13115         * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
13116         * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
13117         * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
13118         * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
13119         * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
13120         * iconvdata/iso646.c (ONE_DIRECTION): Define.
13121         * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
13122         * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
13123         * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
13124         * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
13125         * iconvdata/johab.c (ONE_DIRECTION): Define.
13126         * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
13127         * iconvdata/sjis.c (ONE_DIRECTION): Define.
13128         * iconvdata/t.61.c (ONE_DIRECTION): Define.
13129         * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
13130         * iconvdata/tscii.c (ONE_DIRECTION): Define.
13131         * iconvdata/uhc.c (ONE_DIRECTION): Define.
13132         * iconvdata/unicode.c (ONE_DIRECTION): Define.
13133         * iconvdata/utf-16.c (ONE_DIRECTION): Define.
13134         * iconvdata/utf-32.c (ONE_DIRECTION): Define.
13135         * iconvdata/utf-7.c (ONE_DIRECTION): Define.
13137 2014-05-01  Roland McGrath  <roland@hack.frob.com>
13139         * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
13140         (_IO_JUMPS_OFFSET): Define to 0.
13142         * nptl/sysdeps/pthread/bits/libc-lock.h
13143         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
13144         (__libc_lock_define_initialized_recursive): Always define using
13145         initializer.  Modern compilers treat uninitialized (implicit zero) and
13146         explicit zero initializers the same (i.e. put the datum in bss).
13148 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
13150         * nscd/nscd-client.h: Include <string.h>.
13152 2014-05-01  David S. Miller  <davem@davemloft.net>
13154         [BZ #16885]
13155         * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
13156         multiple zero bytes exist at the end of a string.
13157         Reported by Aurelien Jarno <aurelien@aurel32.net>
13159         * string/test-strcmp.c (check): Add explicit test for situations where
13160         there are multiple zero bytes after the first.
13162 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
13164         [BZ #16890]
13165         * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
13166         when compiling wprintf.
13167         * stdio-common/tstdiomisc.c (t3): New function.
13168         (main): Call it.
13170 2014-05-01  Steve Ellcey  <sellcey@mips.com>
13172         * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
13173         * iconv/gconv_simple.c (ONE_DIRECTION): Define.
13174         * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
13175         * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
13177 2014-05-01  Steve Ellcey  <sellcey@mips.com>
13179         * stdlib/longlong.h: Updated from GCC.
13181 2014-05-01  Will Newton  <will.newton@linaro.org>
13182             Bernard Ogden  <bernie.ogden@linaro.org>
13184         * NEWS: Update fixed bug list.
13186         [BZ #15119]
13187         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
13189 2014-04-30  David S. Miller  <davem@davemloft.net>
13191         * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
13192         (libc_feholdexcept_setround_sparc_ctx): New function.
13193         (libc_fesetenv_sparc_ctx): Likewise.
13194         (libc_feupdateenv_sparc_ctx): Likewise.
13195         (libc_feholdsetround_sparc_ctx): Likewise.
13196         (libc_feholdexcept_setround_ctx): Define.
13197         (libc_feholdexcept_setroundf_ctx): Likewise.
13198         (libc_feholdexcept_setroundl_ctx): Likewise.
13199         (libc_fesetenv_ctx): Likewise.
13200         (libc_fesetenvf_ctx): Likewise.
13201         (libc_fesetenvl_ctx): Likewise.
13202         (libc_feupdateenv_ctx): Likewise.
13203         (libc_feupdateenvf_ctx): Likewise.
13204         (libc_feupdateenvl_ctx): Likewise.
13205         (libc_feresetround_ctx): Likewise.
13206         (libc_feresetroundf_ctx): Likewise.
13207         (libc_feresetroundl_ctx): Likewise.
13208         (libc_feholdsetround_ctx): Likewise.
13209         (libc_feholdsetroundf_ctx): Likewise.
13210         (libc_feholdsetroundl_ctx): Likewise.
13212         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
13213         with __USE_GNU instead of XOPEN cpp guards.
13215         * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
13216         0.
13218         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
13219         with XOPEN cpp guards.
13221 2014-04-30  Julian Brown  <julian@codesourcery.com>
13223         [BZ #16888]
13224         * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
13225         handling.
13227 2014-04-30  Joseph Myers  <joseph@codesourcery.com>
13229         [BZ #9894]
13230         * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
13231         Change to 2.6.32.
13232         (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
13233         * sysdeps/unix/sysv/linux/configure: Regenerated.
13234         * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
13235         * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
13236         * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
13237         * sysdeps/unix/sysv/linux/tile/configure: Likewise.
13238         * README: Update reference to required Linux kernel version.
13239         * manual/install.texi (Linux): Update reference to required Linux
13240         kernel headers version.
13241         * INSTALL: Regenerated.
13243         * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
13244         header inclusion.
13245         [POSIX] (limits.h): Likewise.
13246         [POSIX] (math.h): Likewise.
13247         [POSIX] (sys/wait.h): Likewise.
13248         * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
13249         function.
13250         [POSIX] (stddef.h): Do not allow header inclusion.
13252 2014-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13254         * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
13256 2014-04-30  Yang Yingliang  <yangyingliang@huawei.com>
13258         * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
13259         Return immediately after lll_futex_wake.
13261 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
13263         [BZ #16791]
13264         * nscd/nscd-client.h (datahead_init_common): Initialize entire
13265         structure.
13266         (datahead_init_pos): Call datahead_init_common early.
13267         (datahead_init_neg): Likewise.
13269         * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
13270         datahead_init_neg): New functions.
13271         * nscd/aicache.c (addhstaiX): Use them.
13272         * nscd/grpcache.c (cache_addgr): Likewise.
13273         * nscd/hstcache.c (cache_addhst): Likewise.
13274         * nscd/initgrcache.c (addinitgroupsX): Likewise.
13275         * nscd/netgroupcache.c (do_notfound): Likewise.
13276         (addgetnetgrentX): Likewise.
13277         (addinnetgrX): Likewise.
13278         * nscd/pwdcache.c (cache_addpw): Likewise.
13279         * nscd/servicescache.c (cache_addserv): Likewise.
13281 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
13282             Atsushi Onoe  <atsushi@onoe.org>
13284         [BZ #14308]
13285         [BZ #12994]
13286         [BZ #13651]
13287         * resolv/res_query.c (__libc_res_nsearch): Return if at least
13288         one response is valid.
13289         * resolv/res_send.c (send_dg): Check for validity of other
13290         response if the current response is a referral.
13292 2014-04-29  Steve Ellcey  <sellcey@mips.com>
13294         * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
13296 2014-04-29  Stefan Liebler  <stli@linux.vnet.ibm.com>
13298         [BZ #16823]
13299         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
13300         Always divide by positive zero when computing -Inf result.
13301         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
13302         * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
13304 2014-04-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13306         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
13307         FPSCR if value do not change.
13308         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
13309         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
13310         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
13311         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
13312         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
13313         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
13314         function.
13316 2014-05-29  Carlos O'Donell  <carlos@systemhalted.org>
13318         * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
13319         * sysdeps/unix/sysv/linux/hppa: Move directory from
13320         ports/systeps/unix/sysv/linux/hppa.
13321         * README: Update listing for hppa-*-linux-gnu.
13323 2014-04-28  Ondřej Bílka  <neleai@seznam.cz>
13325         [BZ #16754]
13326         * manual/stdio.texi (Hook functions): Fix types of stream hook
13327         functions.
13328         [BZ #16854]
13329         * socket/sys/socket.h: Fix typo in comment.
13331 2014-04-28  Wilco  <wdijkstr@arm.com>
13333         * sysdeps/arm/fenv_private.h: New file.
13334         * sysdeps/arm/math_private.h: New file.
13335         * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
13337 2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
13339         * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
13340         with __int128_t.
13341         (La_x86_64_retval): Likewise.
13343 2014-04-24  Ian Bolton  <ian.bolton@arm.com>
13345         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
13346         fpsr if value didn't change.
13347         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
13348         to fpcr if value didn't change.
13349         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
13350         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
13351         fpsr or fpcr if value didn't change.
13352         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
13353         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
13354         fpcr if value didn't change.
13355         * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
13356         to fpsr if value didn't change.
13358 2014-02-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
13360         * nptl/tst-sem3.c: Use test-skeleton.c
13361         (main): Rename to do_test.  Use return instead of
13362         exit.
13363         * nptl/tst-sem4.c: Use test-skeleton.c
13364         (main): Rename to do_test.
13366 2014-04-22  David S. Miller  <davem@davemloft.net>
13368         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
13369         (struct sigaction): New struct member __glibc_reserved0, change
13370         type of sa_flags to int.
13372 2014-04-22  Yufeng Zhang  <yufeng.zhang@arm.com>
13374         * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
13375         (COUNT_LEADING_ZEROS_0): Define for AArch64.
13377 2014-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
13379         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
13380         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
13382 2014-04-22  Will Newton  <will.newton@linaro.org>
13383             Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
13385         * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
13386         (__longjmp): Add longjmp and longjmp_target SystemTap
13387         probes.
13388         * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
13389         (__sigsetjmp): Add setjmp SystemTap probe.
13391 2014-04-17  Carlos O'Donell  <carlos@redhat.com>
13393         * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
13394         match manual order.
13396 2014-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13398         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
13400         * sysdeps/powerpc/fpu/fenv_private.h
13401         (libc_feholdexcept_setroundl_ctx): Define to
13402         libc_feholdexcept_setround_ppc_ctx.
13403         (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
13404         (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
13405         (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
13406         (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
13408 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
13410         * sysdeps/aarch64/math-tests.h: New file.
13412 2014-04-17  Sihai Yao  <sihai.ysh@alibaba-inc.com>
13414         * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
13415         New.
13416         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
13417         Check and set bit_AVX2_Usable.
13418         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
13419         macro.
13420         (bit_AVX2): Likewise.
13421         (index_AVX2_Usable): Likewise.
13422         (CPUID_AVX2): Likewise.
13423         (HAS_AVX2): Likewise.
13425 2014-04-17  Will Newton  <will.newton@linaro.org>
13427         * manual/setjmp.texi (System V contexts): Add note that
13428         calling setcontext on a context created by a call to a
13429         signal handler is undefined.  Update text to note that
13430         setcontext from a signal handler is possible but not
13431         recommended.
13433         [BZ #16629]
13434         * stdlib/tst-setcontext.c: Include signal.h.
13435         (main): Check that the signal stack before and
13436         after swapcontext is the same.
13438         * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
13439         Re-implement to restore registers in user code and avoid
13440         rt_sigreturn system call.
13442 2014-04-17  Wilco  <wdijkstr@arm.com>
13444         * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
13445         * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
13446         * math/test-fenv.c: Skip exception trap tests on targets which only
13447         support non-stop mode.
13449 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
13450             Wilco Dijkstra  <wilco.dijkstra@arm.com>
13452         * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
13453         (libc_feholdsetround_aarch64_ctx)
13454         (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
13455         (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
13456         (libc_feresetround_ctx, libc_feresetroundf_ctx)
13457         (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
13458         (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
13459         (libc_feresetround_noexl_ctx): Define.
13461 2014-04-16  Richard Henderson  <rth@redhat.com>
13463         * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
13465         * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
13466         unwind tables.
13468         * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
13469         const from the non-libc, non-ldso copy.
13471         * sysdeps/alpha/libm-test-ulps: Regenerate.
13473 2014-04-16  Ian Bolton  <ian.bolton@arm.com>
13474             Wilco Dijkstra  <wilco.dijkstra@arm.com>
13476         * sysdeps/aarch64/fpu/math_private.h: New file.
13478 2014-04-16  Marcus Shawcroft  <marcus.shawcroft@arm.com>
13480         * sysdeps/aarch64/libm-test-ulps: Regenerate.
13482 2014-04-16  Igor Zamyatin  <igor.zamyatin@intel.com>
13484         [BZ #16275]
13485         * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
13486         (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
13487         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
13488         Intel MPX bound registers before _dl_profile_fixup.
13489         * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
13490         registers after _dl_profile_fixup.  Save and restore bound
13491         registers bnd0/bnd1 when calling _dl_call_pltexit.
13492         * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
13493         (LR_BND_OFFSET): Likewise.
13494         (LRV_BND0_OFFSET): Likewise.
13495         (LRV_BND1_OFFSET): Likewise.
13497 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
13499         * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
13500         to...
13501         * sysdeps/mach/hurd/i386/tls.h: ... here.
13502         (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
13503         pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
13504         fields.
13506 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
13508         * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
13510 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
13512         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
13514 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
13516         [BZ #14770]
13517         * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
13518         * sysdeps/s390/configure: Regenerate.
13520         [BZ #16824]
13521         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
13522         Set round-to-nearest internally to reduce error accumulation.
13524 2014-04-16  Alan Modra  <amodra@gmail.com>
13526         [BZ #16740]
13527         [BZ #16619]
13528         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
13529         * math/libm-test.inc (frexp_test_data): Add tests.
13530         * NEWS: Update fixed bug list.
13532 2014-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
13534         * benchtests/Makefile: Depend on libraries in build directory.
13535         (bench-math): Separate out math tests.
13536         (bench-pthread): Separate out pthread tests.
13537         (bench): Include math and pthread tests.
13539 2014-04-14  Carlos O'Donell  <carlos@redhat.com>
13541         [BZ #16831]
13542         * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
13543         _dl_debug_initialize.
13545         * configure.ac: Remove SELinux header check.
13546         * configure: Regenerate.
13547         * nscd/selinux.c (perms): Array of const char* to permission names.
13548         (nscd_request_avc_has_perm): Call security_deny_unknown to find
13549         default policy. Call string_to_security_class and string_to_av_perm to
13550         translate strings. Enforce default policy and call avs_has_perm with
13551         results of translated strings.
13553 2014-04-13  David S. Miller  <davem@davemloft.net>
13555         * sysdeps/sparc/fpu/libm-test-ulps: Update.
13557 2014-04-12  Allan McRae  <allan@archlinux.org>
13559         [BZ #16838]
13560         * manual/string.texi (Collation Functions): Fix qsort argument
13561         order in example.
13562         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
13564 2014-04-11  Chris Metcalf  <cmetcalf@tilera.com>
13566         * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
13567         Make the test a no-op if there are no exceptions defined.
13569 2014-04-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
13571         * elf/Makefile (tests): make tst-dlopen-aout conditional on
13572         enable-hardcoded-path-in-tests
13574 2014-04-11  Will Newton  <will.newton@linaro.org>
13576         * benchtests/Makefile (extra-objs): Add json-lib.o.
13577         (bench-func): Tidy up JSON output.
13578         * benchtests/bench-skeleton.c: Include json-lib.h.
13579         (main): Use JSON library functions to do output of
13580         benchmark results.
13581         * benchtests/bench-timing-type.c (main): Output the
13582         timing type simply, leaving formatting to the user.
13583         * benchtests/json-lib.c: New file.
13584         * benchtests/json-lib.h: Likewise.
13586 2014-04-11  Torvald Riegel  <triegel@redhat.com>
13588         [BZ #15215]
13589         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
13590         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here.  Add missing
13591         memory barriers.  Add comments.
13592         * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
13593         * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
13594         * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
13595         * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
13596         * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
13597         * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
13599 2014-04-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
13601         * sysdeps/s390/s390-32/configure.ac: Unify file with ...
13602         * sysdeps/s390/s390-64/configure.ac: ... this ...
13603         * sysdeps/s390/configure.ac: ... to here.
13604         * sysdeps/s390/s390-32/configure: Delete file.
13605         * sysdeps/s390/s390-64/configure: Delete file.
13606         * sysdeps/s390/configure: Regenerate.
13608 2014-04-11  Joseph Anthony Pasquale Holsten  <joseph@josephholsten.com>
13610         * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
13612 2014-04-11  Will Newton  <will.newton@linaro.org>
13614         * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
13615         to zero if it is not defined elsewhere.  (mtrim): Test
13616         the value of MALLOC_DEBUG with #if rather than #ifdef.
13618 2014-04-10 Torvald Riegel  <triegel@redhat.com>
13620         * benchtests/pthread_once-inputs: New file.
13621         * benchtests/pthread_once-source.c: New file.
13622         * benchtests/README: Update documentation.
13624 2014-04-09  Igor Zamyatin  <igor.zamyatin@intel.com>
13625             H.J. Lu  <hongjiu.lu@intel.com>
13627         [BZ #16275]
13628         * config.h.in (HAVE_MPX_SUPPORT): New #undef.
13629         * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
13630         * sysdeps/x86_64/configure: Regenerated.
13631         * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
13632         macro.
13633         (REGISTER_SAVE_RAX): Likewise.
13634         (REGISTER_SAVE_RCX): Likewise.
13635         (REGISTER_SAVE_RDX): Likewise.
13636         (REGISTER_SAVE_RSI): Likewise.
13637         (REGISTER_SAVE_RDI): Likewise.
13638         (REGISTER_SAVE_R8): Likewise.
13639         (REGISTER_SAVE_R9): Likewise.
13640         (REGISTER_SAVE_BND0): Likewise.
13641         (REGISTER_SAVE_BND1): Likewise.
13642         (REGISTER_SAVE_BND2): Likewise.
13643         (_dl_runtime_resolve): Use them.  Save and restore Intel MPX
13644         bound registers when calling _dl_fixup.
13646 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13648         * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
13649         * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
13650         of its definition.
13651         * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
13652         * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
13653         * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
13654         * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
13655         * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
13656         * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
13657         * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
13659 2014-04-09  Peter Brett  <peter@peter-b.co.uk>
13661         [BZ #15514]
13662         * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
13663         pathconf(_PC_NAME_MAX).
13665 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13667         * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
13668         Remove macro usage.
13669         (__PTHREAD_SPINS): Move definition to ...
13670         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
13671         (__PTHREAD_SPINS): ... here.
13672         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
13673         (__PTHREAD_SPIN): Likewise.
13674         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
13675         (__PTHREAD_SPIN): Likewise.
13676         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
13677         (__PTHREAD_SPIN): Likewise.
13678         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
13679         (__PTHREAD_SPIN): Likewise.
13680         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
13681         (__PTHREAD_SPIN): Likewise.
13682         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
13683         (__PTHREAD_SPIN): Likewise.
13684         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
13685         (__PTHREAD_SPIN): Likewise.
13686         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
13687         (__PTHREAD_SPIN): Likewise.
13688         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
13689         (__PTHREAD_SPIN): Likewise.
13690         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
13691         (__PTHREAD_SPIN): Likewise.
13692         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
13693         (__PTHREAD_SPIN): Likewise.
13694         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
13695         (__PTHREAD_SPIN): Likewise.
13697         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
13698         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
13699         * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
13700         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
13701         imply folder.
13702         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
13703         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
13704         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
13705         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
13706         correct imply path.
13707         * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
13708         strlen symbol for non multi-arch builds.
13709         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
13710         missing hidden_def and weak_alias.
13712 2014-04-08  Carlos O'Donell  <carlos@redhat.com>
13714         * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
13716 2014-04-07  Will Newton  <will.newton@linaro.org>
13718         * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
13719         and contents.  [!_LIBC] Remove #ifndef and contents.
13720         (basename): Use ANSI prototype.  [_LIBC] Remove #idef.
13721         * string/memccpy.c (__memccpy): Use ANSI prototype.
13722         * string/memfrob.c (memfrob): Likewise.
13723         * string/strcoll.c (STRCOLL): Likewise.
13724         * string/strlen.c (strlen): Likewise.
13725         * string/strtok.c (STRTOK): Likewise.
13726         * string/strcat.c: Remove unused #include of memcopy.h.
13727         (strcat): Use ANSI prototype.
13728         * string/strchr.c: Remove unused #include of memcopy.h.
13729         (strchr): Use ANSI prototype.
13730         * string/strcmp.c: Remove unused #include of memcopy.h.
13731         (strcmp): Use ANSI prototype.
13732         * string/strcpy.c: Remove unused #include of memcopy.h.
13733         (strcpy): Use ANSI prototype.
13735 2014-04-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13737         * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
13738         * config.make.in (config-extra-cppflags): Set it from
13739         libc_extra_cppflags.
13740         * configure.ac (libc_extra_cflags): Make it accumulate over
13741         configure fragments.
13742         (libc_extra_cppflags): New flag.
13743         * configure. Regenerate.
13744         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
13745         (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
13746         not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
13747         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
13749         [BZ #16815]
13750         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
13751         result for FE_DOWNWARD rounding mode.
13752         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
13753         Likewise.
13754         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13756 2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>
13758         * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
13759         in function argument name.
13761 2014-04-03  David Svoboda  <svoboda@cert.org>
13763         [BZ #5666]
13764         * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
13765         explicitly.
13767 2014-04-03  Roland McGrath  <roland@hack.frob.com>
13769         * elf/dl-unmap-segments.h: New file.
13770         * sysdeps/generic/ldsodefs.h
13771         (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
13772         * elf/dl-close.c: Include <dl-unmap-segments.h>.
13773         * elf/dl-fptr.c: Likewise.
13774         (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
13775         * sysdeps/aarch64/tlsdesc.c: Likewise.
13776         * sysdeps/arm/tlsdesc.c: Likewise.
13777         * sysdeps/i386/tlsdesc.c: Likewise.
13778         * sysdeps/tile/dl-runtime.c: Likewise.
13779         * sysdeps/x86_64/tlsdesc.c: Likewise.
13780         * elf/dl-load.h: New file.
13781         * elf/dl-load.c: Include it.
13782         (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
13783         Macros moved to dl-load.h.
13784         (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
13785         (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
13786         Use _dl_unmap_segments in place of __munmap.
13787         Break out segment-mapping loop into ...
13788         * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
13790 2014-04-03  Will Newton  <will.newton@linaro.org>
13792         * elf/dl-lookup.c (do_lookup_x): Remove comment
13793         referring to nested function and move variable
13794         declarations down to before first use.
13796 2014-04-02  Joseph Myers  <joseph@codesourcery.com>
13798         [BZ #16799]
13799         [BZ #16800]
13800         * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
13801         with 0 numerator.
13802         * math/s_catanf.c (__catanf): Likewise.
13803         * math/s_catanh.c (__catanh): Likewise.
13804         * math/s_catanhf.c (__catanhf): Likewise.
13805         * math/s_catanhl.c (__catanhl): Likewise.
13806         * math/s_catanl.c (__catanl): Likewise.
13807         * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
13808         by positive zero when computing -Inf result.
13809         * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
13810         (catanh_test): Likewise.
13811         * sysdeps/i386/fpu/libm-test-ulps: Update.
13812         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13814         [BZ #16789]
13815         * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
13816         instead of using underflowing value in computing result.
13817         * math/s_clog10.c (__clog10): Likewise.
13818         * math/s_clog10f.c (__clog10f): Likewise.
13819         * math/s_clog10l.c (__clog10l): Likewise.
13820         * math/s_clogf.c (__clogf): Likewise.
13821         * math/s_clogl.c (__clogl): Likewise.
13822         * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
13823         (clog10_test): Likewise.
13824         * sysdeps/i386/fpu/libm-test-ulps: Update.
13825         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13827 2014-04-02  Alan Modra  <amodra@gmail.com>
13829         [BZ #16739]
13830         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
13831         output when value is near a power of two.  Use int64_t for lx and
13832         remove casts.  Use decimal rather than hex exponent constants.
13833         Don't use long double multiplication when double will suffice.
13834         * math/libm-test.inc (nextafter_test_data): Add tests.
13835         * NEWS: Add 16739 and 16786 to bug list.
13837         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
13839         * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
13841 2014-04-01  Will Newton  <will.newton@linaro.org>
13843         * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
13844         -fno-builtin.  (CFLAGS-bench-ffsll.c): Likewise.
13846 2014-04-01  Florian Weimer  <fweimer@redhat.com>
13848         [BZ #13347]
13849         * nptl/nptl-init.c (sighandler_setxid): Check system call result.
13850         * nptl/tst-setuid2.c: New file.
13851         * nptl/Makefile (xtests): Add tst-setuid2.
13853 2014-04-01  Alan Modra  <amodra@gmail.com>
13855         [BZ #16786]
13856         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
13858 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
13860         [BZ #6803]
13861         [BZ #6804]
13862         * math/w_scalb.c (__scalb): For non-SVID mode, check result and
13863         set errno as appropriate.
13864         * math/w_scalbf.c (__scalbf): Likewise.
13865         * math/w_scalbl.c (__scalbl): Likewise.
13866         * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
13867         ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
13868         * math/libm-test.inc (scalb_test_data): Add errno expectations.
13869         Add more NaN tests.
13871         [BZ #16349]
13872         * math/w_atan2.c: Include <errno.h>.
13873         (__atan2): Set errno for result underflowing to zero.
13874         * math/w_atan2f.c: Include <errno.h>.
13875         (__atan2f): Set errno for result underflowing to zero.
13876         * math/w_atan2l.c: Include <errno.h>.
13877         (__atan2l): Set errno for result underflowing to zero.
13878         * math/auto-libm-test-in: Don't allow missing errno for some atan2
13879         tests.
13880         * math/auto-libm-test-out: Regenerated.
13882 2014-03-31  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13884         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
13885         Encode instruction correctly in little endian.
13886         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
13887         Likewise.
13888         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
13889         Likewise.
13890         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
13891         Likewise.
13892         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
13893         Likewise.
13895 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
13897         [BZ #9894]
13898         * sysdeps/unix/sysv/linux/kernel-features.h
13899         [__sparc__ && !__arch64__ && !__sparc_v9__]
13900         (__ASSUME_SET_ROBUST_LIST): Do not define.
13901         [__sparc__ && !__arch64__ && !__sparc_v9__]
13902         (__ASSUME_FUTEX_LOCK_PI): Likewise.
13903         [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
13904         Likewise.
13905         * sysdeps/unix/sysv/linux/arm/kernel-features.h
13906         (__ASSUME_FUTEX_LOCK_PI): Undefine.
13907         (__ASSUME_REQUEUE_PI): Likewise.
13908         (__ASSUME_SET_ROBUST_LIST): Likewise.
13909         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
13910         [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
13911         Undefine.
13912         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13913         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
13914         Likewise.
13915         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
13916         Likewise.
13917         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
13918         Likewise.
13919         * sysdeps/unix/sysv/linux/mips/kernel-features.h
13920         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
13921         Undefine.
13922         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
13923         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
13924         Likewise.
13926         [BZ #16648]
13927         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13928         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
13929         * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
13931 2014-03-31  Will Newton  <will.newton@linaro.org>
13933         * benchtests/Makefile (bench): Add ffs and ffsll to list
13934         of tests.
13935         * benchtests/ffs-inputs: New file.
13936         * benchtests/ffsll-inputs: Likewise.
13938 2014-03-29  Joseph Myers  <joseph@codesourcery.com>
13940         [BZ #16770]
13941         * math/e_scalb.c (__ieee754_scalb): Check second argument is not
13942         too large before casting to int.
13943         * math/e_scalbf.c (__ieee754_scalbf): Likewise.
13944         * math/e_scalbl.c (__ieee754_scalbl): Likewise.
13945         * math/libm-test.inc (scalb_test_data): Add more tests.
13947 2014-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
13949         * benchtests/Makefile (DETAILED_OPT): New make option.
13950         (bench-func): Run benchmark program with -d if DETAILED_OPT is
13951         set.
13952         * benchtests/bench-skeleton.c: Include stdbool.h.
13953         (main): Store and print timings per input.
13954         * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
13955         member to each argument value.
13956         (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
13957         (_print_arg_data): Initialize per-input timing to 0.
13959         * benchtests/Makefile (timing-type): New binary.
13960         (bench-clean): Also remove bench-timing-type.
13961         (bench): New target for timing-type.
13962         (bench-func): Print output in JSON format.
13963         * benchtests/bench-skeleton.c (main): Print output in JSON
13964         format.
13965         * benchtests/bench-timing-type.c: New file.
13966         * benchtests/bench-timing.h (TIMING_TYPE): New macro.
13967         (TIMING_PRINT_STATS): Remove.
13968         * benchtests/scripts/bench.py (_print_arg_data): Store variant
13969         name separately.
13971         * benchtests/bench-modf.c: Remove.
13972         * benchtests/modf-inputs: New inputs file.
13974 2014-03-28  Joseph Myers  <joseph@codesourcery.com>
13976         [BZ #16362]
13977         * math/s_clog10.c (M_PI_LOG10E): New macro.
13978         (__clog10): Use M_PI_LOG10E instead of M_PI when real and
13979         imaginary parts are 0.
13980         * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
13981         (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
13982         imaginary parts are 0.
13983         * math/s_clog10l.c (M_PI_LOG10El): New macro.
13984         (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
13985         imaginary parts are 0.
13986         * math/libm-test.inc (clog10_test_data): Update expected results
13987         for when real and imaginary parts are 0.
13989 2014-03-27  Paul Pluzhnikov  <ppluzhnikov@google.com>
13991         * elf/dl-load.c: Finish conversion of __builtin_expect into
13992         __glibc_{un}likely.
13994 2014-03-27  Joseph Myers  <joseph@codesourcery.com>
13996         [BZ #16348]
13997         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
13998         1+x for argument with exponent below -67.
13999         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
14000         Likewise.
14001         * math/auto-libm-test-in: Add more tests of exp.
14002         * math/auto-libm-test-out: Regenerated.
14004 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
14006         [BZ #16759]
14007         * inet/getnetgrent_r.c (get_nonempty_val): New function.
14008         (nscd_getnetgrent): Use it.
14010         [BZ #16760]
14011         * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
14012         of stpcpy.
14014 2014-03-27  Andi Kleen  <ak@linux.intel.com>
14016         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
14017         (lll_robust_lock, lll_cond_lock, lll_timedlock)
14018         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
14019         (lll_robust_unlock): Remove out of line section. Use cfi
14020         intrinsics.
14021         (LLL_STUB_UNWIND_INFO*): Remove.
14022         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
14023         (lll_robust_lock, lll_cond_lock, lll_timedlock)
14024         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
14025         (lll_robust_unlock): Remove out of line section. Use cfi
14026         intrinsics.
14027         (LLL_STUB_UNWIND_INFO*): Remove.
14029 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
14031         [BZ #16758]
14032         * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
14033         blank values.
14035 2014-03-26  Paul Pluzhnikov  <ppluzhnikov@google.com>
14037         * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
14039 2014-03-26  Joseph Myers  <joseph@codesourcery.com>
14041         [BZ #16198]
14042         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
14043         fnstenv.
14044         * math/test-fenv-preserve.c: New file.
14045         * math/Makefile (tests): Add test-fenv-preserve.
14047 2014-03-26  Will Newton <will.newton@linaro.org>
14049         * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
14051 2014-03-25  Roland McGrath  <roland@hack.frob.com>
14053         * scripts/versionlist.awk: Partition the version sets and emit all
14054         GLIBC_* (sorted) before all others (sorted).
14056 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
14058         * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
14059         GLIBC_2.2.5 version.
14061 2014-03-25 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14063         * scripts/localplt.awk: Check for PLT generated by internal IFUNC
14064         calls.
14066         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
14067         previous change.
14069         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14071 2014-03-25  Andreas Schwab  <schwab@suse.de>
14073         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
14074         label to be used after in6ailist is initialized.
14076 2014-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14078         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
14079         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
14081 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
14083         [BZ #16357]
14084         [BZ #16599]
14085         * math/gen-auto-libm-tests.c (fp_format_desc): Add field
14086         min_plus_half.
14087         (fp_formats): Update initializers.
14088         (init_fp_formats): Initialize new field.
14089         (output_for_one_input_case): Allow underflow for results up to
14090         min_plus_half.
14091         * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
14092         * math/auto-libm-test-in: Don't mark some underflows from asin and
14093         atanh as spurious.
14094         * math/auto-libm-test-out: Regenerated.
14095         * sysdeps/i386/fpu/libm-test-ulps: Update.
14096         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14098 2014-03-25  Andreas Schwab  <schwab@suse.de>
14100         * libio/Makefile (tst-ftell-partial-wide-ENV)
14101         (tst-ftell-active-handler-ENV): Define.
14103 2014-03-25  Stefan Liebler <stli@linux.vnet.ibm.com>
14105         * NEWS: Add 16712, 16713, 16714 to fixed bug list.
14107 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
14109         * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
14111 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
14113         * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
14114         * sysdeps/x86_64/fpu/multiarch/e_exp.c
14115         [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
14117 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
14119         [BZ #16634]
14120         * elf/dl-load.c (open_verify): Add mode parameter.
14121         Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
14122         (open_path): Change from boolean 'secure' to complete flag 'mode'
14123         (_dl_map_object): Adjust.
14124         * elf/Makefile (tests): Add tst-dlopen-aout.
14125         * elf/tst-dlopen-aout.c: New test.
14127 2014-03-24  Stefan Liebler <stli@linux.vnet.ibm.com>
14129         [BZ #16714]
14130         * sysdeps/unix/sysv/linux/s390/bits/stat.h
14131         (struct stat): Rename member pad0 to __glibc_reserved0.
14133         [BZ #16712]
14134         * sysdeps/s390/s390-32/bits/wordsize.h
14135         (__WORDSIZE32_SIZE_ULONG): New define.
14136         * sysdeps/s390/s390-64/bits/wordsize.h
14137         (__WORDSIZE32_SIZE_ULONG): Likewise.
14138         * sysdeps/generic/stdint.h (SIZE_MAX):
14139         Define as UL if __WORDSIZE32_SIZE_ULONG.
14141         [BZ #16713]
14142         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
14143         (__glibc_reserved0): New variable.
14144         (sa_flags): Change type to int.
14146         * posix/Makefile (before-compile): Use += before-compile instead
14147         of a :=.
14149         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
14150         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
14152 2014-03-20  Andreas Schwab  <schwab@suse.de>
14154         [BZ #16743]
14155         * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
14156         non-matching result from nscd.
14158 2014-03-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
14160         * scripts/bench.py: Moved to ...
14161         * benchtests/scripts/bench.py: ... here.
14162         * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
14164 2014-03-24  Andreas Schwab  <schwab@suse.de>
14166         [BZ #16002]
14167         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
14168         alloca_account and account alloca use for struct in6ailist.
14170 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
14172         [BZ #16284]
14173         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
14174         rounding mode to recompute results that overflow to infinity or
14175         underflow to zero.
14176         * math/auto-libm-test-in: Don't mark tests as expected to fail for
14177         bug 16284.
14178         * math/auto-libm-test-out: Regenerated.
14179         * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
14180         (ccosh_test): Likewise.
14181         (csin_test_data): Use plus_oflow.
14182         (csin_test): Use ALL_RM_TEST.
14183         (csinh_test_data): Use plus_oflow.
14184         (csinh_test): Use ALL_RM_TEST.
14185         * sysdeps/i386/fpu/libm-test-ulps: Update.
14186         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14188 2014-03-21  Joseph Myers  <joseph@codesourcery.com>
14190         * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
14191         * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
14192         * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
14194         [BZ #16731]
14195         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
14196         when x - 1 is zero.
14197         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
14198         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
14199         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
14200         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
14201         argument is 1.
14202         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
14203         * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
14204         zero.
14205         * math/libm-test.inc (log_test): Use ALL_RM_TEST.
14206         * sysdeps/i386/fpu/libm-test-ulps: Update.
14207         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14209 2014-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
14211         * scripts/bench.pl: Remove file.
14212         * scripts/bench.py: New benchmark script.
14213         * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
14214         * benchtests/README: Mention python dependency.
14215         * scripts/pylintrc: New file.
14216         * scripts/pylint: New file.
14218         * bits/mathdef.h: Use #ifdef instead of #if.
14219         * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
14220         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
14221         * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
14222         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
14223         * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
14224         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
14226 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14227             Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
14229         * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
14230         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
14231         and strpbrk-ppc64 objects.
14232         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
14233         (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
14234         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
14235         multiarch strpbrk for POWER7.
14236         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
14237         multiarch strpbrk for PPC64.
14238         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
14239         ifunc selector.
14240         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
14241         strpbrk for POWER7.
14243 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
14245         * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
14246         (atan_test): Likewise.
14247         (atanh_test_data): Use NO_TEST_INLINE for two tests.
14248         (atanh_test): Use ALL_RM_TEST.
14249         (atan2_test_data): Likewise.
14250         (cabs_test): Likewise.
14251         (cacosh_test): Likewise.
14252         (carg_test): Likewise.
14253         (casin_test): Likewise.
14254         (casinh_test): Likewise.
14255         (cbrt_test): Likewise.
14256         (csqrt_test): Likewise.
14257         (erf_test): Likewise.
14258         (erfc_test): Likewise.
14259         (pow10_test): Likewise.
14260         (exp2_test): Likewise.
14261         (hypot_test): Likewise.
14262         (j0_test): Likewise.
14263         (j1_test): Likewise.
14264         (lgamma_test): Likewise.
14265         (gamma_test): Likewise.
14266         (sincos_test): Likewise.
14267         (tanh_test): Likewise.
14268         (y0_test): Likewise.
14269         (y1_test): Likewise.
14270         * sysdeps/i386/fpu/libm-test-ulps: Update.
14271         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14273 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14275         * string/strcspn.c (strcspn): Using macro to redefine symbol name.
14276         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
14277         and strcspn-ppc64 objects.
14278         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
14279         (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
14280         * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
14281         multiarch strcspn for POWER7.
14282         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
14283         multiarch strcspn for PPC64.
14284         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
14285         ifunc selector.
14286         * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
14287         strcspn for POWER7.
14289 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
14291         * math/gen-libm-test.pl (generate_testfile): Expect only function
14292         name as argument to AUTO_TESTS_* and pass results for all rounding
14293         modes to parse_args.
14294         (parse_auto_input): Separate inputs of automatic tests from
14295         outputs before storing in %auto_tests.
14296         * math/libm-test.inc (acos_test_data): Update call to
14297         AUTO_TESTS_f_f.
14298         (acos_test): Use ALL_RM_TEST.
14299         (acos_tonearest_test_data): Remove.
14300         (acos_test_tonearest): Likewise.
14301         (acos_towardzero_test_data): Likewise.
14302         (acos_test_towardzero): Likewise.
14303         (acos_downward_test_data): Likewise.
14304         (acos_test_downward): Likewise.
14305         (acos_upward_test_data): Likewise.
14306         (acos_test_upward): Likewise.
14307         (acosh_test_data): Update call to AUTO_TESTS_f_f.
14308         (asin_test_data): Likewise.
14309         (asin_test): Use ALL_RM_TEST.
14310         (asin_tonearest_test_data): Remove.
14311         (asin_test_tonearest): Likewise.
14312         (asin_towardzero_test_data): Likewise.
14313         (asin_test_towardzero): Likewise.
14314         (asin_downward_test_data): Likewise.
14315         (asin_test_downward): Likewise.
14316         (asin_upward_test_data): Likewise.
14317         (asin_test_upward): Likewise.
14318         (asinh_test_data): Update call to AUTO_TESTS_f_f.
14319         (atan_test_data): Likewise.
14320         (atanh_test_data): Likewise.
14321         (atan2_test_data): Update call to AUTO_TESTS_ff_f.
14322         (cabs_test_data): Update call to AUTO_TESTS_c_f.
14323         (carg_test_data): Likewise.
14324         (cbrt_test_data): Update call to AUTO_TESTS_f_f.
14325         (ccos_test_data): Update call to AUTO_TESTS_c_c.
14326         (ccosh_test_data): Likewise.
14327         (cexp_test_data): Likewise.
14328         (clog_test_data): Likewise.
14329         (clog10_test_data): Likewise.
14330         (cos_test_data): Update call to AUTO_TESTS_f_f.
14331         (cos_test): Use ALL_RM_TEST.
14332         (cos_tonearest_test_data): Remove.
14333         (cos_test_tonearest): Likewise.
14334         (cos_towardzero_test_data): Likewise.
14335         (cos_test_towardzero): Likewise.
14336         (cos_downward_test_data): Likewise.
14337         (cos_test_downward): Likewise.
14338         (cos_upward_test_data): Likewise.
14339         (cos_test_upward): Likewise.
14340         (cosh_test_data): Update call to AUTO_TESTS_f_f.
14341         (cosh_test): Use ALL_RM_TEST.
14342         (cosh_tonearest_test_data): Remove.
14343         (cosh_test_tonearest): Likewise.
14344         (cosh_towardzero_test_data): Likewise.
14345         (cosh_test_towardzero): Likewise.
14346         (cosh_downward_test_data): Likewise.
14347         (cosh_test_downward): Likewise.
14348         (cosh_upward_test_data): Likewise.
14349         (cosh_test_upward): Likewise.
14350         (cpow_test_data): Update call to AUTO_TESTS_cc_c.
14351         (csqrt_test_data): Update call to AUTO_TESTS_c_c.
14352         (ctan_test_data): Likewise.
14353         (ctan_test): Use ALL_RM_TEST.
14354         (ctan_tonearest_test_data): Remove.
14355         (ctan_test_tonearest): Likewise.
14356         (ctan_towardzero_test_data): Likewise.
14357         (ctan_test_towardzero): Likewise.
14358         (ctan_downward_test_data): Likewise.
14359         (ctan_test_downward): Likewise.
14360         (ctan_upward_test_data): Likewise.
14361         (ctan_test_upward): Likewise.
14362         (ctanh_test_data): Update call to AUTO_TESTS_c_c.
14363         (ctanh_test): Use ALL_RM_TEST.
14364         (ctanh_tonearest_test_data): Remove.
14365         (ctanh_test_tonearest): Likewise.
14366         (ctanh_towardzero_test_data): Likewise.
14367         (ctanh_test_towardzero): Likewise.
14368         (ctanh_downward_test_data): Likewise.
14369         (ctanh_test_downward): Likewise.
14370         (ctanh_upward_test_data): Likewise.
14371         (ctanh_test_upward): Likewise.
14372         (erf_test_data): Update call to AUTO_TESTS_f_f.
14373         (erfc_test_data): Likewise.
14374         (exp_test_data): Likewise.
14375         (exp_test): Use ALL_RM_TEST.
14376         (exp_tonearest_test_data): Remove.
14377         (exp_test_tonearest): Likewise.
14378         (exp_towardzero_test_data): Likewise.
14379         (exp_test_towardzero): Likewise.
14380         (exp_downward_test_data): Likewise.
14381         (exp_test_downward): Likewise.
14382         (exp_upward_test_data): Likewise.
14383         (exp_test_upward): Likewise.
14384         (exp10_test_data): Update call to AUTO_TESTS_f_f.
14385         (exp10_test): Use ALL_RM_TEST.
14386         (exp10_tonearest_test_data): Remove.
14387         (exp10_test_tonearest): Likewise.
14388         (exp10_towardzero_test_data): Likewise.
14389         (exp10_test_towardzero): Likewise.
14390         (exp10_downward_test_data): Likewise.
14391         (exp10_test_downward): Likewise.
14392         (exp10_upward_test_data): Likewise.
14393         (exp10_test_upward): Likewise.
14394         (exp2_test_data): Update call to AUTO_TESTS_f_f.
14395         (expm1_test_data): Likewise.
14396         (expm1_test): Use ALL_RM_TEST.
14397         (expm1_tonearest_test_data): Remove.
14398         (expm1_test_tonearest): Likewise.
14399         (expm1_towardzero_test_data): Likewise.
14400         (expm1_test_towardzero): Likewise.
14401         (expm1_downward_test_data): Likewise.
14402         (expm1_test_downward): Likewise.
14403         (expm1_upward_test_data): Likewise.
14404         (expm1_test_upward): Likewise.
14405         (fma_test_data): Update call to AUTO_TESTS_fff_f.
14406         (fma_test): Use ALL_RM_TEST.
14407         (fma_towardzero_test_data): Remove.
14408         (fma_test_towardzero): Likewise.
14409         (fma_downward_test_data): Likewise.
14410         (fma_test_downward): Likewise.
14411         (fma_upward_test_data): Likewise.
14412         (fma_test_upward): Likewise.
14413         (hypot_test_data): Update call to AUTO_TESTS_ff_f.
14414         (j0_test_data): Update call to AUTO_TESTS_f_f.
14415         (j1_test_data): Likewise.
14416         (jn_test_data): Update call to AUTO_TESTS_if_f.
14417         (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
14418         (log_test_data): Update call to AUTO_TESTS_f_f.
14419         (log10_test_data): Likewise.
14420         (log1p_test_data): Likewise.
14421         (log2_test_data): Likewise.
14422         (pow_test_data): Update call to AUTO_TESTS_ff_f.
14423         (pow_tonearest_test_data): Likewise.
14424         (sin_test_data): Update call to AUTO_TESTS_f_f.
14425         (sin_test): Use ALL_RM_TEST.
14426         (sin_tonearest_test_data): Remove.
14427         (sin_test_tonearest): Likewise.
14428         (sin_towardzero_test_data): Likewise.
14429         (sin_test_towardzero): Likewise.
14430         (sin_downward_test_data): Likewise.
14431         (sin_test_downward): Likewise.
14432         (sin_upward_test_data): Likewise.
14433         (sin_test_upward): Likewise.
14434         (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
14435         (sinh_test_data): Update call to AUTO_TESTS_f_f.
14436         (sinh_test): Use ALL_RM_TEST.
14437         (sinh_tonearest_test_data): Remove.
14438         (sinh_test_tonearest): Likewise.
14439         (sinh_towardzero_test_data): Likewise.
14440         (sinh_test_towardzero): Likewise.
14441         (sinh_downward_test_data): Likewise.
14442         (sinh_test_downward): Likewise.
14443         (sinh_upward_test_data): Likewise.
14444         (sinh_test_upward): Likewise.
14445         (sqrt_test_data): Update call to AUTO_TESTS_f_f.
14446         (sqrt_test): Use ALL_RM_TEST.
14447         (sqrt_tonearest_test_data): Remove.
14448         (sqrt_test_tonearest): Likewise.
14449         (sqrt_towardzero_test_data): Likewise.
14450         (sqrt_test_towardzero): Likewise.
14451         (sqrt_downward_test_data): Likewise.
14452         (sqrt_test_downward): Likewise.
14453         (sqrt_upward_test_data): Likewise.
14454         (sqrt_test_upward): Likewise.
14455         (tan_test_data): Update call to AUTO_TESTS_f_f.
14456         (tan_test): Use ALL_RM_TEST.
14457         (tan_tonearest_test_data): Remove.
14458         (tan_test_tonearest): Likewise.
14459         (tan_towardzero_test_data): Likewise.
14460         (tan_test_towardzero): Likewise.
14461         (tan_downward_test_data): Likewise.
14462         (tan_test_downward): Likewise.
14463         (tan_upward_test_data): Likewise.
14464         (tan_test_upward): Likewise.
14465         (tanh_test_data): Update call to AUTO_TESTS_f_f.
14466         (tgamma_test_data): Likewise.
14467         (y0_test_data): Likewise.
14468         (y1_test_data): Likewise.
14469         (yn_test_data): Update call to AUTO_TESTS_if_f.
14470         (main): Do not call removed functions.
14472 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
14474         * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
14475         (ldexp_test_data): Remove.
14476         (ldexp_test): Move to after scalbn_test.  Use ALL_RM_TEST with
14477         scalbn_test_data.
14478         (scalb_test): Use ALL_RM_TEST.
14480 2014-03-19  Andreas Schwab  <schwab@suse.de>
14482         * nscd/nscd.service: Also invalidate netgroup cache on reload.
14484 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
14486         [BZ #16649]
14487         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14488         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
14489         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
14490         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14491         (__ASSUME_PREADV): Undefine.
14492         (__ASSUME_PWRITEV): Likewise.
14494 2014-03-18  Roland McGrath  <roland@hack.frob.com>
14496         * bits/mman-linux.h: Add comment about non-Linux use.
14497         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
14498         bits/mman-linux.h resting place.
14500         * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
14501         * bits/mman-linux.h: ... here.
14503 2014-03-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14505         * conform/conformtest.pl: Add standard definition when calling C
14506         preprocessor on data files.
14507         (checknamespace): Remove unused variable.
14509 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
14511         * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
14512         minus_oflow, plus_uflow and minus_uflow in expected results.
14513         * math/libm-test.inc (scalbn_test_data): Add more tests of
14514         negative arguments.  Use plus_oflow, minus_oflow, plus_uflow and
14515         minus_uflow.
14516         (scalbn_test): Use ALL_RM_TEST.
14517         (scalbln_test_data): Add more tests of negative arguments.  Use
14518         plus_oflow, minus_oflow, plus_uflow and minus_uflow.
14519         (scalbln_test): Use ALL_RM_TEST.
14521 2014-03-18  Roland McGrath  <roland@hack.frob.com>
14523         * scripts/abilist.awk: Ignore symbols marked with .hidden.
14525 2014-03-18  Will Newton  <will.newton@linaro.org>
14527         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
14528         inaccurate comment.
14530 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
14532         * Makerules [!subdir] (check-abi): Exit with error status if a
14533         test failed.
14535 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
14537         * math/libm-test.inc (nearbyint_test_data): Include all tests used
14538         for rint.  Include results for all rounding modes.
14539         (nearbyint_test): Use ALL_RM_TEST.
14540         (rint_test_data): Include all tests used for nearbyint.
14542 2014-03-17  Will Newton  <will.newton@linaro.org>
14544         * nptl/sysdeps/pthread/pthread.h: Revert previous
14545         change.
14547         * sysdeps/generic/ldsodefs.h: Revert previous
14548         change.
14550         * libio/genops.c: Revert previous change.
14551         * libio/libioP.h: Likewise.
14552         * stdio-common/vfprintf.c: Likewise.
14554         * sysdeps/generic/math_private.h: Revert previous
14555         change.
14557         * sysdeps/generic/math_private.h: Check whether
14558         HAVE_RM_CTX is defined with #ifdef rather
14559         than #if.
14561         * argp/argp-fmtstream.h: Check whether
14562         __STRICT_ANSI__ is defined with #ifdef rather
14563         than #if.
14564         * argp/argp.h: Likewise.
14566         * libio/genops.c: Check whether
14567         _IO_JUMPS_OFFSET is defined with #ifdef rather
14568         than #if.
14569         * libio/libioP.h: Likewise.
14570         * stdio-common/vfprintf.c: Likewise.
14572         * sysdeps/generic/ldsodefs.h: Check whether
14573         HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
14574         than #if.
14576         * nptl/sysdeps/pthread/pthread.h: Check
14577         __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
14578         its value.
14580 2014-03-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
14582         * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
14583         setting O_APPEND.
14584         * libio/tst-ftell-active-handler.c (do_append_test): Add a
14585         test case.
14587         [BZ #16680]
14588         * libio/fileops.c (_IO_file_open): Seek to end of file but
14589         don't cache the offset.
14590         (get_file_offset): Remove function.
14591         (do_ftell): Use cached offset when available.
14592         * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
14593         don't cache the offset.
14594         * libio/tst-ftell-active-handler.c (do_rewind_test): New test
14595         case.
14596         (do_one_test): Call it.
14597         (do_ftell_test): Fix up expected old offset for a+ mode.
14598         * libio/wfileops.c (do_ftell_wide): Used cached offset when
14599         available.
14601         * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
14602         up test status with function return status.
14603         (do_write_test): Likewise.
14604         (do_append_test): Likewise.
14606         * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
14607         && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
14608         Remove.
14610 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
14612         * math/gen-libm-test.pl (parse_args): Handle results specified for
14613         each rounding mode separately.
14614         * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
14615         tests and results from lrint_tonearest_test_data,
14616         lrint_towardzero_test_data, lrint_downward_test_data and
14617         lrint_upward_test_data.
14618         (lrint_test): Use ALL_RM_TEST.
14619         (lrint_tonearest_test_data): Remove.
14620         (lrint_test_tonearest): Likewise.
14621         (lrint_towardzero_test_data): Likewise.
14622         (lrint_test_towardzero): Likewise.
14623         (lrint_downward_test_data): Likewise.
14624         (lrint_test_downward): Likewise.
14625         (lrint_upward_test_data): Likewise.
14626         (lrint_test_upward): Likewise.
14627         (llrint_test_data): Merge in per-rounding-mode tests and results
14628         from llrint_tonearest_test_data, llrint_towardzero_test_data,
14629         llrint_downward_test_data and llrint_upward_test_data.
14630         (llrint_test): Use ALL_RM_TEST.
14631         (llrint_tonearest_test_data): Remove.
14632         (llrint_test_tonearest): Likewise.
14633         (llrint_towardzero_test_data): Likewise.
14634         (llrint_test_towardzero): Likewise.
14635         (llrint_downward_test_data): Likewise.
14636         (llrint_test_downward): Likewise.
14637         (llrint_upward_test_data): Likewise.
14638         (llrint_test_upward): Likewise.
14639         (rint_test_data): Merge in per-rounding-mode tests and results
14640         from rint_tonearest_test_data, rint_towardzero_test_data,
14641         rint_downward_test_data and rint_upward_test_data.  Add
14642         per-rounding-mode results for tests not in those arrays.
14643         (rint_test): Use ALL_RM_TEST.
14644         (rint_tonearest_test_data): Remove.
14645         (rint_test_tonearest): Likewise.
14646         (rint_towardzero_test_data): Likewise.
14647         (rint_test_towardzero): Likewise.
14648         (rint_downward_test_data): Likewise.
14649         (rint_test_downward): Likewise.
14650         (rint_upward_test_data): Likewise.
14651         (rint_test_upward): Likewise.
14652         (main): Don't call removed functions.
14654 2014-03-14  Roland McGrath  <roland@hack.frob.com>
14656         * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
14657         "Compiled on ..." crapola.  It is anti-useful.
14659 2014-03-14  Joseph Myers  <joseph@codesourcery.com>
14661         * scripts/evaluate-test.sh: Handle fourth argument to determine
14662         whether test run should stop on failure.
14663         * Makeconfig (stop-on-test-failure): New variable.
14664         (evaluate-test): Pass fourth argument to evaluate-test.sh based on
14665         $(stop-on-test-failure).
14666         * Makefile (tests): Give a summary of results from testing and
14667         exit with failure status if they include an ERROR or FAIL.
14668         (xtests): Likewise.
14669         * manual/install.texi (Configuring and compiling): Mention
14670         stop-on-test-failure=y.
14671         * INSTALL: Regenerated.
14673 2014-03-14  Roland McGrath  <roland@hack.frob.com>
14675         * scripts/versionlist.awk: New file.
14676         * Makerules [$(build-shared) = yes]
14677         (postclean-generated): Add Versions.def, not Versions.def.v and
14678         Versions.def.v.i.
14679         ($(common-objpfx)Versions.def.v.i): Target removed.
14680         ($(common-objpfx)Versions.def): New target.
14681         ($(common-objpfx)Versions.all): Depend on that rather that
14682         $(common-objpfx)Versions.def.v.
14683         * Versions.def: File removed.
14685         * Makeconfig (+gccwarn): Add -Wundef.
14686         * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
14687         a dl-sysdep.h breaking its contract.
14688         [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
14689         * include/stackinfo.h: New file.
14690         * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
14691         * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
14692         * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
14693         * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
14694         * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
14695         * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
14696         * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14697         * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14698         * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14699         * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14700         * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14701         * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
14702         * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14703         * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14704         * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14706 2014-03-14  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14708         [BZ #16707]
14709         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
14710         implementation.
14711         * math/libm-test.inc (round_test_data): Add more tests.
14713         [BZ #16706]
14714         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
14715         implementation.
14716         * math/libm-test.inc (nearbyint_test_data): Add more tests.
14718         [BZ #16701]
14719         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
14720         implementation.
14721         * math/libm-test.inc (ceil_test_data): Add more tests.
14723         * math/libm-test.inc (trunc_test_data): Add more tests related to
14724         BZ#16414.
14726 2014-03-14  Roland McGrath  <roland@hack.frob.com>
14728         * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
14729         with #if rather than #ifdef.
14730         * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
14732 2014-03-14  H.J. Lu  <hongjiu.lu@intel.com>
14734         * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
14735         first.  Disable AVX-512 GCC support if assembler doesn't support
14736         it.
14737         * sysdeps/x86_64/configure: Regenerated.
14739 2014-03-13  Carlos O'Donell  <carlos@redhat.com>
14741         * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
14742         [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
14743         (__old_pthread_attr_setstack): Likewise.
14744         * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
14745         [!_STACK_GROWS_DOWN]: Likewise.
14747 2014-03-13  Mike Frysinger  <vapier@gentoo.org>
14749         * config.make.in (have-bash2): Delete.
14750         * configure.ac (libc_cv_have_bash2): Delete.
14751         * configure: Regenerate.
14752         * elf/Makefile (common-ldd-rewrite): Rename to ...
14753         (ldd-rewrite): ... this.  Move bash-ldd-rewrite content to end.
14754         (sh-ldd-rewrite): Delete.
14755         (bash-ldd-rewrite): Delete.
14756         (have-bash2): Delete checks.
14757         [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
14758         ldd-rewrite.
14760         * config.make.in (have-ksh): Delete.
14761         (KSH): Delete.
14762         * configure.ac (libc_cv_have_ksh): Delete.
14763         * configure: Regenerate.
14765         * elf/Makefile: Delete $(have-ksh) check.
14766         ($(objpfx)sotruss): Change KSH to BASH.
14767         * elf/sotruss.ksh: Rename to ...
14768         * elf/sotruss.sh: ... this.  Change @KSH@ to @BASH@.  Change
14769         function style to match POSIX.  Drop ksh vim mode setting.
14771         * manual/time.texi (Specifying the Time Zone with TZ): Change
14772         Tuesday to Thursday.
14774         * debug/tst-longjmp_chk2.c: Update header comment.
14775         (stackoverflow_handler): Add comment.  Call assert on pass value.
14777 2014-03-13  Igor Zamyatin  <igor.zamyatin@intel.com>
14779         [BZ #16194]
14780         * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
14781         (HAVE_AVX512_ASM_SUPPORT): Likewise.
14782         * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
14783         (La_x86_64_vector): Add zmm.
14784         * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
14785         (modules-names): Add tst-auditmod10a and tst-auditmod10b.
14786         ($(objpfx)tst-audit10): New target.
14787         ($(objpfx)tst-audit10.out): Likewise.
14788         (tst-audit10-ENV): New.
14789         (AVX512-CFLAGS): Likewise.
14790         (CFLAGS-tst-audit10.c): Likewise.
14791         (CFLAGS-tst-auditmod10a.c): Likewise.
14792         (CFLAGS-tst-auditmod10b.c): Likewise.
14793         * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
14794         HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
14795         * sysdeps/x86_64/configure: Regenerated.
14796         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
14797         AVX-512 zmm register support.
14798         (_dl_x86_64_save_sse): Likewise.
14799         (_dl_x86_64_restore_sse): Likewise.
14800         * sysdeps/x86_64/dl-trampoline.h: Updated to support different
14801         size vector registers.
14802         * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
14803         (ZMM_SIZE): Likewise.
14804         * sysdeps/x86_64/tst-audit10.c: New file.
14805         * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
14806         * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
14808 2014-03-13  Roland McGrath  <roland@hack.frob.com>
14810         * configure.ac (HAVE_EHDR_START): New check.
14811         * configure: Regenerated.
14812         * config.h.in (HAVE_EHDR_START): New #undef.
14813         * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
14814         assuming the lowest-addressed segment maps the start of the file.
14816 2014-03-13  Joseph Myers  <joseph@codesourcery.com>
14818         * INSTALL: Regenerated.
14820 2014-03-13  Will Newton  <will.newton@linaro.org>
14822         * manual/setjmp.texi (System V contexts): Improve
14823         clarity and grammar of documentation.
14825 2014-03-12  Paul Pluzhnikov  <ppluzhnikov@google.com>
14827         [BZ #16381]
14828         * elf/Makefile (tests): Add tst-pie2.
14829         (tests-pie): Add tst-pie2.
14830         * elf/tst-pie2.c: New file.
14831         * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
14832         for ET_EXEC.
14833         * elf/rtld.c (map_doit): Load executable as lt_executable.
14834         (dl_main): Likewise.
14836 2014-03-12  Joseph Myers  <joseph@codesourcery.com>
14838         [BZ #16642]
14839         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14840         (__ASSUME_PSELECT): Undefine.
14842 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14844         [BZ #16689]
14845         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
14846         (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
14847         static build.
14848         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
14849         selector for static builds.
14851 2014-03-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
14853         [BZ #16695]
14854         * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
14855         key in the buffer.
14857 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14859         * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
14860         IFUNC selector for static builds.
14862 2014-03-11  Joseph Myers  <joseph@codesourcery.com>
14864         * sysdeps/mips/math_private.h [__mips_hard_float]
14865         (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
14866         libc_feresetround_mips_ctx.
14867         [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
14868         [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
14869         [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
14871         [BZ #16677]
14872         * math/s_nextafter.c (__nextafter): Do not return value from
14873         overflowing computation.
14874         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
14875         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
14876         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
14877         Likewise.
14878         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
14879         Likewise.
14880         * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
14881         * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
14883 2014-03-11  Roland McGrath  <roland@hack.frob.com>
14885         * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
14886         * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
14887         Move sfi_sp use from the load-multiple (that no longer sets sp) to
14888         the new mov targetting sp.
14890 2014-03-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14892         [BZ #16683]
14893         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
14894         Define it for static builds as well.
14895         (NO_BZERO_IMPL): Likewise.
14897 2014-03-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
14899         * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
14900         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
14901         multiarch strspn for PPC64.
14902         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
14903         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
14904         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
14905         (__libc_ifunc_impl_list): Likewise.
14906         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
14907         multiarch optimizations
14908         * string/strspn.c (strspn): Using macro to redefine symbol name.
14910 2014-03-10  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
14911             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14913         * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
14914         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
14915         multiarch strncat for PPC64.
14916         * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
14917         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
14918         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
14919         (__libc_ifunc_impl_list): Likewise.
14920         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
14921         multiarch optimizations
14923 2014-03-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
14925         [BZ #16639]
14926         * nscd/nscd.service: Make service type forking.
14928 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14930         * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
14931         sign in non default rounding modes.
14932         * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
14934 2014-03-08  Joseph Myers  <joseph@codesourcery.com>
14936         * math/libm-test.inc (ALL_RM_TEST): New macro.
14937         (ceil_test): Use ALL_RM_TEST.
14938         (cimag_test): Likewise.
14939         (conj_test): Likewise.
14940         (copysign_test): Likewise.
14941         (cproj_test): Likewise.
14942         (creal_test): Likewise.
14943         (fabs_test): Likewise.
14944         (floor_test): Likewise.
14945         (fmax_test): Likewise.
14946         (fmin_test): Likewise.
14947         (fmod_test): Likewise.
14948         (fpclassify_test): Likewise.
14949         (frexp_test): Likewise.
14950         (ilogb_test): Likewise.
14951         (isfinite_test): Likewise.
14952         (finite_test): Likewise.
14953         (isgreater_test): Likewise.
14954         (isgreaterequal_test): Likewise.
14955         (isinf_test): Likewise.
14956         (isless_test): Likewise.
14957         (islessequal_test): Likewise.
14958         (islessgreater_test): Likewise.
14959         (isnan_test): Likewise.
14960         (isnormal_test): Likewise.
14961         (issignaling_test): Likewise.
14962         (isunordered_test): Likewise.
14963         (logb_test): Likewise.
14964         (logb_downward_test_data): Remove.
14965         (logb_test_downward): Likewise.
14966         (lround_test): Use ALL_RM_TEST.
14967         (llround_test): Likewise.
14968         (modf_test): Likewise.
14969         (nexttoward_test): Likewise.
14970         (remainder_test): Likewise.
14971         (drem_test): Likewise.
14972         (remainder_tonearest_test_data): Likewise.
14973         (remainder_test_tonearest): Likewise.
14974         (drem_test_tonearest): Likewise.
14975         (remainder_towardzero_test_data): Likewise.
14976         (remainder_test_towardzero): Likewise.
14977         (drem_test_towardzero): Likewise.
14978         (remainder_downward_test_data): Likewise.
14979         (remainder_test_downward): Likewise.
14980         (drem_test_downward): Likewise.
14981         (remainder_upward_test_data): Likewise.
14982         (remainder_test_upward): Likewise.
14983         (drem_test_upward): Likewise.
14984         (remquo_test): Use ALL_RM_TEST.  Remove comment about x.
14985         (round_test): Use ALL_RM_TEST.
14986         (signbit_test): Likewise.
14987         (trunc_test): Likewise.
14988         (significand_test): Likewise.
14989         (main): Don't call removed functions.
14991 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
14993         [BZ #16674]
14994         * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
14995         || __USE_XOPEN2K8].
14996         (ILL_ILLOPN): Likewise.
14997         (ILL_ILLADR): Likewise.
14998         (ILL_ILLTRP): Likewise.
14999         (ILL_PRVOPC): Likewise.
15000         (ILL_PRVREG): Likewise.
15001         (ILL_COPROC): Likewise.
15002         (ILL_BADSTK): Likewise.
15003         (FPE_INTDIV): Likewise.
15004         (FPE_INTOVF): Likewise.
15005         (FPE_FLTDIV): Likewise.
15006         (FPE_FLTOVF): Likewise.
15007         (FPE_FLTUND): Likewise.
15008         (FPE_FLTRES): Likewise.
15009         (FPE_FLTINV): Likewise.
15010         (FPE_FLTSUB): Likewise.
15011         (SEGV_MAPERR): Likewise.
15012         (SEGV_ACCERR): Likewise.
15013         (BUS_ADRALN): Likewise.
15014         (BUS_ADRERR): Likewise.
15015         (BUS_OBJERR): Likewise.
15016         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15017         (TRAP_TRACE): Likewise.
15018         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15019         __USE_XOPEN2K8].
15020         (CLD_KILLED): Likewise.
15021         (CLD_DUMPED): Likewise.
15022         (CLD_TRAPPED): Likewise.
15023         (CLD_STOPPED): Likewise.
15024         (CLD_CONTINUED): Likewise.
15025         (POLL_IN): Likewise.
15026         (POLL_OUT): Likewise.
15027         (POLL_MSG): Likewise.
15028         (POLL_ERR): Likewise.
15029         (POLL_PRI): Likewise.
15030         (POLL_HUP): Likewise.
15031         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
15032         Likewise.
15033         (ILL_ILLOPN): Likewise.
15034         (ILL_ILLADR): Likewise.
15035         (ILL_ILLTRP): Likewise.
15036         (ILL_PRVOPC): Likewise.
15037         (ILL_PRVREG): Likewise.
15038         (ILL_COPROC): Likewise.
15039         (ILL_BADSTK): Likewise.
15040         (FPE_INTDIV): Likewise.
15041         (FPE_INTOVF): Likewise.
15042         (FPE_FLTDIV): Likewise.
15043         (FPE_FLTOVF): Likewise.
15044         (FPE_FLTUND): Likewise.
15045         (FPE_FLTRES): Likewise.
15046         (FPE_FLTINV): Likewise.
15047         (FPE_FLTSUB): Likewise.
15048         (SEGV_MAPERR): Likewise.
15049         (SEGV_ACCERR): Likewise.
15050         (BUS_ADRALN): Likewise.
15051         (BUS_ADRERR): Likewise.
15052         (BUS_OBJERR): Likewise.
15053         (BUS_MCEERR_AR): Likewise.
15054         (BUS_MCEERR_AO): Likewise.
15055         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15056         (TRAP_TRACE): Likewise.
15057         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15058         __USE_XOPEN2K8].
15059         (CLD_KILLED): Likewise.
15060         (CLD_DUMPED): Likewise.
15061         (CLD_TRAPPED): Likewise.
15062         (CLD_STOPPED): Likewise.
15063         (CLD_CONTINUED): Likewise.
15064         (POLL_IN): Likewise.
15065         (POLL_OUT): Likewise.
15066         (POLL_MSG): Likewise.
15067         (POLL_ERR): Likewise.
15068         (POLL_PRI): Likewise.
15069         (POLL_HUP): Likewise.
15070         * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
15071         (ILL_ILLOPN): Likewise.
15072         (ILL_ILLADR): Likewise.
15073         (ILL_ILLTRP): Likewise.
15074         (ILL_PRVOPC): Likewise.
15075         (ILL_PRVREG): Likewise.
15076         (ILL_COPROC): Likewise.
15077         (ILL_BADSTK): Likewise.
15078         (FPE_INTDIV): Likewise.
15079         (FPE_INTOVF): Likewise.
15080         (FPE_FLTDIV): Likewise.
15081         (FPE_FLTOVF): Likewise.
15082         (FPE_FLTUND): Likewise.
15083         (FPE_FLTRES): Likewise.
15084         (FPE_FLTINV): Likewise.
15085         (FPE_FLTSUB): Likewise.
15086         (SEGV_MAPERR): Likewise.
15087         (SEGV_ACCERR): Likewise.
15088         (BUS_ADRALN): Likewise.
15089         (BUS_ADRERR): Likewise.
15090         (BUS_OBJERR): Likewise.
15091         (BUS_MCEERR_AR): Likewise.
15092         (BUS_MCEERR_AO): Likewise.
15093         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15094         (TRAP_TRACE): Likewise.
15095         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15096         __USE_XOPEN2K8].
15097         (CLD_KILLED): Likewise.
15098         (CLD_DUMPED): Likewise.
15099         (CLD_TRAPPED): Likewise.
15100         (CLD_STOPPED): Likewise.
15101         (CLD_CONTINUED): Likewise.
15102         (POLL_IN): Likewise.
15103         (POLL_OUT): Likewise.
15104         (POLL_MSG): Likewise.
15105         (POLL_ERR): Likewise.
15106         (POLL_PRI): Likewise.
15107         (POLL_HUP): Likewise.
15108         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
15109         Likewise.
15110         (ILL_ILLOPN): Likewise.
15111         (ILL_ILLADR): Likewise.
15112         (ILL_ILLTRP): Likewise.
15113         (ILL_PRVOPC): Likewise.
15114         (ILL_PRVREG): Likewise.
15115         (ILL_COPROC): Likewise.
15116         (ILL_BADSTK): Likewise.
15117         (ILL_BADIADDR): Likewise.
15118         (ILL_BREAK): Likewise.
15119         (FPE_INTDIV): Likewise.
15120         (FPE_INTOVF): Likewise.
15121         (FPE_FLTDIV): Likewise.
15122         (FPE_FLTOVF): Likewise.
15123         (FPE_FLTUND): Likewise.
15124         (FPE_FLTRES): Likewise.
15125         (FPE_FLTINV): Likewise.
15126         (FPE_FLTSUB): Likewise.
15127         (FPE_DECOVF): Likewise.
15128         (FPE_DECDIV): Likewise.
15129         (FPE_DECERR): Likewise.
15130         (FPE_INVASC): Likewise.
15131         (FPE_INVDEC): Likewise.
15132         (SEGV_MAPERR): Likewise.
15133         (SEGV_ACCERR): Likewise.
15134         (SEGV_PSTKOVF): Likewise.
15135         (BUS_ADRALN): Likewise.
15136         (BUS_ADRERR): Likewise.
15137         (BUS_OBJERR): Likewise.
15138         (BUS_MCEERR_AR): Likewise.
15139         (BUS_MCEERR_AO): Likewise.
15140         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15141         (TRAP_TRACE): Likewise.
15142         (TRAP_BRANCH): Likewise.
15143         (TRAP_HWBKPT): Likewise.
15144         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15145         __USE_XOPEN2K8].
15146         (CLD_KILLED): Likewise.
15147         (CLD_DUMPED): Likewise.
15148         (CLD_TRAPPED): Likewise.
15149         (CLD_STOPPED): Likewise.
15150         (CLD_CONTINUED): Likewise.
15151         (POLL_IN): Likewise.
15152         (POLL_OUT): Likewise.
15153         (POLL_MSG): Likewise.
15154         (POLL_ERR): Likewise.
15155         (POLL_PRI): Likewise.
15156         (POLL_HUP): Likewise.
15157         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
15158         (ILL_ILLOPN): Likewise.
15159         (ILL_ILLADR): Likewise.
15160         (ILL_ILLTRP): Likewise.
15161         (ILL_PRVOPC): Likewise.
15162         (ILL_PRVREG): Likewise.
15163         (ILL_COPROC): Likewise.
15164         (ILL_BADSTK): Likewise.
15165         (FPE_INTDIV): Likewise.
15166         (FPE_INTOVF): Likewise.
15167         (FPE_FLTDIV): Likewise.
15168         (FPE_FLTOVF): Likewise.
15169         (FPE_FLTUND): Likewise.
15170         (FPE_FLTRES): Likewise.
15171         (FPE_FLTINV): Likewise.
15172         (FPE_FLTSUB): Likewise.
15173         (SEGV_MAPERR): Likewise.
15174         (SEGV_ACCERR): Likewise.
15175         (BUS_ADRALN): Likewise.
15176         (BUS_ADRERR): Likewise.
15177         (BUS_OBJERR): Likewise.
15178         (BUS_MCEERR_AR): Likewise.
15179         (BUS_MCEERR_AO): Likewise.
15180         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15181         (TRAP_TRACE): Likewise.
15182         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15183         __USE_XOPEN2K8].
15184         (CLD_KILLED): Likewise.
15185         (CLD_DUMPED): Likewise.
15186         (CLD_TRAPPED): Likewise.
15187         (CLD_STOPPED): Likewise.
15188         (CLD_CONTINUED): Likewise.
15189         (POLL_IN): Likewise.
15190         (POLL_OUT): Likewise.
15191         (POLL_MSG): Likewise.
15192         (POLL_ERR): Likewise.
15193         (POLL_PRI): Likewise.
15194         (POLL_HUP): Likewise.
15195         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
15196         (ILL_ILLOPN): Likewise.
15197         (ILL_ILLADR): Likewise.
15198         (ILL_ILLTRP): Likewise.
15199         (ILL_PRVOPC): Likewise.
15200         (ILL_PRVREG): Likewise.
15201         (ILL_COPROC): Likewise.
15202         (ILL_BADSTK): Likewise.
15203         (FPE_INTDIV): Likewise.
15204         (FPE_INTOVF): Likewise.
15205         (FPE_FLTDIV): Likewise.
15206         (FPE_FLTOVF): Likewise.
15207         (FPE_FLTUND): Likewise.
15208         (FPE_FLTRES): Likewise.
15209         (FPE_FLTINV): Likewise.
15210         (FPE_FLTSUB): Likewise.
15211         (SEGV_MAPERR): Likewise.
15212         (SEGV_ACCERR): Likewise.
15213         (BUS_ADRALN): Likewise.
15214         (BUS_ADRERR): Likewise.
15215         (BUS_OBJERR): Likewise.
15216         (BUS_MCEERR_AR): Likewise.
15217         (BUS_MCEERR_AO): Likewise.
15218         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15219         (TRAP_TRACE): Likewise.
15220         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15221         __USE_XOPEN2K8].
15222         (CLD_KILLED): Likewise.
15223         (CLD_DUMPED): Likewise.
15224         (CLD_TRAPPED): Likewise.
15225         (CLD_STOPPED): Likewise.
15226         (CLD_CONTINUED): Likewise.
15227         (POLL_IN): Likewise.
15228         (POLL_OUT): Likewise.
15229         (POLL_MSG): Likewise.
15230         (POLL_ERR): Likewise.
15231         (POLL_PRI): Likewise.
15232         (POLL_HUP): Likewise.
15233         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
15234         (ILL_ILLOPN): Likewise.
15235         (ILL_ILLADR): Likewise.
15236         (ILL_ILLTRP): Likewise.
15237         (ILL_PRVOPC): Likewise.
15238         (ILL_PRVREG): Likewise.
15239         (ILL_COPROC): Likewise.
15240         (ILL_BADSTK): Likewise.
15241         (FPE_INTDIV): Likewise.
15242         (FPE_INTOVF): Likewise.
15243         (FPE_FLTDIV): Likewise.
15244         (FPE_FLTOVF): Likewise.
15245         (FPE_FLTUND): Likewise.
15246         (FPE_FLTRES): Likewise.
15247         (FPE_FLTINV): Likewise.
15248         (FPE_FLTSUB): Likewise.
15249         (SEGV_MAPERR): Likewise.
15250         (SEGV_ACCERR): Likewise.
15251         (BUS_ADRALN): Likewise.
15252         (BUS_ADRERR): Likewise.
15253         (BUS_OBJERR): Likewise.
15254         (BUS_MCEERR_AR): Likewise.
15255         (BUS_MCEERR_AO): Likewise.
15256         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15257         (TRAP_TRACE): Likewise.
15258         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15259         __USE_XOPEN2K8].
15260         (CLD_KILLED): Likewise.
15261         (CLD_DUMPED): Likewise.
15262         (CLD_TRAPPED): Likewise.
15263         (CLD_STOPPED): Likewise.
15264         (CLD_CONTINUED): Likewise.
15265         (POLL_IN): Likewise.
15266         (POLL_OUT): Likewise.
15267         (POLL_MSG): Likewise.
15268         (POLL_ERR): Likewise.
15269         (POLL_PRI): Likewise.
15270         (POLL_HUP): Likewise.
15271         * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
15272         (ILL_ILLOPN): Likewise.
15273         (ILL_ILLADR): Likewise.
15274         (ILL_ILLTRP): Likewise.
15275         (ILL_PRVOPC): Likewise.
15276         (ILL_PRVREG): Likewise.
15277         (ILL_COPROC): Likewise.
15278         (ILL_BADSTK): Likewise.
15279         (ILL_DBLFLT): Likewise.
15280         (ILL_HARDWALL): Likewise.
15281         (FPE_INTDIV): Likewise.
15282         (FPE_INTOVF): Likewise.
15283         (FPE_FLTDIV): Likewise.
15284         (FPE_FLTOVF): Likewise.
15285         (FPE_FLTUND): Likewise.
15286         (FPE_FLTRES): Likewise.
15287         (FPE_FLTINV): Likewise.
15288         (FPE_FLTSUB): Likewise.
15289         (SEGV_MAPERR): Likewise.
15290         (SEGV_ACCERR): Likewise.
15291         (BUS_ADRALN): Likewise.
15292         (BUS_ADRERR): Likewise.
15293         (BUS_OBJERR): Likewise.
15294         (BUS_MCEERR_AR): Likewise.
15295         (BUS_MCEERR_AO): Likewise.
15296         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15297         (TRAP_TRACE): Likewise.
15298         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15299         __USE_XOPEN2K8].
15300         (CLD_KILLED): Likewise.
15301         (CLD_DUMPED): Likewise.
15302         (CLD_TRAPPED): Likewise.
15303         (CLD_STOPPED): Likewise.
15304         (CLD_CONTINUED): Likewise.
15305         (POLL_IN): Likewise.
15306         (POLL_OUT): Likewise.
15307         (POLL_MSG): Likewise.
15308         (POLL_ERR): Likewise.
15309         (POLL_PRI): Likewise.
15310         (POLL_HUP): Likewise.
15311         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
15312         (ILL_ILLOPN): Likewise.
15313         (ILL_ILLADR): Likewise.
15314         (ILL_ILLTRP): Likewise.
15315         (ILL_PRVOPC): Likewise.
15316         (ILL_PRVREG): Likewise.
15317         (ILL_COPROC): Likewise.
15318         (ILL_BADSTK): Likewise.
15319         (FPE_INTDIV): Likewise.
15320         (FPE_INTOVF): Likewise.
15321         (FPE_FLTDIV): Likewise.
15322         (FPE_FLTOVF): Likewise.
15323         (FPE_FLTUND): Likewise.
15324         (FPE_FLTRES): Likewise.
15325         (FPE_FLTINV): Likewise.
15326         (FPE_FLTSUB): Likewise.
15327         (SEGV_MAPERR): Likewise.
15328         (SEGV_ACCERR): Likewise.
15329         (BUS_ADRALN): Likewise.
15330         (BUS_ADRERR): Likewise.
15331         (BUS_OBJERR): Likewise.
15332         (BUS_MCEERR_AR): Likewise.
15333         (BUS_MCEERR_AO): Likewise.
15334         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15335         (TRAP_TRACE): Likewise.
15336         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15337         __USE_XOPEN2K8].
15338         (CLD_KILLED): Likewise.
15339         (CLD_DUMPED): Likewise.
15340         (CLD_TRAPPED): Likewise.
15341         (CLD_STOPPED): Likewise.
15342         (CLD_CONTINUED): Likewise.
15343         (POLL_IN): Likewise.
15344         (POLL_OUT): Likewise.
15345         (POLL_MSG): Likewise.
15346         (POLL_ERR): Likewise.
15347         (POLL_PRI): Likewise.
15348         (POLL_HUP): Likewise.
15349         * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
15350         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
15352         [BZ #16670]
15353         * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
15354         before #include of <time.h>.
15355         [!__USE_XOPEN2K] (__need_timespec): Likewise.
15356         * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
15357         (test-xfail-UNIX98/sched.h/conform): Likewise.
15359 2014-03-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
15361         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
15362         error absence of trapping exception support.
15363         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
15365 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
15367         * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
15368         ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
15369         * timezone/Makefile (testdata): Move definition above include of
15370         Rules.
15371         (test-zones): New variable.
15372         (tests-special): Add zone files.
15373         (build-testdata): Use $(evaluate-test).
15375         * elf/Makefile (tests-special): Rename tests to end with .out.
15376         ($(objpfx)noload-mem): Likewise.
15377         ($(objpfx)tst-leaks1-mem): Likewise.
15378         ($(objpfx)tst-leaks1-static-mem.out): Likewise.
15379         * iconv/Makefile (xtests-special): Change test-iconvconfig to
15380         $(objpfx)test-iconvconfig.out.
15381         (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out.  Use
15382         set -e inside subshell and redirect output to file.
15383         * iconvdata/Makefile (generated): Rename tests to end with .out.
15384         Correct type.
15385         (tests-special): Rename tests to end with .out.
15386         ($(objpfx)mtrace-tst-loading): Likewise.
15387         * intl/Makefile (generated): Likewise.
15388         (tests-special): Likewise.
15389         ($(objpfx)mtrace-tst-gettext): Likewise.
15390         * misc/Makefile (generated): Likewise.
15391         (tests-special): Likewise.
15392         ($(objpfx)tst-error1-mem): Likewise.
15393         * nptl/Makefile (tests-special): Likewise.
15394         ($(objpfx)tst-stack3-mem): Likewise.
15395         (generated): Likewise.
15396         * posix/Makefile (generated): Likewise.
15397         (tests-special): Likewise.
15398         (xtests-special): Likewise.
15399         ($(objpfx)tst-fnmatch-mem): Likewise.
15400         ($(objpfx)bug-regex2-mem): Likewise.
15401         ($(objpfx)bug-regex14-mem): Likewise.
15402         ($(objpfx)bug-regex21-mem): Likewise.
15403         ($(objpfx)bug-regex31-mem): Likewise.
15404         ($(objpfx)tst-vfork3-mem): Likewise.
15405         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
15406         ($(objpfx)tst-pcre-mem): Likewise.
15407         ($(objpfx)tst-boost-mem): Likewise.
15408         ($(objpfx)bug-ga2-mem): Likewise.
15409         ($(objpfx)bug-glob2-mem): Likewise.
15410         * resolv/Makefile (generate): Likewise.
15411         (tests-special): Likewise.
15412         (xtests-special): Likewise.
15413         (generated): Likewise.
15414         ($(objpfx)mtrace-tst-leaks): Likewise.
15415         ($(objpfx)mtrace-tst-leaks2): Likewise.
15417         * scripts/merge-test-results.sh: New file.
15418         * Makefile (tests-special-notdir): New variable.
15419         (tests): Run merge-test-results.sh.
15420         (xtests): Likewise.
15421         * Rules (tests-special-notdir): New variable.
15422         (xtests-special-notdir): Likewise.
15423         (tests): Run merge-test-results.sh
15424         (xtests): Likewise.
15426         * Makeconfig (test-xfail-name): New variable.
15427         (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
15428         compute variable name for expected failures.
15429         * conform/Makefile (conformtest-headers-data): New variable.
15430         (conformtest-standards): Likewise.
15431         (conformtest-headers-ISO): Likewise.
15432         (conformtest-headers-ISO99): Likewise.
15433         (conformtest-headers-ISO11): Likewise.
15434         (conformtest-headers-POSIX): Likewise.
15435         (conformtest-headers-XPG3): Likewise.
15436         (conformtest-headers-XPG4): Likewise.
15437         (conformtest-headers-UNIX98): Likewise.
15438         (conformtest-headers-XOPEN2K): Likewise.
15439         (conformtest-headers-POSIX2008): Likewise.
15440         (conformtest-headers-XOPEN2K8): Likewise.
15441         (conformtest-header-list-base): Likewise.
15442         (conformtest-header-list-tests): Likewise.
15443         (conformtest-header-base): Likewise.
15444         (conformtest-header-tests): Likewise.
15445         (tests-special): Add $(conformtest-header-list-tests).  If
15446         [$(fast-check) && !$(cross-compiling)], add
15447         $(conformtest-header-tests) instead of
15448         $(objpfx)run-conformtest.out.
15449         (generated): Add $(conformtest-header-list-base).  If
15450         [$(fast-check) && !$(cross-compiling)], add
15451         $(conformtest-header-base).  Remove previous setting.
15452         ($(conformtest-header-list-tests)): New target.
15453         (test-xfail-run-conformtest): Remove variable.
15454         ($(objpfx)run-conformtest.out): Remove target.
15455         (test-xfail-ISO11/complex.h/conform): New variable.
15456         (test-xfail-ISO11/stdalign.h/conform): Likewise.
15457         (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
15458         (test-xfail-XPG3/varargs.h/conform): Likewise.
15459         (test-xfail-XPG4/varargs.h/conform): Likewise.
15460         (test-xfail-UNIX98/varargs.h/conform): Likewise.
15461         (test-xfail-XPG4/ndbm.h/conform): Likewise.
15462         (test-xfail-UNIX98/ndbm.h/conform): Likewise.
15463         (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
15464         (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
15465         (test-xfail-XPG3/fcntl.h/conform): Likewise.
15466         (test-xfail-XPG3/ftw.h/conform): Likewise.
15467         (test-xfail-XPG3/grp.h/conform): Likewise.
15468         (test-xfail-XPG3/langinfo.h/conform): Likewise.
15469         (test-xfail-XPG3/limits.h/conform): Likewise.
15470         (test-xfail-XPG3/pwd.h/conform): Likewise.
15471         (test-xfail-XPG3/search.h/conform): Likewise.
15472         (test-xfail-XPG3/signal.h/conform): Likewise.
15473         (test-xfail-XPG3/stdio.h/conform): Likewise.
15474         (test-xfail-XPG3/stdlib.h/conform): Likewise.
15475         (test-xfail-XPG3/string.h/conform): Likewise.
15476         (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
15477         (test-xfail-XPG3/sys/msg.h/conform): Likewise.
15478         (test-xfail-XPG3/sys/sem.h/conform): Likewise.
15479         (test-xfail-XPG3/sys/shm.h/conform): Likewise.
15480         (test-xfail-XPG3/sys/stat.h/conform): Likewise.
15481         (test-xfail-XPG3/sys/types.h/conform): Likewise.
15482         (test-xfail-XPG3/sys/wait.h/conform): Likewise.
15483         (test-xfail-XPG3/termios.h/conform): Likewise.
15484         (test-xfail-XPG3/time.h/conform): Likewise.
15485         (test-xfail-XPG3/unistd.h/conform): Likewise.
15486         (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
15487         (test-xfail-XPG4/fcntl.h/conform): Likewise.
15488         (test-xfail-XPG4/langinfo.h/conform): Likewise.
15489         (test-xfail-XPG4/netdb.h/conform): Likewise.
15490         (test-xfail-XPG4/netinet/in.h/conform): Likewise.
15491         (test-xfail-XPG4/signal.h/conform): Likewise.
15492         (test-xfail-XPG4/stdio.h/conform): Likewise.
15493         (test-xfail-XPG4/stdlib.h/conform): Likewise.
15494         (test-xfail-XPG4/stropts.h/conform): Likewise.
15495         (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
15496         (test-xfail-XPG4/sys/msg.h/conform): Likewise.
15497         (test-xfail-XPG4/sys/sem.h/conform): Likewise.
15498         (test-xfail-XPG4/sys/shm.h/conform): Likewise.
15499         (test-xfail-XPG4/sys/socket.h/conform): Likewise.
15500         (test-xfail-XPG4/sys/stat.h/conform): Likewise.
15501         (test-xfail-XPG4/sys/time.h/conform): Likewise.
15502         (test-xfail-XPG4/sys/types.h/conform): Likewise.
15503         (test-xfail-XPG4/sys/wait.h/conform): Likewise.
15504         (test-xfail-XPG4/termios.h/conform): Likewise.
15505         (test-xfail-XPG4/ucontext.h/conform): Likewise.
15506         (test-xfail-XPG4/unistd.h/conform): Likewise.
15507         (test-xfail-XPG4/utmpx.h/conform): Likewise.
15508         (test-xfail-POSIX/sched.h/conform): Likewise.
15509         (test-xfail-POSIX/signal.h/conform): Likewise.
15510         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
15511         (test-xfail-POSIX/tar.h/conform): Likewise.
15512         (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
15513         (test-xfail-UNIX98/fcntl.h/conform): Likewise.
15514         (test-xfail-UNIX98/langinfo.h/conform): Likewise.
15515         (test-xfail-UNIX98/netdb.h/conform): Likewise.
15516         (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
15517         (test-xfail-UNIX98/sched.h/conform): Likewise.
15518         (test-xfail-UNIX98/signal.h/conform): Likewise.
15519         (test-xfail-UNIX98/stdio.h/conform): Likewise.
15520         (test-xfail-UNIX98/stdlib.h/conform): Likewise.
15521         (test-xfail-UNIX98/stropts.h/conform): Likewise.
15522         (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
15523         (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
15524         (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
15525         (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
15526         (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
15527         (test-xfail-UNIX98/sys/time.h/conform): Likewise.
15528         (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
15529         (test-xfail-UNIX98/ucontext.h/conform): Likewise.
15530         (test-xfail-UNIX98/unistd.h/conform): Likewise.
15531         (test-xfail-UNIX98/utmpx.h/conform): Likewise.
15532         (test-xfail-XOPEN2K/aio.h/conform): Likewise.
15533         (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
15534         (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
15535         (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
15536         (test-xfail-XOPEN2K/math.h/conform): Likewise.
15537         (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
15538         (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
15539         (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
15540         (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
15541         (test-xfail-XOPEN2K/signal.h/conform): Likewise.
15542         (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
15543         (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
15544         (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
15545         (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
15546         (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
15547         (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
15548         (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
15549         (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
15550         (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
15551         (test-xfail-XOPEN2K/termios.h/conform): Likewise.
15552         (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
15553         (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
15554         (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
15555         (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
15556         (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
15557         (test-xfail-POSIX2008/netdb.h/conform): Likewise.
15558         (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
15559         (test-xfail-POSIX2008/signal.h/conform): Likewise.
15560         (test-xfail-POSIX2008/stropts.h/conform): Likewise.
15561         (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
15562         (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
15563         (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
15564         (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
15565         (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
15566         (test-xfail-XOPEN2K8/math.h/conform): Likewise.
15567         (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
15568         (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
15569         (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
15570         (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
15571         (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
15572         (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
15573         (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
15574         (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
15575         (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
15576         (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
15577         (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
15578         (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
15579         (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
15580         (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
15581         (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
15582         (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
15583         (conformtest-cc-flags): Likewise.
15584         ($(conformtest-header-tests): New target.
15585         * conform/check-header-lists.sh: New file.
15586         * conform/run-conformtest.sh: Remove.
15588         * conform/conformtest.pl: Allow ' and \ in values given for
15589         constants.
15590         * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
15591         inclusion.
15592         [POSIX] (sys/types.h): Likewise.
15593         [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
15594         inclusion.
15595         [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
15596         inclusion.
15597         * conform/data/signal.h-data (SIGIO): Remove expectation.
15598         [XPG3] (SIGBUS): Do not expect.
15599         [POSIX || XPG3] (SIGPOLL): Likewise.
15600         [POSIX || XPG3] (SIGPROF): Likewise.
15601         [POSIX || XPG3] (SIGSYS): Likewise.
15602         [XPG3] (SIGTRAP): Likewise.
15603         [POSIX || XPG3] (SIGURG): Likewise.
15604         [POSIX || XPG3] (SIGVTALRM): Likewise.
15605         [POSIX || XPG3] (SIGXCPU): Likewise.
15606         [POSIX || XPG3] (SIGXFSZ): Likewise.
15607         [POSIX] (SA_SIGINFO): Expect.
15608         [XPG3] (siginfo_t): Do not expect type or contents.
15609         [POSIX] (si_pid): Do not expect element.
15610         [POSIX] (si_uid): Likewise.
15611         [POSIX] (si_addr): Likewise.
15612         [POSIX] (si_status): Likewise.
15613         [POSIX] (si_band): Likewise.
15614         [XPG4] (si_value): Likewise.
15615         [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
15616         [POSIX || XPG3] (ILL_ILLOPN): Likewise.
15617         [POSIX || XPG3] (ILL_ILLADR): Likewise.
15618         [POSIX || XPG3] (ILL_ILLTRP): Likewise.
15619         [POSIX || XPG3] (ILL_PRVOPC): Likewise.
15620         [POSIX || XPG3] (ILL_PRVREG): Likewise.
15621         [POSIX || XPG3] (ILL_COPROC): Likewise.
15622         [POSIX || XPG3] (ILL_BADSTK): Likewise.
15623         [POSIX || XPG3] (FPE_INTDIV): Likewise.
15624         [POSIX || XPG3] (FPE_INTOVF): Likewise.
15625         [POSIX || XPG3] (FPE_FLTDIV): Likewise.
15626         [POSIX || XPG3] (FPE_FLTOVF): Likewise.
15627         [POSIX || XPG3] (FPE_FLTUND): Likewise.
15628         [POSIX || XPG3] (FPE_FLTRES): Likewise.
15629         [POSIX || XPG3] (FPE_FLTINV): Likewise.
15630         [POSIX || XPG3] (FPE_FLTSUB): Likewise.
15631         [POSIX || XPG3] (SEGV_MAPERR): Likewise.
15632         [POSIX || XPG3] (SEGV_ACCERR): Likewise.
15633         [POSIX || XPG3] (BUS_ADRALN): Likewise.
15634         [POSIX || XPG3] (BUS_ADRERR): Likewise.
15635         [POSIX || XPG3] (BUS_OBJERR): Likewise.
15636         [POSIX || XPG3] (CLD_EXITED): Likewise.
15637         [POSIX || XPG3] (CLD_KILLED): Likewise.
15638         [POSIX || XPG3] (CLD_DUMPED): Likewise.
15639         [POSIX || XPG3] (CLD_TRAPPED): Likewise.
15640         [POSIX || XPG3] (CLD_STOPPED): Likewise.
15641         [POSIX || XPG3] (CLD_CONTINUED): Likewise.
15642         [POSIX || XPG3] (POLL_IN): Likewise.
15643         [POSIX || XPG3] (POLL_OUT): Likewise.
15644         [POSIX || XPG3] (POLL_MSG): Likewise.
15645         [POSIX || XPG3] (POLL_ERR): Likewise.
15646         [POSIX || XPG3] (POLL_PRI): Likewise.
15647         [POSIX || XPG3] (POLL_HUP): Likewise.
15648         [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
15649         [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
15650         (SIG*): Do not allow.
15651         [XPG3] (si_*): Likewise.
15652         [XPG3] (SI_*): Likewise.
15653         [XPG3 || XPG4] (sigev_*): Likewise.
15654         [XPG3 || XPG4] (SIGEV_*): Likewise.
15655         [XPG3 || XPG4] (sival_*): Likewise.
15656         [POSIX || XPG3 || XPG4] (uc_*): Likewise.
15657         [POSIX || XPG3] (BUS_*): Likewise.
15658         [POSIX || XPG3] (CLD_*): Likewise.
15659         [POSIX || XPG3] (FPE_*): Likewise.
15660         [POSIX || XPG3] (ILL_*): Likewise.
15661         [POSIX || XPG3] (POLL_*): Likewise.
15662         [POSIX || XPG3] (SEGV_*): Likewise.
15663         [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
15664         [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
15665         [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
15666         [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
15667         [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
15668         * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
15669         Specify type and value.
15670         (TVERSLEN): Likewise.
15671         (REGTYPE): Likewise.
15672         (AREGTYPE): Likewise.
15673         (LNKTYPE): Likewise.
15674         (SYMTYPE): Likewise.
15675         (CHRTYPE): Likewise.
15676         (BLKTYPE): Likewise.
15677         (DIRTYPE): Likewise.
15678         (FIFOTYPE): Likewise.
15679         (CONTTYPE): Likewise.
15680         (TSUID): Likewise.
15681         (TSGID): Likewise.
15682         (TSVTX): Likewise.
15683         (TUREAD): Likewise.
15684         (TUWRITE): Likewise.
15685         (TUEXEC): Likewise.
15686         (TGREAD): Likewise.
15687         (TGWRITE): Likewise.
15688         (TGEXEC): Likewise.
15689         (TOREAD): Likewise.
15690         (TOWRITE): Likewise.
15691         (TOEXEC): Likewise.
15692         [POSIX] (TSVTX): Expect constant.
15694 2014-03-06  Joseph Myers  <joseph@codesourcery.com>
15696         * Makefile (tests): Change dependencies to ....
15697         (tests-special): ... additions to this variable.
15698         (tests): Depend on $(tests-special).
15699         * Makerules (check-abi-list): New variable.
15700         (check-abi): Depend on $(check-abi-list).
15701         [$(subdir) = elf] (tests-special): Add
15702         $(objpfx)check-abi-libc.out.
15703         [$(build-shared) = yes && subdir] (tests-special): Add
15704         $(check-abi-list).
15705         [$(build-shared) = yes && subdir] (tests): Do not depend on
15706         check-abi.
15707         * Rules (tests): Depend on $(tests-special).
15708         (xtests): Depend on $(xtests-special).
15709         * catgets/Makefile (tests): Change dependencies to ....
15710         (tests-special): ... additions to this variable.
15711         * conform/Makefile (tests): Change dependencies to ....
15712         (tests-special): ... additions to this variable.
15713         * elf/Makefile (tests): Change dependencies to ....
15714         (tests-special): ... additions to this variable.
15715         * grp/Makefile (tests): Change dependencies to ....
15716         (tests-special): ... additions to this variable.
15717         * iconv/Makefile (xtests): Change dependencies to ....
15718         (xtests-special): ... additions to this variable.
15719         * iconvdata/Makefile (tests): Change dependencies to ....
15720         (tests-special): ... additions to this variable.
15721         * intl/Makefile (tests): Change dependencies to ....
15722         (tests-special): ... additions to this variable.  Also add
15723         $(objpfx)tst-gettext.out.
15724         * io/Makefile (tests): Change dependencies to ....
15725         (tests-special): ... additions to this variable.
15726         * libio/Makefile (tests): Change dependencies to ....
15727         (tests-special): ... additions to this variable.
15728         * malloc/Makefile (tests): Change dependencies to ....
15729         (tests-special): ... additions to this variable.
15730         * misc/Makefile (tests): Change dependencies to ....
15731         (tests-special): ... additions to this variable.
15732         * nptl/Makefile (tests): Change dependencies to ....
15733         (tests-special): ... additions to this variable.
15734         * nptl_db/Makefile (tests): Change dependencies to ....
15735         (tests-special): ... additions to this variable.
15736         * posix/Makefile (tests): Change dependencies to ....
15737         (tests-special): ... additions to this variable.
15738         (xtests): Change dependencies to ....
15739         (xtests-special): ... additions to this variable.
15740         * resolv/Makefile (tests): Change dependencies to ....
15741         (tests-special): ... additions to this variable.
15742         (xtests): Change dependencies to ....
15743         (xtests-special): ... additions to this variable.
15744         * stdio-common/Makefile (tests): Change dependencies to ....
15745         (tests-special): ... additions to this variable.
15746         (do-tst-unbputc): Remove target.
15747         (do-tst-printf): Likewise.
15748         * stdlib/Makefile (tests): Change dependencies to ....
15749         (tests-special): ... additions to this variable.
15750         * string/Makefile (tests): Change dependencies to ....
15751         (tests-special): ... additions to this variable.
15752         * sysdeps/x86/Makefile (tests): Change dependencies to ....
15753         (tests-special): ... additions to this variable.
15755         * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
15756         whole file.
15757         * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
15758         whole file.
15759         * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
15760         * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
15762         * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
15763         * conform/data/arpa/inet.h-data [XPG3]: Likewise.
15764         * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
15765         * conform/data/fmtmsg.h-data [XPG3]: Likewise.
15766         * conform/data/libgen.h-data [XPG3]: Likewise.
15767         * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
15768         * conform/data/ndbm.h-data [XPG3]: Likewise.
15769         * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
15770         * conform/data/netdb.h-data [XPG3]: Likewise.
15771         * conform/data/netinet/in.h-data [XPG3]: Likewise.
15772         * conform/data/poll.h-data [XPG3]: Likewise.
15773         * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
15774         * conform/data/strings.h-data [XPG3]: Likewise.
15775         * conform/data/stropts.h-data [XPG3]: Likewise.
15776         * conform/data/sys/mman.h-data [XPG3]: Likewise.
15777         * conform/data/sys/resource.h-data [XPG3]: Likewise.
15778         * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
15779         Likewise.
15780         * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
15781         * conform/data/sys/time.h-data [XPG3]: Likewise.
15782         * conform/data/sys/timeb.h-data [XPG3]: Likewise.
15783         * conform/data/sys/uio.h-data [XPG3]: Likewise.
15784         * conform/data/sys/un.h-data [XPG3]: Likewise.
15785         * conform/data/syslog.h-data [XPG3]: Likewise.
15786         * conform/data/ucontext.h-data [XPG3]: Likewise.
15787         * conform/data/utmpx.h-data [XPG3]: Likewise.
15788         * conform/data/varargs.h-data [UNIX98]: Enable file.
15790         * manual/Makefile (INSTALL_INFO): Remove variable setting.
15792         * math/libm-test.inc (struct test_f_f_data): Move expected results
15793         into structure for each rounding mode.
15794         (struct test_ff_f_data): Likewise.
15795         (struct test_ff_f_data_nexttoward): Likewise.
15796         (struct test_fi_f_data): Likewise.
15797         (struct test_fl_f_data): Likewise.
15798         (struct test_if_f_data): Likewise.
15799         (struct test_fff_f_data): Likewise.
15800         (struct test_c_f_data): Likewise.
15801         (struct test_f_f1_data): Likewise.
15802         (struct test_fF_f1_data): Likewise.
15803         (struct test_ffI_f1_data): Likewise.
15804         (struct test_c_c_data): Likewise.
15805         (struct test_cc_c_data): Likewise.
15806         (struct test_f_i_data): Likewise.
15807         (struct test_ff_i_data): Likewise.
15808         (struct test_f_l_data): Likewise.
15809         (struct test_f_L_data): Likewise.
15810         (struct test_fFF_11_data): Likewise.
15811         (RM_): New macro.
15812         (RM_FE_DOWNWARD): Likewise.
15813         (RM_FE_TONEAREST): Likewise.
15814         (RM_FE_TOWARDZERO): Likewise.
15815         (RM_FE_UPWARD): Likewise.
15816         (RUN_TEST_LOOP_f_f): Update references to expected results.
15817         (RUN_TEST_LOOP_2_f): Likewise.
15818         (RUN_TEST_LOOP_fff_f): Likewise.
15819         (RUN_TEST_LOOP_c_f): Likewise.
15820         (RUN_TEST_LOOP_f_f1): Likewise.
15821         (RUN_TEST_LOOP_fF_f1): Likewise.
15822         (RUN_TEST_LOOP_fI_f1): Likewise.
15823         (RUN_TEST_LOOP_ffI_f1): Likewise.
15824         (RUN_TEST_LOOP_c_c): Likewise.
15825         (RUN_TEST_LOOP_cc_c): Likewise.
15826         (RUN_TEST_LOOP_f_i): Likewise.
15827         (RUN_TEST_LOOP_f_i_tg): Likewise.
15828         (RUN_TEST_LOOP_ff_i_tg): Likewise.
15829         (RUN_TEST_LOOP_f_b): Likewise.
15830         (RUN_TEST_LOOP_f_b_tg): Likewise.
15831         (RUN_TEST_LOOP_f_l): Likewise.
15832         (RUN_TEST_LOOP_f_L): Likewise.
15833         (RUN_TEST_LOOP_fFF_11): Likewise.
15834         * math/gen-libm-test.pl (parse_args): Output four copies of
15835         expected results for each test.
15837         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
15838         (__ASSUME_UTIMES): Remove.
15839         * sysdeps/unix/sysv/linux/tile/kernel-features.h
15840         (__ASSUME_UTIMES): Likewise.
15842         * math/gen-auto-libm-tests.c: Update comment on output format.
15843         (output_for_one_input_case): Generate before-rounding and
15844         after-rounding information as conditions on output flags not
15845         floating-point format.
15846         * math/auto-libm-test-out: Regenerated.
15847         * math/gen-libm-test.pl (cond_value): New function.
15848         (or_cond_value): Use cond_value.
15849         (generate_testfile): Handle conditional exceptions.
15851 2014-03-05  Joseph Myers  <joseph@codesourcery.com>
15853         * math/libm-test.inc (max_valid_error): New variable.
15854         (init_max_error): Take new argument specifying whether function
15855         results are exactly determined.  Set max_valid_error and bound
15856         other variables for errors based on this argument.
15857         (set_max_error): Do not record results above max_valid_error.
15858         (check_float_internal): Only accept errors of up to 0.5ulps if
15859         also at most max_valid_error.
15860         (START): Take new argument EXACT and pass it to init_max_error.
15861         (acos_test): Update call to START.
15862         (acos_test_tonearest): Likewise.
15863         (acos_test_towardzero): Likewise.
15864         (acos_test_downward): Likewise.
15865         (acos_test_upward): Likewise.
15866         (acosh_test): Likewise.
15867         (asin_test): Likewise.
15868         (asin_test_tonearest): Likewise.
15869         (asin_test_towardzero): Likewise.
15870         (asin_test_downward): Likewise.
15871         (asin_test_upward): Likewise.
15872         (asinh_test): Likewise.
15873         (atan_test): Likewise.
15874         (atanh_test): Likewise.
15875         (atan2_test): Likewise.
15876         (cabs_test): Likewise.
15877         (cacos_test): Likewise.
15878         (cacosh_test): Likewise.
15879         (carg_test): Likewise.
15880         (casin_test): Likewise.
15881         (casinh_test): Likewise.
15882         (catan_test): Likewise.
15883         (catanh_test): Likewise.
15884         (cbrt_test): Likewise.
15885         (ccos_test): Likewise.
15886         (ccosh_test): Likewise.
15887         (ceil_test): Likewise.
15888         (cexp_test): Likewise.
15889         (cimag_test): Likewise.
15890         (clog_test): Likewise.
15891         (clog10_test): Likewise.
15892         (conj_test): Likewise.
15893         (copysign_test): Likewise.
15894         (cos_test): Likewise.
15895         (cos_test_tonearest): Likewise.
15896         (cos_test_towardzero): Likewise.
15897         (cos_test_downward): Likewise.
15898         (cos_test_upward): Likewise.
15899         (cosh_test): Likewise.
15900         (cosh_test_tonearest): Likewise.
15901         (cosh_test_towardzero): Likewise.
15902         (cosh_test_downward): Likewise.
15903         (cosh_test_upward): Likewise.
15904         (cpow_test): Likewise.
15905         (cproj_test): Likewise.
15906         (creal_test): Likewise.
15907         (csin_test): Likewise.
15908         (csinh_test): Likewise.
15909         (csqrt_test): Likewise.
15910         (ctan_test): Likewise.
15911         (ctan_test_tonearest): Likewise.
15912         (ctan_test_towardzero): Likewise.
15913         (ctan_test_downward): Likewise.
15914         (ctan_test_upward): Likewise.
15915         (ctanh_test): Likewise.
15916         (ctanh_test_tonearest): Likewise.
15917         (ctanh_test_towardzero): Likewise.
15918         (ctanh_test_downward): Likewise.
15919         (ctanh_test_upward): Likewise.
15920         (erf_test): Likewise.
15921         (erfc_test): Likewise.
15922         (exp_test): Likewise.
15923         (exp_test_tonearest): Likewise.
15924         (exp_test_towardzero): Likewise.
15925         (exp_test_downward): Likewise.
15926         (exp_test_upward): Likewise.
15927         (exp10_test): Likewise.
15928         (exp10_test_tonearest): Likewise.
15929         (exp10_test_towardzero): Likewise.
15930         (exp10_test_downward): Likewise.
15931         (exp10_test_upward): Likewise.
15932         (pow10_test): Likewise.
15933         (exp2_test): Likewise.
15934         (expm1_test): Likewise.
15935         (expm1_test_tonearest): Likewise.
15936         (expm1_test_towardzero): Likewise.
15937         (expm1_test_downward): Likewise.
15938         (expm1_test_upward): Likewise.
15939         (fabs_test): Likewise.
15940         (fdim_test): Likewise.
15941         (floor_test): Likewise.
15942         (fma_test): Likewise.
15943         (fma_test_towardzero): Likewise.
15944         (fma_test_downward): Likewise.
15945         (fma_test_upward): Likewise.
15946         (fmax_test): Likewise.
15947         (fmin_test): Likewise.
15948         (fmod_test): Likewise.
15949         (fpclassify_test): Likewise.
15950         (frexp_test): Likewise.
15951         (hypot_test): Likewise.
15952         (ilogb_test): Likewise.
15953         (isfinite_test): Likewise.
15954         (finite_test): Likewise.
15955         (isgreater_test): Likewise.
15956         (isgreaterequal_test): Likewise.
15957         (isinf_test): Likewise.
15958         (isless_test): Likewise.
15959         (islessequal_test): Likewise.
15960         (islessgreater_test): Likewise.
15961         (isnan_test): Likewise.
15962         (isnormal_test): Likewise.
15963         (issignaling_test): Likewise.
15964         (isunordered_test): Likewise.
15965         (j0_test): Likewise.
15966         (j1_test): Likewise.
15967         (jn_test): Likewise.
15968         (ldexp_test): Likewise.
15969         (lgamma_test): Likewise.
15970         (gamma_test): Likewise.
15971         (lrint_test): Likewise.
15972         (lrint_test_tonearest): Likewise.
15973         (lrint_test_towardzero): Likewise.
15974         (lrint_test_downward): Likewise.
15975         (lrint_test_upward): Likewise.
15976         (llrint_test): Likewise.
15977         (llrint_test_tonearest): Likewise.
15978         (llrint_test_towardzero): Likewise.
15979         (llrint_test_downward): Likewise.
15980         (llrint_test_upward): Likewise.
15981         (log_test): Likewise.
15982         (log10_test): Likewise.
15983         (log1p_test): Likewise.
15984         (log2_test): Likewise.
15985         (logb_test): Likewise.
15986         (logb_test_downward): Likewise.
15987         (lround_test): Likewise.
15988         (llround_test): Likewise.
15989         (modf_test): Likewise.
15990         (nearbyint_test): Likewise.
15991         (nextafter_test): Likewise.
15992         (nexttoward_test): Likewise.
15993         (pow_test): Likewise.
15994         (pow_test_tonearest): Likewise.
15995         (pow_test_towardzero): Likewise.
15996         (pow_test_downward): Likewise.
15997         (pow_test_upward): Likewise.
15998         (remainder_test): Likewise.
15999         (drem_test): Likewise.
16000         (remainder_test_tonearest): Likewise.
16001         (drem_test_tonearest): Likewise.
16002         (remainder_test_towardzero): Likewise.
16003         (drem_test_towardzero): Likewise.
16004         (remainder_test_downward): Likewise.
16005         (drem_test_downward): Likewise.
16006         (remainder_test_upward): Likewise.
16007         (drem_test_upward): Likewise.
16008         (remquo_test): Likewise.
16009         (rint_test): Likewise.
16010         (rint_test_tonearest): Likewise.
16011         (rint_test_towardzero): Likewise.
16012         (rint_test_downward): Likewise.
16013         (rint_test_upward): Likewise.
16014         (round_test): Likewise.
16015         (scalb_test): Likewise.
16016         (scalbn_test): Likewise.
16017         (scalbln_test): Likewise.
16018         (signbit_test): Likewise.
16019         (sin_test): Likewise.
16020         (sin_test_tonearest): Likewise.
16021         (sin_test_towardzero): Likewise.
16022         (sin_test_downward): Likewise.
16023         (sin_test_upward): Likewise.
16024         (sincos_test): Likewise.
16025         (sinh_test): Likewise.
16026         (sinh_test_tonearest): Likewise.
16027         (sinh_test_towardzero): Likewise.
16028         (sinh_test_downward): Likewise.
16029         (sinh_test_upward): Likewise.
16030         (sqrt_test): Likewise.
16031         (sqrt_test_tonearest): Likewise.
16032         (sqrt_test_towardzero): Likewise.
16033         (sqrt_test_downward): Likewise.
16034         (sqrt_test_upward): Likewise.
16035         (tan_test): Likewise.
16036         (tan_test_tonearest): Likewise.
16037         (tan_test_towardzero): Likewise.
16038         (tan_test_downward): Likewise.
16039         (tan_test_upward): Likewise.
16040         (tanh_test): Likewise.
16041         (tgamma_test): Likewise.
16042         (trunc_test): Likewise.
16043         (y0_test): Likewise.
16044         (y1_test): Likewise.
16045         (yn_test): Likewise.
16046         (significand_test): Likewise.
16048         * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
16049         individual tests in comment.
16050         (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
16051         (prev_max_error): New variable.
16052         (prev_real_max_error): Likewise.
16053         (prev_imag_max_error): Likewise.
16054         (compare_ulp_data): Don't refer to test names in comment.
16055         (find_test_ulps): Remove function.
16056         (find_function_ulps): Likewise.
16057         (find_complex_function_ulps): Likewise.
16058         (init_max_error): Take function name as argument.  Look up ulps
16059         for that function.
16060         (print_ulps): Remove function.
16061         (print_max_error): Use prev_max_error instead of calling
16062         find_function_ulps.
16063         (print_complex_max_error): Use prev_real_max_error and
16064         prev_imag_max_error instead of calling find_complex_function_ulps.
16065         (check_float_internal): Take max_ulp parameter instead of calling
16066         find_test_ulps.  Don't call print_ulps.
16067         (check_float): Update call to check_float_internal.
16068         (check_complex): Update calls to check_float_internal.
16069         (START): Pass argument to init_max_error.
16070         * math/gen-libm-test.pl (%results): Don't include "kind"
16071         information.
16072         (parse_ulps): Don't handle ulps of individual tests.
16073         (print_ulps_file): Likewise.
16074         (output_ulps): Likewise.
16075         * math/README.libm-test: Update.
16076         * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
16077         individual tests.
16078         * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
16079         * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
16080         * sysdeps/arm/libm-test-ulps: Likewise.
16081         * sysdeps/i386/fpu/libm-test-ulps: Likewise.
16082         * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
16083         * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
16084         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
16085         * sysdeps/microblaze/libm-test-ulps: Likewise.
16086         * sysdeps/mips/mips32/libm-test-ulps: Likewise.
16087         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
16088         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
16089         * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
16090         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
16091         * sysdeps/sh/libm-test-ulps: Likewise.
16092         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
16093         * sysdeps/tile/libm-test-ulps: Likewise.
16094         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16096 2014-03-04  Joseph Myers  <joseph@codesourcery.com>
16098         * math/libm-test.inc (print_complex_max_error): Check separately
16099         whether real and imaginary errors are within allowed range and
16100         pass 0 to print_complex_function_ulps instead of value within
16101         allowed range.
16103 2014-03-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
16105         * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
16106         formatting.
16107         (get_handles_fopen): Likewise.
16108         (do_write_test): Likewise.
16110         * libio/wfileops.c (do_ftell_wide): Fix up formatting.
16112         * libio/fileops.c (do_ftell): Use cached offset when
16113         available.
16114         * libio/iofwide.c (do_ftell_wide): Likewise.
16115         * libio/iofdopen.c (_IO_new_fdopen): Don't use
16116         _IO_file_attach.
16117         * libio/wfileops.c (_IO_fwide): Don't cache offset.
16119         [BZ #16532]
16120         * libio/libioP.h (get_file_offset): New function.
16121         * libio/fileops.c (get_file_offset): Likewise.
16122         (do_ftell): Likewise.
16123         (_IO_new_file_seekoff): Split out ftell logic.
16124         * libio/wfileops.c (do_ftell_wide): Likewise.
16125         (_IO_wfile_seekoff): Split out ftell logic.
16126         * libio/tst-ftell-active-handler.c: New test case.
16127         * libio/Makefile (tests): Add it.
16129 2014-03-03  Roland McGrath  <roland@hack.frob.com>
16131         * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
16132         * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
16134 2014-03-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
16136         [BZ #16639]
16137         * nscd/connections.c (nscd_init): Call do_exit.
16138         (start_threads): Call do_exit and notify_parent.
16139         (begin_drop_privileges): Call do_exit.
16140         (finish_drop_privileges): Likewise.
16141         * nscd/selinux.c (preserve_capabilities): Likewise.
16142         (install_real_capabilities): Likewise.
16143         (nscd_selinux_enabled): Likewise.
16144         (avc_create_thread): Likewise.
16145         (avc_alloc_lock): Likewise.
16146         (nscd_avc_init): Likewise.
16147         * nscd/nscd.c (parent_fd): New static variable.
16148         (main): Create a pipe between parent and child processes.
16149         Skip closing parent_fd.
16150         (monitor_child): New function.
16151         (do_exit): Likewise.
16152         (notify_parent): Likewise.
16153         * nscd/nscd.h (notify_parent): Likewise.
16154         (do_exit): Likewise.
16156 2014-03-03  Carlos O'Donell  <carlos@redhat.com>
16158         * malloc/malloc.c (__libc_calloc): Revert last change.
16160 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16162         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16164 2014-03-03  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
16166         * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
16167         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
16168         implementation.
16169         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
16170         (__libc_ifunc_impl_list): Likewise.
16171         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
16172         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
16173         * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
16174         * string/strrchr.c: Define STRRCHR.
16176 2014-02-28  Ondřej Bílka  <neleai@seznam.cz>
16178         * benchtest/bench-strtok.c (simple_strtok): Delete.
16179         (strtok_string): Use as benchmark.
16180         * string/strtok (STRTOK): New macro.
16182 2014-02-28  Carlos O'Donell  <carlos@redhat.com>
16184         * manual/threads.texi: Add header and standard comments to all
16185         functions.
16187         * elf/dl-lookup.c (check_match): New function.
16188         (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
16189         (do_lookup_x): Remove nested function check_match. Use non-nested
16190         function check_match.
16192 2014-02-28  Roland McGrath  <roland@hack.frob.com>
16194         * csu/Makefile (generated, before-compile): Use += rather than =.
16195         * catgets/Makefile (generated, generated-dirs): Likewise.
16196         * debug/Makefile (generated): Likewise.
16197         * dlfcn/Makefile (generated): Likewise.
16198         * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
16199         * iconvdata/Makefile (before-compile, generated): Likewise.
16200         * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
16201         * libio/Makefile (generated): Likewise.
16202         * malloc/Makefile (generated): Likewise.
16203         * manual/Makefile (generated, generated-dirs): Likewise.
16204         * misc/Makefile (generated): Likewise.
16205         * posix/Makefile (generated): Likewise.
16206         * resolv/Makefile (generated): Likewise.
16207         * sunrpc/Makefile (generated, generated-dirs): Likewise.
16208         * timezone/Makefile (generated, generated-dirs): Likewise.
16210         * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
16212 2014-02-27  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16214         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
16215         power8 implementation.
16216         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
16217         file: POWER8 llround ifunc implementation.
16218         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
16219         (__lllround): Add POWER8 implementation.
16220         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
16221         POWER8 llround implementation.
16223         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
16224         power8 implementation.
16225         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
16226         file: POWER8 llrint ifunc implementation.
16227         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
16228         Add POWER8 implementation.
16229         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
16230         POWER8 llrint implementation.
16232         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
16233         power8 implementation.
16234         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
16235         file: POWER8 finite ifunc implementation.
16236         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
16237         Add POWER8 implementation.
16238         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
16239         Likewise.
16240         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
16241         POWER8 finite implementation.
16242         * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
16244         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
16245         power8 implementation.
16246         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
16247         file: POWER8 isinf ifunc implementation.
16248         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
16249         POWER8 implementation.
16250         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
16251         Likewise.
16252         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
16253         isinf implementation.
16254         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
16256         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
16257         (INIT_ARCH): Add hwcap2 initialization.
16258         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
16259         power8 implementation.
16260         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
16261         file: POWER8 isnan ifunc implementation.
16262         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
16263         POWER8 implementation.
16264         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
16265         Likewise.
16266         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
16267         isnan implementation.
16268         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
16270 2014-02-27  Joey Ye  <joey.ye@arm.com>
16272         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
16273         (_FP_NANFRAC_Q): Set to zero.
16275 2014-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
16277         [BZ #16623]
16278         * math/auto-libm-test-in: New test inputs.
16279         * math/auto-libm-test-out: Regenerate.
16280         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
16281         and DA.
16282         (__cos): Likewise.
16283         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
16285 2014-02-27  Joseph Myers  <joseph@codesourcery.com>
16287         * scripts/evaluate-test.sh: Take new argument indicating whether
16288         failure is expected.
16289         * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
16290         indicating whether failure is expected.
16291         * conform/Makefile (test-xfail-run-conformtest): New variable.
16292         ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
16293         level.
16294         * posix/Makefile (test-xfail-annexc): New variable.
16295         ($(objpfx)annexc.out): Don't expect to fail at makefile level.
16297 2014-02-26  Joseph Myers  <joseph@codesourcery.com>
16299         * argp/Makefile: Include Makeconfig immediately after defining
16300         subdir.
16301         * assert/Makefile: Likewise.
16302         * benchtests/Makefile: Likewise.
16303         * catgets/Makefile: Likewise.
16304         * conform/Makefile: Likewise.
16305         * crypt/Makefile: Likewise.
16306         * csu/Makefile: Likewise.
16307         (all): Remove target.
16308         * ctype/Makefile: Include Makeconfig immediately after defining
16309         subdir.
16310         * debug/Makefile: Likewise.
16311         * dirent/Makefile: Likewise.
16312         * dlfcn/Makefile: Likewise.
16313         * gmon/Makefile: Likewise.
16314         * gnulib/Makefile: Likewise.
16315         * grp/Makefile: Likewise.
16316         * gshadow/Makefile: Likewise.
16317         * hesiod/Makefile: Likewise.
16318         * hurd/Makefile: Likewise.
16319         (all): Remove target.
16320         * iconvdata/Makefile: Include Makeconfig immediately after
16321         defining subdir.
16322         * inet/Makefile: Likewise.
16323         * intl/Makefile: Likewise.
16324         * io/Makefile: Likewise.
16325         * libio/Makefile: Likewise.
16326         (all): Remove target.
16327         * locale/Makefile: Include Makeconfig immediately after defining
16328         subdir.
16329         * login/Makefile: Likewise.
16330         * mach/Makefile: Likewise.
16331         (all): Remove target.
16332         * malloc/Makefile: Include Makeconfig immediately after defining
16333         subdir.
16334         (all): Remove target.
16335         * manual/Makefile: Include Makeconfig immediately after defining
16336         subdir.
16337         * math/Makefile: Likewise.
16338         * misc/Makefile: Likewise.
16339         * nis/Makefile: Likewise.
16340         * nss/Makefile: Likewise.
16341         * po/Makefile: Likewise.
16342         (all): Remove target.
16343         * posix/Makefile: Include Makeconfig immediately after defining
16344         subdir.
16345         * pwd/Makefile: Likewise.
16346         * resolv/Makefile: Likewise.
16347         * resource/Makefile: Likewise.
16348         * rt/Makefile: Likewise.
16349         * setjmp/Makefile: Likewise.
16350         * shadow/Makefile: Likewise.
16351         * signal/Makefile: Likewise.
16352         * socket/Makefile: Likewise.
16353         * soft-fp/Makefile: Likewise.
16354         * stdio-common/Makefile: Likewise.
16355         * stdlib/Makefile: Likewise.
16356         * streams/Makefile: Likewise.
16357         * string/Makefile: Likewise.
16358         * sunrpc/Makefile: Likewise.
16359         (all): Remove target.
16360         * sysvipc/Makefile: Include Makeconfig immediately after defining
16361         subdir.
16362         * termios/Makefile: Likewise.
16363         * time/Makefile: Likewise.
16364         * timezone/Makefile: Likewise.
16365         (all): Remove target.
16366         * wcsmbs/Makefile: Include Makeconfig immediately after defining
16367         subdir.
16368         * wctype/Makefile: Likewise.
16370 2014-02-26  Steve Ellcey  <sellcey@mips.com>
16372         * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
16373         (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
16374         (libc_feholdexcept_setround_mips): Ditto.
16375         (libc_feholdsetround): New.
16376         (libc_feholdsetroundf): New.
16377         (libc_feholdsetroundl): New.
16378         (libc_feupdateenv_test_mips): New.
16379         (libc_feupdateenv_test): New.
16380         (libc_feupdateenv_testf): New.
16381         (libc_feupdateenv_testl): New.
16382         (libc_feresetround): New.
16383         (libc_feresetroundf): New.
16384         (libc_feresetroundl): New.
16385         (libc_fetestexcept_mips): New.
16386         (libc_fetestexcept): New.
16387         (libc_fetestexceptf): New.
16388         (libc_fetestexceptl): New.
16389         (HAVE_RM_CTX): New.
16390         (libc_feholdexcept_setround_mips_ctx): New.
16391         (libc_feholdexcept_setround_ctx): New.
16392         (libc_feholdexcept_setroundf_ctx): New.
16393         (libc_feholdexcept_setroundl_ctx): New.
16394         (libc_fesetenv_mips_ctx): New.
16395         (libc_fesetenv_ctx): New.
16396         (libc_fesetenv_ctxf): New.
16397         (libc_fesetenv_ctxl): New.
16398         (libc_feupdateenv_mips_ctx): New.
16399         (libc_feupdateenv_ctx): New.
16400         (libc_feupdateenvf_ctx): New.
16401         (libc_feupdateenvl_ctx): New.
16402         (libc_feholdsetround_mips_ctx): New.
16403         (libc_feholdsetround_ctx): New.
16404         (libc_feholdsetroundf_ctx): New.
16405         (libc_feholdsetroundl_ctx): New.
16406         (libc_feresetround_mips_ctx): New.
16407         (libc_feresetround_ctx): New.
16408         (libc_feresetroundf_ctx): New.
16409         (libc_feresetroundl_ctx): New.
16411 2014-02-26  Carlos O'Donell  <carlos@redhat.com>
16413         * manual/ipc.texi (Semaphores): Use @Theglibc{}.
16415         * manual/ipc.texi: New file.
16416         * manual/Makefile (chapters): Add ipc.
16417         * manual/job.texi: Add "Inter-Process Communication" to next.
16418         * manual/process.texi: Add "Inter-Process Communication" to prev.
16420 2014-02-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16422         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16424 2014-02-26  Ondřej Bílka  <neleai@seznam.cz>
16426         * malloc/malloc.c (__libc_calloc): Simplify implementation.
16428         * manual/arith.texi: Fix spaces after sentences.
16429         * manual/charset.texi: Likewise.
16430         * manual/errno.texi: Likewise.
16431         * manual/install.texi: Likewise.
16432         * manual/llio.texi: Likewise.
16433         * manual/locale.texi: Likewise.
16434         * manual/maint.texi: Likewise.
16435         * manual/math.texi: Likewise.
16436         * manual/memory.texi: Likewise.
16437         * manual/message.texi: Likewise.
16438         * manual/probes.texi: Likewise.
16439         * manual/resource.texi: Likewise.
16440         * manual/signal.texi: Likewise.
16441         * manual/socket.texi: Likewise.
16442         * manual/stdio.texi: Likewise.
16443         * manual/string.texi: Likewise.
16444         * manual/time.texi: Likewise.
16445         * manual/users.texi: Likewise.
16447 2014-02-25  Carlos O'Donell  <carlos@redhat.com>
16449         [BZ #16632]
16450         * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
16451         _DEFAULT_SOURCE is defined.
16453 2014-02-25  Ulrich Drepper  <drepper@gmail.com>
16454             Carlos O'Donell  <carlos@redhat.com>
16456         [BZ #16613]
16457         * elf/dl-tls.c (_dl_count_modids): New function.
16458         * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
16459         * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
16460         audit library and increment generation counter.
16461         (_dl_allocate_tls_init): Add assertion to check TLS generation count.
16462         * elf/tst-audit9.c: New file.
16463         * elf/tst-auditmod9a.c: New file.
16464         * elf/tst-auditmod9b.c: New file.
16465         * elf/Makefile: Add rules to build and run tst-audit9.
16467 2014-02-25  Florian Weimer  <fweimer@redhat.com>
16469         [BZ #15347]
16470         * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
16472 2014-02-25  Will Newton  <will.newton@linaro.org>
16474         * sysdeps/arm/__longjmp.S: Include stap-probe.h.
16475         (__longjmp): Restore sp and lr before restoring callee
16476         saved registers.  Add longjmp and longjmp_target
16477         SystemTap probe point.
16478         * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
16479         * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
16480         Define to zero to match jmpbuf layout.
16481         * sysdeps/arm/setjmp.S: Include stap-probe.h.
16482         (__sigsetjmp): Save sp and lr before saving callee
16483         saved registers.  Add setjmp SystemTap probe point.
16485 2014-02-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
16487         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
16489 2014-02-24  Andreas Schwab  <schwab@suse.de>
16491         [BZ #15804]
16492         * elf/pldd.c (wait_for_ptrace_stop): New function.
16493         (main): Call it after attaching.
16495 2014-02-22  Roland McGrath  <roland@hack.frob.com>
16497         * Makerules ($(common-objpfx)Versions.v.i): No longer depend
16498         on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
16499         Versions files is now verboten.
16500         * hurd/Versions (libc: GLIBC_2.0):
16501         Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
16502         (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
16503         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
16504         * mach/Versions: Likewise.
16506         * csu/Versions: Remove unused %include.
16507         * resolv/Versions: Likewise.
16509 2014-02-21  Joseph Myers  <joseph@codesourcery.com>
16511         * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
16512         ($(objpfx)check-local-headers.out): Likewise.
16513         ($(objpfx)begin-end-check.out): Likewise.
16514         * Makerules (check-abi-%.out): Likewise.
16515         * catgets/Makefile ($(objpfx)test1.cat): Likewise.
16516         ($(objpfx)test2.cat): Likewise.
16517         ($(objpfx)de/libc.cat): Likewise.
16518         ($(objpfx)test-gencat.out): Likewise.
16519         * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
16520         * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
16521         ($(objpfx)noload-mem): Likewise.
16522         ($(objpfx)tst-pathopt.out): Likewise.
16523         ($(objpfx)tst-rtld-load-self.out): Likewise.
16524         ($(objpfx)tst-array1-cmp.out): Likewise.
16525         ($(objpfx)tst-array1-static-cmp.out): Likewise.
16526         ($(objpfx)tst-array2-cmp.out): Likewise.
16527         ($(objpfx)tst-array3-cmp.out): Likewise.
16528         ($(objpfx)tst-array4-cmp.out): Likewise.
16529         ($(objpfx)tst-array5-cmp.out): Likewise.
16530         ($(objpfx)tst-array5-static-cmp.out): Likewise.
16531         ($(objpfx)check-textrel.out): Likewise.
16532         ($(objpfx)check-execstack.out): Likewise.
16533         ($(objpfx)check-localplt.out): Likewise.
16534         ($(objpfx)order2-cmp.out): Likewise.
16535         ($(objpfx)tst-leaks1-mem): Likewise.
16536         ($(objpfx)tst-leaks1-static-mem): Likewise.
16537         ($(objpfx)tst-initorder-cmp.out): Likewise.
16538         ($(objpfx)tst-initorder2-cmp.out): Likewise.
16539         ($(objpfx)tst-unused-dep.out): Likewise.
16540         ($(objpfx)tst-unused-dep-cmp.out): Likewise.
16541         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
16542         * iconv/Makefile (test-iconvconfig): Likewise.
16543         * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
16544         ($(objpfx)iconv-test.out): Likewise.
16545         ($(objpfx)tst-tables.out): Likewise.
16546         * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
16547         ($(objpfx)tst-gettext.out): Likewise.
16548         ($(objpfx)tst-translit.out): Likewise.
16549         ($(objpfx)tst-gettext2.out): Likewise.
16550         ($(objpfx)tst-gettext4.out): Likewise.
16551         ($(objpfx)tst-gettext6.out): Likewise.
16552         * io/Makefile ($(objpfx)ftwtest.out): Likewise.
16553         * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
16554         ($(objpfx)tst-fopenloc-cmp.out): Likewise.
16555         ($(objpfx)tst-fopenloc-mem.out): Likewise.
16556         * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
16557         * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
16558         * posix/Makefile ($(objpfx)globtest.out): Likewise.
16559         ($(objpfx)wordexp-tst.out): Likewise.
16560         ($(objpfx)annexc.out): Likewise.
16561         ($(objpfx)tst-fnmatch-mem): Likewise.
16562         ($(objpfx)bug-regex2-mem): Likewise.
16563         ($(objpfx)bug-regex14-mem): Likewise.
16564         ($(objpfx)bug-regex21-mem): Likewise.
16565         ($(objpfx)bug-regex31-mem): Likewise.
16566         ($(objpfx)tst-vfork3-mem): Likewise.
16567         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
16568         ($(objpfx)tst-pcre-mem): Likewise.
16569         ($(objpfx)tst-boost-mem): Likewise.
16570         ($(objpfx)tst-getconf.out): Likewise.
16571         ($(objpfx)bug-ga2-mem): Likewise.
16572         ($(objpfx)bug-glob2-mem): Likewise.
16573         * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
16574         ($(objpfx)mtrace-tst-leaks2): Likewise.
16575         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
16576         ($(objpfx)tst-printf.out): Likewise.
16577         ($(objpfx)tst-setvbuf1.out): Likewise.
16578         ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
16579         * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
16580         ($(objpfx)tst-fmtmsg.out): Likewise.
16581         * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
16582         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
16584         * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
16585         * bits/sigaction.h [__USE_MISC]: Likewise.
16586         * bits/waitstatus.h: Update #endif comments.
16587         * ctype/ctype.h: Likewise.
16588         * dirent/dirent.h: Likewise.
16589         [__USE_MISC]: Remove redundant conditionals.
16590         * grp/grp.h: Update #endif comments.
16591         [__USE_GNU]: Remove redundant conditionals.
16592         [__USE_MISC]: Likewise.
16593         * inet/netinet/in.h [__USE_GNU]: Likewise.
16594         * io/sys/stat.h [__USE_MISC]: Likewise.
16595         * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
16596         * libio/bits/stdio.h: Update #endif comments.
16597         [__USE_MISC]: Remove redundant conditionals.
16598         * libio/bits/stdio2.h [__USE_MISC]: Likewise.
16599         * libio/stdio.h: Update #endif comments.
16600         [__USE_MISC]: Remove redundant conditionals.
16601         * math/bits/math-finite.h [__USE_MISC]: Likewise.
16602         * math/bits/mathcalls.h [__USE_MISC]: Likewise.
16603         * math/math.h: Update #else and #endif comments.
16604         [__USE_MISC]: Remove redundant conditionals.
16605         * misc/sys/uio.h: Update #endif comments.
16606         * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
16607         * posix/glob.h [__USE_MISC]: Likewise.
16608         * posix/sys/types.h: Update #endif comments.
16609         [__USE_MISC]: Remove redundant conditionals.
16610         * posix/sys/wait.h: Update #endif comments.
16611         [__USE_MISC]: Remove redundant conditionals.
16612         * posix/unistd.h: Update #endif comments.
16613         [__USE_MISC]: Remove redundant conditionals.
16614         * pwd/pwd.h [__USE_GNU]: Likewise.
16615         [__USE_MISC]: Likewise.
16616         * resolv/netdb.h [__USE_GNU]: Likewise.
16617         * signal/signal.h: Update #endif comments.
16618         [__USE_MISC]: Remove redundant conditionals.
16619         * stdlib/stdlib.h: Update #else and #endif comments.
16620         [__USE_MISC]: Remove redundant conditionals.
16621         [__USE_GNU]: Likewise.
16622         * string/bits/string2.h [__USE_MISC]: Likewise.
16623         * string/string.h: Update #endif comments.
16624         [__USE_MISC]: Remove redundant conditionals.
16625         * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
16626         Likewise.
16627         * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
16628         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
16629         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
16630         Likewise.
16631         * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
16632         Likewise.
16633         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
16634         comments.
16635         [__USE_MISC]: Remove redundant conditionals.
16636         * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
16637         * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
16638         * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
16639         * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
16640         * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
16641         Likewise.
16642         * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
16643         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
16644         Likewise.
16645         * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
16646         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
16647         Likewise.
16648         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
16649         Likewise.
16650         * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
16651         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
16652         Likewise.
16653         * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
16654         Likewise.
16655         * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
16656         * sysdeps/x86/bits/string.h: Update #endif comments.
16657         * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
16658         conditionals.
16659         * time/sys/time.h: Update #endif comments.
16660         * time/time.h: Likewise.
16661         [__USE_MISC]: Remove redundant conditionals.
16663 2014-02-21  Yury Gribov  <y.gribov@samsung.com>
16665         [BZ #16600]
16666         * sysdeps/arm/libm-test-ulps: Update for VFPv4.
16668 2014-02-21  Andreas Schwab  <schwab@linux-m68k.org>
16670         * Versions.def (librt): Add GLIBC_2.17.
16672 2014-02-21  Adam Conrad  <adconrad@0c3.net>
16674         * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
16675         synonym for _SYS_AUXV_H to allow direct inclusion.
16676         * sysdeps/sparc/bits/hwcap.h: Likewise.
16677         * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
16678         _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
16679         * sysdeps/sparc/sysdep.h: Likewise.
16681 2014-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
16683         * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
16685 2014-02-21  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
16687         * benchtests/bench-strrchr.c: Print length instead of position.
16689 2014-02-20  Joseph Myers  <joseph@codesourcery.com>
16691         [BZ #16611]
16692         * sysdeps/unix/sysv/linux/kernel-features.h
16693         [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
16694         (__ASSUME_SENDMMSG_SOCKETCALL): Define.
16695         [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
16696         __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
16697         Likewise.
16698         [__i386__ || __powerpc__ || __sh__ || __sparc__]
16699         (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
16700         [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
16701         (__ASSUME_SENDMMSG): Define instead of using previous
16702         [__LINUX_KERNEL_VERSION >= 0x020627] condition.
16703         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
16704         (__ASSUME_SENDMMSG_SYSCALL): Define.
16705         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16706         [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
16707         Likewise.
16708         * sysdeps/unix/sysv/linux/arm/kernel-features.h
16709         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
16710         Likewise.
16711         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
16712         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
16713         Likewise.
16714         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
16715         && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
16716         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
16717         [__ASSUME_SENDMMSG]: Change conditionals to
16718         [__ASSUME_SENDMMSG_SOCKETCALL].
16719         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16720         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
16721         Define.
16722         * sysdeps/unix/sysv/linux/mips/kernel-features.h
16723         [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
16724         Likewise.
16725         * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
16726         !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
16727         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
16728         [!__ASSUME_SENDMMSG]: Change conditional to
16729         [!__ASSUME_SENDMMSG_SOCKETCALL].
16730         * sysdeps/unix/sysv/linux/tile/kernel-features.h
16731         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
16732         Define.
16734         [BZ #16610]
16735         * sysdeps/unix/sysv/linux/kernel-features.h
16736         [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
16737         (__ASSUME_RECVMMSG_SOCKETCALL): Define.
16738         [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
16739         __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
16740         || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
16741         [__i386__ || __sparc__]
16742         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
16743         [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
16744         (__ASSUME_RECVMMSG): Define instead of using previous
16745         [__LINUX_KERNEL_VERSION >= 0x020621] condition.
16746         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
16747         (__ASSUME_RECVMMSG_SYSCALL): Define.
16748         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16749         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16750         Likewise.
16751         * sysdeps/unix/sysv/linux/arm/kernel-features.h
16752         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16753         Likewise.
16754         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
16755         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16756         Likewise.
16757         * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
16758         && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
16759         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
16760         [__ASSUME_RECVMMSG]: Change condition to
16761         [__ASSUME_RECVMMSG_SOCKETCALL].
16762         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16763         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16764         Define.
16765         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
16766         * sysdeps/unix/sysv/linux/mips/kernel-features.h
16767         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16768         Likewise.
16769         * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
16770         !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
16771         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
16772         [!__ASSUME_RECVMMSG]: Change condition to
16773         [!__ASSUME_RECVMMSG_SOCKETCALL].
16774         * sysdeps/unix/sysv/linux/tile/kernel-features.h
16775         (__ASSUME_RECVMMSG_SYSCALL): Define.
16777         [BZ #16609]
16778         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
16779         __powerpc__ || __s390__ || __sh__ || __sparc__]
16780         (__ASSUME_SOCKETCALL): Define.
16781         [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
16782         (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
16783         [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
16784         || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
16785         __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
16786         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
16787         [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
16788         (__ASSUME_ACCEPT4): Define instead of using previous
16789         [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
16790         __powerpc__ || __sparc__ || __s390__)] condition.
16791         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
16792         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
16793         * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
16794         !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
16795         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
16796         [!__ASSUME_ACCEPT4]: Change condition to
16797         [!__ASSUME_ACCEPT4_SOCKETCALL].
16798         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16799         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.  Correct
16800         condition to [__LINUX_KERNEL_VERSION >= 0x030200].
16801         * sysdeps/unix/sysv/linux/arm/kernel-features.h
16802         [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
16803         __ASSUME_ACCEPT4_SYSCALL.
16804         * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
16805         Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
16806         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
16807         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
16808         __ASSUME_ACCEPT4_SYSCALL.
16809         * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
16810         && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
16811         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
16812         [__ASSUME_ACCEPT4]: Change condition to
16813         [__ASSUME_ACCEPT4_SOCKETCALL].
16814         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
16815         (__ASSUME_SOCKETCALL): Define.
16816         [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
16817         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16818         (__ASSUME_SOCKETCALL): Define.
16819         (__ASSUME_ACCEPT4): Remove.
16820         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
16821         Define.
16822         * sysdeps/unix/sysv/linux/mips/kernel-features.h
16823         [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
16824         Likewise.
16825         * sysdeps/unix/sysv/linux/tile/kernel-features.h
16826         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
16828         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
16829         macro.
16830         (HWCAP_ARM_LPAE): Likewise.
16831         (HWCAP_ARM_EVTSTRM): Likewise.
16832         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
16833         Add vpfd32, lpae and evtstrm.
16834         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
16835         Increase to 22.
16837 2014-02-19  Joseph Myers  <joseph@codesourcery.com>
16839         * math/auto-libm-test-in: Add tests of clog10.
16840         * math/auto-libm-test-out: Regenerated.
16841         * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
16842         * sysdeps/i386/fpu/libm-test-ulps: Update.
16843         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16845 2014-02-18  Andreas Schwab  <schwab@suse.de>
16847         [BZ #16574]
16848         * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
16849         Store non-zero if the second buffer was newly allocated.
16850         (send_dg): Likewise.
16851         (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
16852         to send_vc and send_dg.
16853         (res_nsend): Pass NULL for ansp2_malloced.
16854         * resolv/res_query.c (__libc_res_nquery): Add parameter
16855         answerp2_malloced and pass it down to __libc_res_nsend.
16856         (res_nquery): Pass additional NULL to __libc_res_nquery.
16857         (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
16858         down to __libc_res_nquery and __libc_res_nquerydomain.  Deallocate
16859         second answer buffer if answerp2_malloced was set.
16860         (res_nsearch): Pass additional NULL to __libc_res_nsearch.
16861         (__libc_res_nquerydomain): Add parameter
16862         answerp2_malloced and pass it down to __libc_res_nquery.
16863         (res_nquerydomain): Pass additional NULL to
16864         __libc_res_nquerydomain.
16865         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
16866         additional NULL to __libc_res_nsend and __libc_res_nquery.
16867         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
16868         additional NULL to __libc_res_nsearch.
16869         (_nss_dns_gethostbyname4_r): Revert last change.  Use new
16870         parameter of __libc_res_nsearch to check for separately allocated
16871         second buffer.
16872         (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
16873         __libc_res_nquery.
16874         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
16875         additional NULL to __libc_res_nquery.
16876         * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
16877         __libc_res_nsearch.
16878         (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
16879         * include/resolv.h: Update prototypes of __libc_res_nquery,
16880         __libc_res_nsearch, __libc_res_nsend.
16882 2014-02-18  Joseph Myers  <joseph@codesourcery.com>
16884         * math/auto-libm-test-in: Add tests of fma.
16885         * math/auto-libm-test-out: Regenerated.
16886         * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
16887         (fma_towardzero_test_data): Likewise.
16888         (fma_downward_test_data): Likewise.
16889         (fma_upward_test_data): Likewise.
16890         * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
16891         mpc_mode.
16892         (rounding_modes): Add values for new field.
16893         (func_calc_method): Add value mpfr_fff_f.
16894         (func_calc_desc): Add mpfr_fff_f union field.
16895         (test_function): Add field exact_args.
16896         (FUNC): Add macro argument EXACT_ARGS.
16897         (FUNC_mpfr_f_f): Update call to FUNC.
16898         (FUNC_mpfr_f_f): Likewise.
16899         (FUNC_mpfr_ff_f): Likewise.
16900         (FUNC_mpfr_if_f): Likewise.
16901         (FUNC_mpc_c_f): Likewise.
16902         (FUNC_mpc_c_c): Likewise.
16903         (test_functions): Add fma.  Update calls to FUNC.
16904         (handle_input_arg): Add argument exact_args.
16905         (add_test): Update call to handle_input_arg.
16906         (calc_generic_results): Add argument mode.  Handle mpfr_fff_f.
16907         (output_for_one_input_case): Update call to calc_generic_results.
16908         Recalculate exact zero results in each rounding mode.
16910         * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
16911         non-negative before setting low bit.
16912         * math/auto-libm-test-in: Mark one asin test possibly having
16913         spurious underflow.
16914         * math/auto-libm-test-out: Regenerated.
16915         * sysdeps/i386/fpu/libm-test-ulps: Update.
16916         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16918 2014-02-17  David Holsgrove <david.holsgrove@xilinx.com>
16920         * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
16921         * sysdeps/unix/sysv/linux/microblaze: Move directory from
16922         ports/sysdeps/unix/sysv/linux/microblaze.
16923         * README: Add missing listing for microblaze*-*-linux-gnu.
16925 2014-02-16  Ondřej Bílka  <neleai@seznam.cz>
16927         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Remove
16928         duplicate code
16930 2014-02-16  Mike Frysinger  <vapier@gentoo.org>
16932         * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
16933         * sysdeps/unix/sysv/linux/ia64: Move directory from
16934         ports/sysdeps/unix/sysv/linux/ia64.
16935         * README: Update listing for ia64-*-linux-gnu.
16937 2014-02-14  Tomas Dohnalek  <tdohnale@redhat.com>
16938             Joseph Myers  <joseph@codesourcery.com>
16940         * Makeconfig (test-name): New variable.
16941         (evaluate-test): Likewise.
16942         * Makerules (do-test-clean): Remove .test-result files.
16943         (common-mostlyclean): Likewise.
16944         * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
16945         * scripts/evaluate-test.sh: New file.
16947 2014-02-14  Joseph Myers  <joseph@codesourcery.com>
16949         * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
16950         separate $(objpfx)tst-fopenloc-cmp.out and
16951         $(objpfx)tst-fopenloc-mem.out targets.
16952         (tests): Update dependencies.
16953         * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
16954         (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
16955         tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
16956         (tst-rxspencer-no-utf8-ARGS): New variable.
16957         (tst-rxspencer-no-utf8-ENV): Likewise.
16958         (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
16959         instead of $(objpfx)tst-rxspencer-mem.
16960         ($(objpfx)tst-rxspencer-mem): Change target to
16961         $(objpfx)tst-rxspencer-no-utf8-mem.  Depend on
16962         $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
16963         * posix/tst-rxspencer-no-utf8.c: New file.
16965         * elf/Makefile ($(objpfx)order.out): Remove rule.
16966         [$(run-built-tests) = yes] (tests): Depend on
16967         $(objpfx)order-cmp.out.
16968         ($(objpfx)order-cmp.out): New rule.
16969         [$(run-built-tests) = yes] (tests): Depend on
16970         $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
16971         $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
16972         $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
16973         $(objpfx)tst-array5-static-cmp.out.
16974         ($(objpfx)tst-array1.out): Remove rule.
16975         ($(objpfx)tst-array1-cmp.out): New rule.
16976         ($(objpfx)tst-array1-static.out): Remove rule.
16977         ($(objpfx)tst-array1-static-cmp.out): New rule.
16978         ($(objpfx)tst-array2.out): Remove rule.
16979         ($(objpfx)tst-array2-cmp.out): New rule.
16980         ($(objpfx)tst-array3.out): Remove rule.
16981         ($(objpfx)tst-array3-cmp.out): New rule.
16982         ($(objpfx)tst-array4.out): Remove rule.
16983         ($(objpfx)tst-array4-cmp.out): New rule.
16984         ($(objpfx)tst-array5.out): Remove rule.
16985         ($(objpfx)tst-array5-cmp.out): New rule.
16986         ($(objpfx)tst-array5-static.out): Remove rule.
16987         ($(objpfx)tst-array5-static-cmp.out): New rule.
16988         [$(run-built-tests) = yes] (tests): Depend on
16989         $(objpfx)order2-cmp.out.
16990         ($(objpfx)order2.out): Remove rule.
16991         ($(objpfx)order2-cmp.out): New rule.
16992         ($(objpfx)tst-initorder.out): Remove rule.
16993         [$(run-built-tests) = yes] (tests): Depend on
16994         $(objpfx)tst-initorder-cmp.out.
16995         ($(objpfx)tst-initorder-cmp.out): New rule.
16996         ($(objpfx)tst-initorder2.out): Remove rule.
16997         [$(run-built-tests) = yes] (tests): Depend on
16998         $(objpfx)tst-initorder2-cmp.out.
16999         ($(objpfx)tst-initorder2-cmp.out): New rule.
17000         [$(run-built-tests) = yes] (tests): Depend on
17001         $(objpfx)tst-unused-dep-cmp.out.
17002         ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
17003         ($(objpfx)tst-unused-dep-cmp.out): New rule.
17004         * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
17005         on $(objpfx)tst-setvbuf1-cmp.out.
17006         ($(objpfx)tst-setvbuf1.out): Do not run cmp.
17007         ($(objpfx)tst-setvbuf1-cmp.out): New rule.
17008         * string/Makefile [$(run-built-tests) = yes] (tests): Depend
17009         $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
17010         ($(objpfx)tst-svc.out): Remove rule.
17011         ($(objpfx)tst-svc-cmp.out): New rule.
17013 2014-02-13  Joseph Myers  <joseph@codesourcery.com>
17015         * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
17016         * ctype/ctype.h [__USE_MISC]: Likewise.
17017         * dirent/dirent.h [__USE_MISC]: Likewise.
17018         * grp/grp.h [__USE_MISC]: Likewise.
17019         * io/fcntl.h [__USE_MISC]: Likewise.
17020         * io/sys/stat.h [__USE_MISC]: Likewise.
17021         * libio/stdio.h [__USE_MISC]: Likewise.
17022         * posix/unistd.h [__USE_MISC]: Likewise.
17023         * pwd/pwd.h [__USE_MISC]: Likewise.
17024         * stdlib.h [__USE_MISC]: Likewise.
17025         * string/bits/string2.h [__USE_MISC]: Likewise.
17026         * string/string.h [__USE_MISC]: Likewise.
17027         * time/time.h [__USE_MISC]: Likewise.
17029 2014-02-13  Andreas Schwab  <schwab@suse.de>
17031         [BZ #16574]
17032         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
17033         second answer buffer if it was separately allocated.
17035 2014-02-12  Joseph Myers  <joseph@codesourcery.com>
17037         * sysdeps/mips/math-tests.h: Include <features.h>.
17038         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
17039         (ROUNDING_TESTS_long_double): Do not define.
17040         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
17041         (EXCEPTION_TESTS_long_double): Likewise.
17042         * sysdeps/mips/mips64/libm-test-ulps: Update.
17044         * include/features.h (__USE_BSD): Remove macro definitions.
17045         (__USE_SVID): Likewise.
17046         (_BSD_SOURCE): Likewise.
17047         (_SVID_SOURCE): Likewise.
17048         [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
17049         from definition of _DEFAULT_SOURCE.
17050         [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
17051         [_DEFAULT_SOURCE].
17052         * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
17053         * bits/mman.h [__USE_BSD]: Likewise.
17054         * bits/termios.h [__USE_BSD]: Likewise.
17055         * bits/waitstatus.h [__USE_BSD]: Likewise.
17056         * ctype/ctype.h [__USE_SVID]: Likewise.
17057         * dirent/dirent.h [__USE_BSD]: Likewise.
17058         * grp/grp.h [__USE_SVID]: Likewise.
17059         [__USE_BSD]: Likewise.
17060         * inet/netinet/igmp.h [__USE_BSD]: Likewise.
17061         * io/fcntl.h [__USE_BSD]: Likewise.
17062         * io/ftw.h [__USE_BSD]: Likewise.
17063         * io/sys/stat.h [__USE_BSD]: Likewise.
17064         * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
17065         * libio/bits/stdio2.h [__USE_BSD]: Likewise.
17066         * libio/stdio.h [__USE_SVID]: Likewise.
17067         [__USE_BSD]: Likewise.
17068         * math/math.h [__USE_SVID]: Likewise.
17069         [__USE_BSD]: Likewise.
17070         * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
17071         * misc/bits/syslog.h [__USE_BSD]: Likewise.
17072         * misc/search.h [__USE_SVID]: Likewise.
17073         * misc/sys/mman.h [__USE_BSD]: Likewise.
17074         * misc/sys/syslog.h [__USE_BSD]: Likewise.
17075         * misc/sys/uio.h [__USE_BSD]: Likewise.
17076         * posix/bits/unistd.h [__USE_BSD]: Likewise.
17077         * posix/glob.h [__USE_BSD]: Likewise.
17078         * posix/regex.h [__USE_BSD]: Likewise.
17079         * posix/sys/types.h [__USE_BSD]: Likewise.
17080         [__USE_SVID]: Likewise.
17081         * posix/sys/utsname.h [__USE_SVID]: Likewise.
17082         * posix/sys/wait.h [__USE_BSD]: Likewise.
17083         [__USE_SVID]: Likewise.
17084         * posix/unistd.h [__USE_BSD]: Likewise.
17085         [__USE_SVID]: Likewise.
17086         * pwd/pwd.h [__USE_SVID]: Likewise.
17087         * resolv/netdb.h [__USE_BSD]: Likewise.
17088         * setjmp/setjmp.h [__USE_BSD]: Likewise.
17089         * signal/signal.h [__USE_BSD]: Likewise.
17090         [__USE_SVID]: Likewise.
17091         * socket/sys/socket.h [__USE_BSD]: Likewise.
17092         * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
17093         * stdlib/stdlib.h [__USE_BSD]: Likewise.
17094         [__USE_SVID]: Likewise.
17095         * string/bits/string2.h [__USE_BSD]: Likewise.
17096         [__USE_SVID]: Likewise.
17097         * string/bits/string3.h [__USE_BSD]: Likewise.
17098         * string/endian.h [__USE_BSD]: Likewise.
17099         * string/string.h [__USE_SVID]: Likewise.
17100         [__USE_BSD]: Likewise.
17101         * string/strings.h [__USE_BSD]: Likewise.
17102         * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
17103         * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
17104         * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
17105         * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
17106         * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
17107         * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
17108         Likewise.
17109         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
17110         Likewise.
17111         * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
17112         * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
17113         Likewise.
17114         * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
17115         * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
17116         Likewise.
17117         * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
17118         Likewise.
17119         * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
17120         * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
17121         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
17122         Likewise.
17123         * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
17124         Likewise.
17125         * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
17126         * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
17127         * termios/termios.h [__USE_BSD]: Likewise.
17128         * time/sys/time.h [__USE_BSD]: Likewise.
17129         * time/time.h [__USE_BSD]: Likewise.
17130         [__USE_SVID]: Likewise.
17132         * Makefile (subdir_targets): Remove subdir_lint.out.
17134         * stdio-common/Makefile (do-tst-unbputc): Remove target.
17135         (do-tst-printf): Likewise.
17136         (tests): Depend directly on $(objpfx)tst-unbputc.out and
17137         $(objpfx)tst-printf.out.
17139         * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
17141         * Makerules (check-abi-%): Change target to
17142         $(objpfx)check-abi-%.out.
17143         (check-abi target): Update dependencies.
17144         (check-abi-pattern variable): Redirect output of diff to $@.
17145         (check-abi variable): Likewise.
17146         * elf/Makefile (check-abi): Update dependencies.
17148         * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
17149         unused.
17150         (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
17151         value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
17152         subnormal range.
17153         (_FP_PACK_CANONICAL): Determine tininess based on rounding to
17154         normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
17155         value has largest subnormal exponent.
17156         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
17157         (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
17158         * sysdeps/aarch64/soft-fp/sfp-machine.h
17159         (_FP_TININESS_AFTER_ROUNDING): New macro.
17160         * sysdeps/alpha/soft-fp/sfp-machine.h
17161         (_FP_TININESS_AFTER_ROUNDING): Likewise.
17162         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
17163         Likewise.
17164         * sysdeps/mips/mips64/soft-fp/sfp-machine.h
17165         (_FP_TININESS_AFTER_ROUNDING): Likewise.
17166         * sysdeps/mips/soft-fp/sfp-machine.h
17167         (_FP_TININESS_AFTER_ROUNDING): Likewise.
17168         * sysdeps/powerpc/soft-fp/sfp-machine.h
17169         (_FP_TININESS_AFTER_ROUNDING): Likewise.
17170         * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
17171         Likewise.
17172         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
17173         (_FP_TININESS_AFTER_ROUNDING): Likewise.
17174         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
17175         (_FP_TININESS_AFTER_ROUNDING): Likewise.
17176         * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
17177         Likewise.
17179 2014-02-12  Dylan Alex Simon  <dylan@dylex.net>
17181         [BZ #16545]
17182         * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
17183         model 1.
17185 2014-02-12  Richard Henderson  <rth@redhat.com>
17187         * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
17188         * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
17189         * sysdeps/unix/sysv/linux/alpha: Move directory from
17190         ports/sysdeps/unix/sysv/linux/alpha.
17191         * README: Update listing for alpha-*-linux-gnu.
17193 2014-02-11  Joseph Myers  <joseph@codesourcery.com>
17195         * include/features.h: Update comment documenting feature test
17196         macros.
17197         [_BSD_SOURCE || _SVID_SOURCE]: Give #warning.  Define
17198         _DEFAULT_SOURCE.
17199         * manual/creature.texi (_BSD_SOURCE): Remove documentation.
17200         (_SVID_SOURCE): Likewise.
17201         (_DEFAULT_SOURCE): Update description of default features.
17202         (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
17203         with _GNU_SOURCE.
17204         * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
17205         (S_ISVTX): Likewise.
17206         * manual/math.texi (Mathematical Constants): Likewise.
17207         * manual/signal.texi (Interrupted Primitives): Likewise.
17208         * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
17209         * math/test-matherr.c (_SVID_SOURCE): Do not define.
17210         * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
17211         Don't refer to _SVID_SOURCE in warning text.
17213         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17215         * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
17216         already defined.
17217         (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
17218         * sysdeps/mips/dl-lookup.c: Remove.
17219         * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
17221 2014-02-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
17223         [BZ #16447]
17224         * math/auto-libm-test-in: Add testcase for expl.
17225         * math/auto-libm-test-out: Regenerate.
17226         * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
17227         calculation of unsafe.
17228         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
17230 2014-02-11  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17232         * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
17233         * sysdeps/unix/sysv/linux/aarch64: Move directory from
17234         ports/sysdeps/unix/sysv/linux/aarch64.
17235         * README: Update listing for aarch64*-*-linux-gnu.
17237 2014-02-11  Will Newton  <will.newton@linaro.org>
17239         * manual/probes.texi (Mathematical Function Probes): Use
17240         "triggered" instead of "hit".
17242         * manual/probes.texi (Internal Probes): Add documentation
17243         of setjmp, longjmp and longjmp_target probes.
17245         * include/stap-probe.h: Add comment about probe argument
17246         format.
17248         * malloc/mtrace.c (attribute_hidden): Remove unused macro
17249         definition.  (tr_where, tr_freehook, tr_mallochook,
17250         tr_reallochook, tr_memalignhook): Use ANSI protoype.
17252 2014-02-11  David S. Miller  <davem@davemloft.net>
17254         * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
17255         processing int_tests.
17257 2014-02-10  Joseph Myers  <joseph@codesourcery.com>
17259         * sysdeps/mips: Move directory from ports/sysdeps/mips.
17260         * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
17261         * sysdeps/unix/sysv/linux/mips: Move directory from
17262         ports/sysdeps/unix/sysv/linux/mips.
17263         * README: Update listing for mips-*-linux-gnu and
17264         mips64-*-linux-gnu.
17266 2014-02-10  Andreas Schwab  <schwab@linux-m68k.org>
17268         * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
17269         * sysdeps/unix/sysv/linux/m68k: Move directory from
17270         ports/sysdeps/unix/sysv/linux/m68k.
17271         * README: Update listing for m68k-*-linux-gnu.
17273 2014-02-10  Chris Metcalf  <cmetcalf@tilera.com>
17275         * sysdeps/tile: Move directory from ports/sysdeps/tile.
17276         * sysdeps/unix/sysv/linux/generic: Move directory from
17277         ports/sysdeps/unix/sysv/linux/generic.
17278         * sysdeps/unix/sysv/linux/tile: Move directory from
17279         ports/sysdeps/unix/sysv/linux/tile.
17280         * README: Update listing for tile*-*-linux-gnu.
17282 2014-02-10  Ondřej Bílka  <neleai@seznam.cz>
17284         * assert/assert.c (__assert_fail_base): Use glibc_likely instead
17285         __builtin_expect.
17286         * benchtests/bench-memmem.c (simple_memmem): Likewise.
17287         * catgets/open_catalog.c (__open_catalog): Likewise.
17288         * csu/libc-start.c (LIBC_START_MAIN): Likewise.
17289         * debug/confstr_chk.c: Likewise.
17290         * debug/fread_chk.c (__fread_chk): Likewise.
17291         * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
17292         * debug/getgroups_chk.c: Likewise.
17293         * debug/mbsnrtowcs_chk.c: Likewise.
17294         * debug/mbsrtowcs_chk.c: Likewise.
17295         * debug/mbstowcs_chk.c: Likewise.
17296         * debug/memcpy_chk.c: Likewise.
17297         * debug/memmove_chk.c: Likewise.
17298         * debug/mempcpy_chk.c: Likewise.
17299         * debug/memset_chk.c: Likewise.
17300         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
17301         * debug/strcat_chk.c (__strcat_chk): Likewise.
17302         * debug/strcpy_chk.c (__strcpy_chk): Likewise.
17303         * debug/strncat_chk.c (__strncat_chk): Likewise.
17304         * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
17305         * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
17306         * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
17307         * debug/wcpncpy_chk.c: Likewise.
17308         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
17309         * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
17310         * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
17311         * debug/wcsncpy_chk.c: Likewise.
17312         * debug/wcsnrtombs_chk.c: Likewise.
17313         * debug/wcsrtombs_chk.c: Likewise.
17314         * debug/wcstombs_chk.c: Likewise.
17315         * debug/wmemcpy_chk.c: Likewise.
17316         * debug/wmemmove_chk.c: Likewise.
17317         * debug/wmempcpy_chk.c: Likewise.
17318         * debug/wmemset_chk.c: Likewise.
17319         * dirent/scandirat.c (SCANDIRAT): Likewise.
17320         * dlfcn/dladdr1.c (dladdr1): Likewise.
17321         * dlfcn/dladdr.c (dladdr): Likewise.
17322         * dlfcn/dlclose.c (dlclose_doit): Likewise.
17323         * dlfcn/dlerror.c (__dlerror): Likewise.
17324         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
17325         * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
17326         * dlfcn/dlopen.c (dlopen_doit): Likewise.
17327         * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
17328         * dlfcn/dlsym.c (dlsym_doit): Likewise.
17329         * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
17330         * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
17331         * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
17332         Likewise.
17333         * elf/dl-conflict.c: Likewise.
17334         * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
17335         * elf/dl-dst.h: Likewise.
17336         * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
17337         * elf/dl-fptr.c (_dl_make_fptr): Likewise.
17338         * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
17339         * elf/dl-init.c (call_init, _dl_init): Likewise.
17340         * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
17341         * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
17342         (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
17343         Likewise.
17344         * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
17345         Likewise.
17346         * elf/dl-minimal.c (__libc_memalign): Likewise.
17347         * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
17348         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
17349         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
17350         * elf/dl-sym.c (do_sym): Likewise.
17351         * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
17352         (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
17353         * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
17354         * elf/dl-writev.h (_dl_writev): Likewise.
17355         * elf/ldconfig.c (search_dir): Likewise.
17356         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
17357         (dl_main): Likewise.
17358         * elf/setup-vdso.h (setup_vdso): Likewise.
17359         * grp/compat-initgroups.c (compat_call): Likewise.
17360         * grp/fgetgrent.c (fgetgrent): Likewise.
17361         * grp/initgroups.c (getgrouplist, initgroups): Likewise.
17362         * grp/putgrent.c (putgrent): Likewise.
17363         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
17364         Likewise.
17365         * hurd/hurdinit.c: Likewise.
17366         * iconvdata/8bit-gap.c (struct): Likewise.
17367         * iconvdata/ansi_x3.110.c : Likewise.
17368         * iconvdata/big5.c : Likewise.
17369         * iconvdata/big5hkscs.c : Likewise.
17370         * iconvdata/cp1255.c: Likewise.
17371         * iconvdata/cp1258.c : Likewise.
17372         * iconvdata/cp932.c : Likewise.
17373         * iconvdata/euc-cn.c: Likewise.
17374         * iconvdata/euc-jisx0213.c : Likewise.
17375         * iconvdata/euc-jp.c: Likewise.
17376         * iconvdata/euc-jp-ms.c : Likewise.
17377         * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
17378         * iconvdata/gb18030.c : Likewise.
17379         * iconvdata/gbbig5.c (const): Likewise.
17380         * iconvdata/gbgbk.c: Likewise.
17381         * iconvdata/gbk.c : Likewise.
17382         * iconvdata/ibm1364.c : Likewise.
17383         * iconvdata/ibm930.c : Likewise.
17384         * iconvdata/ibm932.c: Likewise.
17385         * iconvdata/ibm933.c : Likewise.
17386         * iconvdata/ibm935.c : Likewise.
17387         * iconvdata/ibm937.c : Likewise.
17388         * iconvdata/ibm939.c : Likewise.
17389         * iconvdata/ibm943.c: Likewise.
17390         * iconvdata/iso_11548-1.c: Likewise.
17391         * iconvdata/iso-2022-cn.c : Likewise.
17392         * iconvdata/iso-2022-cn-ext.c : Likewise.
17393         * iconvdata/iso-2022-jp-3.c: Likewise.
17394         * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
17395         * iconvdata/iso-2022-kr.c : Likewise.
17396         * iconvdata/iso646.c (gconv_end): Likewise.
17397         * iconvdata/iso_6937-2.c : Likewise.
17398         * iconvdata/iso_6937.c : Likewise.
17399         * iconvdata/iso8859-1.c: Likewise.
17400         * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
17401         * iconvdata/shift_jisx0213.c : Likewise.
17402         * iconvdata/sjis.c : Likewise.
17403         * iconvdata/t.61.c : Likewise.
17404         * iconvdata/tcvn5712-1.c : Likewise.
17405         * iconvdata/tscii.c: Likewise.
17406         * iconvdata/uhc.c : Likewise.
17407         * iconvdata/unicode.c (gconv_end): Likewise.
17408         * iconvdata/utf-16.c (gconv_end): Likewise.
17409         * iconvdata/utf-32.c (gconv_end): Likewise.
17410         * iconvdata/utf-7.c (base64): Likewise.
17411         * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
17412         * iconv/gconv_close.c (__gconv_close): Likewise.
17413         * iconv/gconv_open.c (__gconv_open): Likewise.
17414         * iconv/gconv_simple.c (internal_ucs4_loop_single)
17415         (ucs4_internal_loop, ucs4_internal_loop_unaligned)
17416         (ucs4_internal_loop_single, internal_ucs4le_loop_single)
17417         (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
17418         (ucs4le_internal_loop_single): Likewise.
17419         * iconv/iconv.c (iconv): Likewise.
17420         * iconv/iconv_close.c: Likewise.
17421         * iconv/loop.c (SINGLE): Likewise.
17422         * iconv/skeleton.c (FUNCTION_NAME): Likewise.
17423         * include/atomic.h: Likewise.
17424         * inet/inet6_option.c (option_alloc): Likewise.
17425         * intl/bindtextdom.c (set_binding_values): Likewise.
17426         * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
17427         * intl/loadmsgcat.c (_nl_load_domain): Likewise.
17428         * intl/localealias.c (read_alias_file): Likewise.
17429         * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
17430         * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
17431         (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
17432         * libio/fmemopen.c (fmemopen): Likewise.
17433         * libio/iofgets.c (_IO_fgets): Likewise.
17434         * libio/iofgets_u.c (fgets_unlocked): Likewise.
17435         * libio/iofgetws.c (fgetws): Likewise.
17436         * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
17437         * libio/iogetdelim.c (_IO_getdelim): Likewise.
17438         * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
17439         (adjust_wide_data, _IO_wfile_seekoff): Likewise.
17440         * locale/findlocale.c (_nl_find_locale): Likewise.
17441         * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
17442         * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
17443         Likewise.
17444         * locale/setlocale.c (setlocale): Likewise.
17445         * login/programs/pt_chown.c (main): Likewise.
17446         * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
17447         * malloc/malloc.c (_int_malloc, _int_free): Likewise.
17448         * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
17449         (mmap, mmap64, mremap, munmap): Likewise.
17450         * math/e_exp2l.c: Likewise.
17451         * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
17452         * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
17453         * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
17454         * math/s_catan.c (__catan): Likewise.
17455         * math/s_catanf.c (__catanf): Likewise.
17456         * math/s_catanh.c (__catanh): Likewise.
17457         * math/s_catanhf.c (__catanhf): Likewise.
17458         * math/s_catanhl.c (__catanhl): Likewise.
17459         * math/s_catanl.c (__catanl): Likewise.
17460         * math/s_ccosh.c (__ccosh): Likewise.
17461         * math/s_ccoshf.c (__ccoshf): Likewise.
17462         * math/s_ccoshl.c (__ccoshl): Likewise.
17463         * math/s_cexp.c (__cexp): Likewise.
17464         * math/s_cexpf.c (__cexpf): Likewise.
17465         * math/s_cexpl.c (__cexpl): Likewise.
17466         * math/s_clog10.c (__clog10): Likewise.
17467         * math/s_clog10f.c (__clog10f): Likewise.
17468         * math/s_clog10l.c (__clog10l): Likewise.
17469         * math/s_clog.c (__clog): Likewise.
17470         * math/s_clogf.c (__clogf): Likewise.
17471         * math/s_clogl.c (__clogl): Likewise.
17472         * math/s_csin.c (__csin): Likewise.
17473         * math/s_csinf.c (__csinf): Likewise.
17474         * math/s_csinh.c (__csinh): Likewise.
17475         * math/s_csinhf.c (__csinhf): Likewise.
17476         * math/s_csinhl.c (__csinhl): Likewise.
17477         * math/s_csinl.c (__csinl): Likewise.
17478         * math/s_csqrt.c (__csqrt): Likewise.
17479         * math/s_csqrtf.c (__csqrtf): Likewise.
17480         * math/s_csqrtl.c (__csqrtl): Likewise.
17481         * math/s_ctan.c (__ctan): Likewise.
17482         * math/s_ctanf.c (__ctanf): Likewise.
17483         * math/s_ctanh.c (__ctanh): Likewise.
17484         * math/s_ctanhf.c (__ctanhf): Likewise.
17485         * math/s_ctanhl.c (__ctanhl): Likewise.
17486         * math/s_ctanl.c (__ctanl): Likewise.
17487         * math/w_pow.c: Likewise.
17488         * math/w_powf.c: Likewise.
17489         * math/w_powl.c: Likewise.
17490         * math/w_scalb.c (sysv_scalb): Likewise.
17491         * math/w_scalbf.c (sysv_scalbf): Likewise.
17492         * math/w_scalbl.c (sysv_scalbl): Likewise.
17493         * misc/error.c (error_tail): Likewise.
17494         * misc/pselect.c (__pselect): Likewise.
17495         * nis/nis_callback.c (__nis_create_callback): Likewise.
17496         * nis/nis_call.c (__nisfind_server): Likewise.
17497         * nis/nis_creategroup.c (nis_creategroup): Likewise.
17498         * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
17499         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
17500         * nis/nis_getservlist.c (nis_getservlist): Likewise.
17501         * nis/nis_lookup.c (nis_lookup): Likewise.
17502         * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
17503         * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
17504         (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
17505         * nis/nis_xdr.c (xdr_endpoint): Likewise.
17506         * nis/nss_compat/compat-grp.c (getgrent_next_file)
17507         (internal_getgrnam_r, internal_getgrgid_r): Likewise.
17508         * nis/nss_compat/compat-initgroups.c (add_group)
17509         (internal_getgrent_r): Likewise.
17510         * nis/nss_compat/compat-pwd.c (getpwent_next_file)
17511         (internal_getpwnam_r, internal_getpwuid_r): Likewise.
17512         * nis/nss_compat/compat-spwd.c (getspent_next_file)
17513         (internal_getspnam_r): Likewise.
17514         * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
17515         (_nss_nis_getaliasbyname_r): Likewise.
17516         * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
17517         (_nss_nis_getntohost_r): Likewise.
17518         * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
17519         (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
17520         (_nss_nis_getgrgid_r): Likewise.
17521         * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
17522         (internal_nis_gethostent_r, internal_gethostbyname2_r)
17523         (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
17524         (_nss_nis_gethostbyname4_r): Likewise.
17525         * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
17526         (initgroups_netid): Likewise.
17527         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
17528         * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
17529         (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
17530         * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
17531         (_nss_nis_getprotobynumber_r): Likewise.
17532         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
17533         (_nss_nis_getsecretkey): Likewise.
17534         * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
17535         (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
17536         (_nss_nis_getpwuid_r): Likewise.
17537         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
17538         (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
17539         * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
17540         (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
17541         * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
17542         (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
17543         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
17544         Likewise.
17545         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
17546         (_nss_nisplus_getntohost_r): Likewise.
17547         * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
17548         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
17549         * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
17550         (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
17551         Likewise.
17552         * nis/nss_nisplus/nisplus-initgroups.c
17553         (_nss_nisplus_initgroups_dyn): Likewise.
17554         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
17555         (_nss_nisplus_getnetbyaddr_r): Likewise.
17556         * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
17557         (_nss_nisplus_getprotobynumber_r): Likewise.
17558         * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
17559         (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
17560         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
17561         Likewise.
17562         * nis/nss_nisplus/nisplus-service.c
17563         (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
17564         (_nss_nisplus_getservbyport_r): Likewise.
17565         * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
17566         (_nss_nisplus_getspnam_r): Likewise.
17567         * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
17568         Likewise.
17569         * nscd/aicache.c (addhstaiX): Likewise.
17570         * nscd/cache.c (cache_search, prune_cache): Likewise.
17571         * nscd/connections.c (register_traced_file, send_ro_fd)
17572         (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
17573         (main_loop_epoll): Likewise.
17574         * nscd/grpcache.c (addgrbyX): Likewise.
17575         * nscd/hstcache.c (addhstbyX): Likewise.
17576         * nscd/initgrcache.c (addinitgroupsX): Likewise.
17577         * nscd/mem.c (gc, mempool_alloc): Likewise.
17578         * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
17579         (addinnetgrX): Likewise.
17580         * nscd/nscd-client.h (__nscd_acquire_maplock)
17581         (__nscd_drop_map_ref): Likewise.
17582         * nscd/nscd_getai.c (__nscd_getai): Likewise.
17583         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
17584         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
17585         Likewise.
17586         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
17587         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
17588         * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
17589         (__nscd_get_map_ref): Likewise.
17590         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
17591         * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
17592         Likewise.
17593         * nscd/pwdcache.c (addpwbyX): Likewise.
17594         * nscd/selinux.c (preserve_capabilities): Likewise.
17595         * nscd/servicescache.c (addservbyX): Likewise.
17596         * nss/nss_files/files-XXX.c (internal_getent): Likewise.
17597         * posix/fnmatch.c (fnmatch): Likewise.
17598         * posix/getopt.c (_getopt_internal_r): Likewise.
17599         * posix/glob.c (glob, glob_in_dir): Likewise.
17600         * posix/wordexp.c (exec_comm_child): Likewise.
17601         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
17602         (getanswer_r, gaih_getanswer_slice): Likewise.
17603         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
17604         * resolv/res_init.c: Likewise.
17605         * resolv/res_mkquery.c (res_nmkquery): Likewise.
17606         * resolv/res_query.c (__libc_res_nquery): Likewise.
17607         * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
17608         Likewise.
17609         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
17610         * stdio-common/perror.c (perror): Likewise.
17611         * stdio-common/printf_fp.c (___printf_fp): Likewise.
17612         * stdio-common/tmpnam.c (tmpnam): Likewise.
17613         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
17614         * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
17615         * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
17616         Likewise.
17617         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
17618         * stdlib/putenv.c (putenv): Likewise.
17619         * stdlib/setenv.c (__add_to_environ): Likewise.
17620         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
17621         * stdlib/strtol_l.c (INTERNAL): Likewise.
17622         * string/memmem.c (memmem): Likewise.
17623         * string/strerror.c (strerror): Likewise.
17624         * string/strnlen.c (__strnlen): Likewise.
17625         * string/test-memmem.c (simple_memmem): Likewise.
17626         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
17627         * sunrpc/pm_getport.c (__get_socket): Likewise.
17628         * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
17629         * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
17630         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
17631         (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
17632         Likewise.
17633         * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
17634         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
17635         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
17636         * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
17637         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
17638         * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
17639         Likewise.
17640         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
17641         Likewise.
17642         * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
17643         * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
17644         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
17645         * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
17646         * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
17647         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
17648         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
17649         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
17650         * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
17651         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
17652         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
17653         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
17654         Likewise.
17655         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
17656         Likewise.
17657         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
17658         Likewise.
17659         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
17660         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
17661         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
17662         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
17663         * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
17664         * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
17665         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
17666         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
17667         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
17668         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
17669         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
17670         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
17671         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
17672         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
17673         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
17674         * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
17675         Likewise.
17676         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
17677         Likewise.
17678         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
17679         Likewise.
17680         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
17681         Likewise.
17682         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
17683         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
17684         * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
17685         Likewise.
17686         * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
17687         * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
17688         * sysdeps/posix/opendir.c (__opendirat): Likewise.
17689         * sysdeps/posix/sleep.c: Likewise.
17690         * sysdeps/posix/tempname.c: Likewise.
17691         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
17692         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
17693         Likewise.
17694         * sysdeps/powerpc/powerpc32/dl-machine.h
17695         (elf_machine_runtime_setup, elf_machine_rela): Likewise.
17696         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
17697         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
17698         * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
17699         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
17700         Likewise.
17701         * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
17702         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
17703         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
17704         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
17705         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
17706         * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
17707         * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
17708         * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
17709         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
17710         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
17711         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
17712         (elf_machine_lazy_rel): Likewise.
17713         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
17714         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
17715         (elf_machine_lazy_rel): Likewise.
17716         * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
17717         * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
17718         * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
17719         * sysdeps/unix/grantpt.c (grantpt): Likewise.
17720         * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
17721         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
17722         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
17723         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
17724         Likewise.
17725         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
17726         * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
17727         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
17728         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
17729         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
17730         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
17731         * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
17732         * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
17733         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
17734         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
17735         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
17736         Likewise.
17737         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
17738         (__posix_fallocate64_l64): Likewise.
17739         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
17740         (posix_fallocate): Likewise.
17741         * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
17742         Likewise.
17743         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
17744         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
17745         (getifaddrs_internal): Likewise.
17746         * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
17747         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
17748         * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
17749         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
17750         * sysdeps/unix/sysv/linux/posix_fallocate64.c
17751         (__posix_fallocate64_l64): Likewise.
17752         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
17753         Likewise.
17754         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
17755         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
17756         (__get_clockfreq): Likewise.
17757         * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
17758         * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
17759         * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
17760         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
17761         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
17762         * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
17763         * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
17764         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
17765         Likewise.
17766         * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
17767         * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
17768         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
17769         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
17770         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
17771         * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
17772         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
17773         Likewise.
17774         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
17775         (posix_fallocate): Likewise.
17776         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
17777         * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
17778         * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
17779         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
17780         (elf_machine_rela, elf_machine_rela_relative)
17781         (elf_machine_lazy_rel): Likewise.
17782         * time/asctime.c (asctime_internal): Likewise.
17783         * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
17784         * time/tzset.c (__tzset_parse_tz): Likewise.
17785         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
17786         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
17787         * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
17788         * wcsmbs/wcsmbsload.h: Likewise.
17790         [BZ #15894]
17791         * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
17793         * malloc/arena.c (grow_heap, get_free_list, reused_arena)
17794         (arena_get2): Remove THREAD_STATS conditionals.
17795         * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
17796         (__malloc_stats, int): Likewise.
17798 2014-02-08  Mike Frysinger  <vapier@gentoo.org>
17800         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
17801         f.f_type to RAMFS_MAGIC too.  Compare mp->mnt_type to shm too.
17803         * manual/setjmp.texi: Fix typos/grammar errors.
17805         * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
17806         Only return early when n is <= 0.  Delete unused return statement.
17808         * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
17809         (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
17810         * debug/tst-longjmp_chk3.c: New file.
17812         * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
17813         (test_main): Replace code with set_fortify_handler call.
17814         * debug/test-strcpy_chk.c: Likewise.
17815         * debug/tst-chk1.c: Likewise.
17816         * debug/tst-longjmp_chk.c: Likewise.
17817         * test-skeleton.c: Include fcntl.h & paths.h
17818         (set_fortify_handler): Define.
17820         * debug/tst-longjmp_chk.c: Add header comment and include
17821         ../test-skeleton.c.
17822         (do_test): Mark static.
17823         (TEST_FUNCTION): Define.
17825         * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
17826         (IP_PMTUDISC_INTERFACE): Likewise.
17827         (IP_MULTICAST_IF): Likewise.
17828         (IP_MULTICAST_TTL): Likewise.
17829         (IP_MULTICAST_LOOP): Likewise.
17830         (IP_ADD_MEMBERSHIP): Likewise.
17831         (IP_DROP_MEMBERSHIP): Likewise.
17832         (IP_UNBLOCK_SOURCE): Likewise.
17833         (IP_BLOCK_SOURCE): Likewise.
17834         (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
17835         (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
17836         (IP_MSFILTER): Likewise.
17837         (MCAST_JOIN_GROUP): Likewise.
17838         (MCAST_BLOCK_SOURCE): Likewise.
17839         (MCAST_UNBLOCK_SOURCE): Likewise.
17840         (MCAST_LEAVE_GROUP): Likewise.
17841         (MCAST_JOIN_SOURCE_GROUP): Likewise.
17842         (MCAST_LEAVE_SOURCE_GROUP): Likewise.
17843         (MCAST_MSFILTER): Likewise.
17844         (IP_MULTICAST_ALL): Likewise.
17845         (IP_UNICAST_IF): Likewise.
17847         * timezone/Makefile: Delete $(have-ksh) check.
17848         ($(objpfx)tzselect): Change $(KSH) to $(BASH).
17849         * timezone/tzselect.ksh: Add +x mode bits.
17851         * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
17852         (ANON_INODE_FS_MAGIC): Likewise.
17853         (BDEVFS_MAGIC): Likewise.
17854         (BINFMTFS_MAGIC): Likewise.
17855         (BTRFS_TEST_MAGIC): Likewise.
17856         (CRAMFS_MAGIC_WEND): Likewise.
17857         (DEBUGFS_MAGIC): Likewise.
17858         (ECRYPTFS_SUPER_MAGIC): Likewise.
17859         (EXT3_SUPER_MAGIC): Likewise.
17860         (EXT4_SUPER_MAGIC): Likewise.
17861         (FUTEXFS_SUPER_MAGIC): Likewise.
17862         (HOSTFS_SUPER_MAGIC): Likewise.
17863         (HUGETLBFS_MAGIC): Likewise.
17864         (MINIX3_SUPER_MAGIC): Likewise.
17865         (MTD_INODE_FS_MAGIC): Likewise.
17866         (NILFS_SUPER_MAGIC): Likewise.
17867         (OPENPROM_SUPER_MAGIC): Likewise.
17868         (PIPEFS_MAGIC): Likewise.
17869         (PSTOREFS_MAGIC): Likewise.
17870         (QNX6_SUPER_MAGIC): Likewise.
17871         (RAMFS_MAGIC): Likewise.
17872         (REISERFS_SUPER_MAGIC_STRING): Likewise.
17873         (REISER2FS_SUPER_MAGIC_STRING): Likewise.
17874         (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
17875         (SECURITYFS_MAGIC): Likewise.
17876         (SELINUX_MAGIC): Likewise.
17877         (SMACK_MAGIC): Likewise.
17878         (SOCKFS_MAGIC): Likewise.
17879         (SQUASHFS_MAGIC): Likewise.
17880         (STACK_END_MAGIC): Likewise.
17881         (TMPFS_MAGIC): Likewise.
17882         (USBDEVICE_SUPER_MAGIC): Likewise.
17883         (V9FS_MAGIC): Likewise.
17884         (XENFS_SUPER_MAGIC): Likewise.
17885         (CRAMFS_MAGIC): Fix typo in comment.
17886         (EXT2_SUPER_MAGIC): Update comment.
17887         (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
17889 2014-02-08  Joseph Myers  <joseph@codesourcery.com>
17891         * sysdeps/arm: Move directory from ports/sysdeps/arm.
17892         * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
17893         * sysdeps/unix/sysv/linux/arm: Move directory from
17894         ports/sysdeps/unix/sysv/linux/arm.
17895         * README: Update listing for arm-*-linux-gnueabi.
17897         * README: Remove mention of am33.
17899 2014-02-07  Roland McGrath  <roland@hack.frob.com>
17901         * bits/sigset.h (__sigemptyset): Use a statement expression rather
17902         than the comma operator, to avoid "rhs of comma has no effect"
17903         compiler warnings.
17904         (__sigfillset, __sigandset, __sigorset): Likewise.
17905         * include/signal.h (__sigemptyset): Likewise.
17906         * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
17908 2014-02-07  Allan McRae  <allan@archlinux.org>
17910         * version.h (RELEASE): Set to "development".
17911         (VERSION): Set to "2.19.90"
17912         * NEWS: Add 2.20 section.
17914 2014-02-06  Carlos O'Donell  <carlos@redhat.com>
17916         [BZ #16529]
17917         * inet/netinet/in.h: Remove comma after IPPROTO_MH.
17919 2014-02-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
17921         * manual/contrib.texi: Update entry for Carlos O'Donell,
17922         Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
17924 2014-02-05  Carlos O'Donell  <carlos@rehdat.com>
17926         * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
17928         * sysdeps/unix/sysv/linux/kernel-features.h
17929         [__LINUX_KERNEL_VERSION >= 0x020621]
17930         (__ASSUME_PROC_PID_TASK_COMM): Define.
17932 2014-02-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
17934         [BZ #16398]
17935         * libio/wfileops.c (_IO_wfile_seekoff): Break out form
17936         conversion when destination buffer does not have enough space.
17937         * libio/tst-ftell-partial-wide.c: New test case.
17938         * libio/Makefile (tests): Add tst-ftell-partial-wide.
17940         * manual/contrib.texi: Update entry for Ondrej Bilka, Will
17941         Newton and Alexandre Oliva.  Add entries for Steve Ellcey, Chris
17942         Leonard and Allan McRae.
17944 2014-02-04  David S. Miller  <davem@davemloft.net>
17946         * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
17947         32-bit.
17949 2014-02-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17951         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
17952         New file
17953         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
17954         New file
17955         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
17956         New file.
17957         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
17958         New file.
17959         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
17960         New file.
17961         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
17962         New file.
17963         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
17964         New file.
17965         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
17966         New file.
17967         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
17968         New file.
17969         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
17970         New file.
17971         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
17972         New file.
17973         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
17974         New file.
17975         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
17976         New file.
17978 2014-02-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17980         * nptl/shlib-versions: Change powerpc*le start to 2.17.
17981         * shlib-versions: Likewise.
17983 2014-02-04  Roland McGrath  <roland@hack.frob.com>
17984             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17986         * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
17987         (abilist-pattern): New variable, set to %-le.abilist.
17989         * Makerules (abilist-pattern): New variable.
17990         (vpath): Use $(abilist-pattern) in place of %.abilist.
17991         (check-abi-% pattern rule): Likewise.
17992         (check-abi, update-abi): Likewise.
17994 2014-02-04  Eric Wong  <normalperson@yhbt.net>
17996         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17998 2014-02-03  Carlos O'Donell  <carlos@redhat.com>
18000         * manual/startup.texi: Add next, previous, and top entries for
18001         the `Program Arguments' and `Environment Variables' nodes.
18003 2014-02-03  Alexandre Oliva <aoliva@redhat.com>
18005         * manual/macros.texi: Add comments before MTASC-safety macros.
18007         * manual/users.texi: Document MTASC-safety properties.
18009         * manual/threads.texi (pthread_key_create, pthread_key_delete)
18010         (pthread_getspecific, pthread_setspecific): Format with
18011         @deftypefun, and add @safety note.
18012         * manual/signal.texi: Move comments that analyze the above
18013         functions to their home place.
18015 2014-02-03  Allan McRae  <allan@archlinux.org>
18017         * po/sl.po: Update Slovenian translation from translation project.
18019 2014-02-02  Alexandre Oliva <aoliva@redhat.com>
18021         * manual/time.texi (timegm): Add missing blank after @c.
18022         Reported by Joseph Myers <joseph@codesourcery.com>.
18024 2014-02-01  Alexandre Oliva <aoliva@redhat.com>
18026         * manual/check-safety.sh: New.
18027         * manual/Makefile ($(objpfx)stamp-summary): Run it.
18029         * manual/terminal.texi: Document MTASC-safety properties.
18031         * manual/filesys.texi: Document MTASC-safety properties.
18033         * manual/errno.texi: Document MTASC-safety properties.
18035         * manual/intro.texi: Document safety identifiers and
18036         conditionals.
18038         * manual/string.texi (wcstok): Fix prototype.
18039         (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
18041         * manual/time.texi: Document MTASC-safety properties.
18043         * manual/string.texi: Document MTASC-safety properties.
18045         * manual/threads.texi: Document MTASC-safety properties.
18047         * manual/stdio.texi: Document MTASC-safety properties.
18049         * manual/syslog.texi: Document MTASC-safety properties.
18051         * manual/sysinfo.texi: Document MTASC-safety properties.
18053         * manual/startup.texi: Document MTASC-safety properties.
18055         * manual/socket.texi: Document MTASC-safety properties.
18057         * manual/signal.texi: Document MTASC-safety properties.
18059 2014-01-31  Alexandre Oliva <aoliva@redhat.com>
18061         * manual/setjmp.texi: Document MTASC-safety properties.
18063         * manual/search.texi: Document MTASC-safety properties.
18065         * manual/resource.texi: Document MTASC-safety properties.
18067         * manual/process.texi: Document MTASC-safety properties.
18069         * manual/platform.texi: Document MTASC-safety properties.
18071         * manual/pipe.texi: Document MTASC-safety properties.
18073         * manual/pattern.texi: Document MTASC-safety properties.
18075         * manual/message.texi: Document MTASC-safety properties.
18077         [BZ #12751]
18078         * manual/memory.texi: Document MTASC-safety properties.
18080         * manual/math.texi: Document MTASC-safety properties.
18082         * manual/locale.texi: Document MTASC-safety properties.
18084         * manual/llio.texi: Document MTASC-safety properties.
18086         * manual/libdl.texi: New.
18088         * manual/lang.texi: Document MTASC-safety properties.
18090         * manual/job.texi: Document MTASC-safety properties.
18092         * manual/getopt.texi: Document MTASC-safety properties.
18094         * manual/ctype.texi: Document MTASC-safety properties.
18096 2014-01-31  Maciej W. Rozycki  <macro@codesourcery.com>
18098         [BZ #16046]
18099         * csu/libc-tls.c (static_map): Remove variable.
18100         (__libc_setup_tls): Use main executable's link map for TLS data.
18101         * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
18102         casing for LM_ID_BASE and GL(dl_nns).
18103         * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
18104         function.  Alias dl_iterate_phdr to __dl_iterate_phdr.
18105         * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
18106         casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
18107         * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
18108         member.
18109         (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
18110         l_phnum members.
18112 2014-01-30  Alexandre Oliva <aoliva@redhat.com>
18114         * manual/debug.texi: Document MTASC-safety properties.
18116 2014-01-29  H.J. Lu  <hongjiu.lu@intel.com>
18118         [BZ #16510]
18119         * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
18120         of __x86_64__ when disabling x87 inline functions.
18122 2014-01-29  Alexandre Oliva <aoliva@redhat.com>
18124         * manual/charset.texi: Document MTASC-safety properties.
18126         * manual/crypt.texi: Document MTASC-safety properties.
18128         * manual/conf.texi: Document MTASC-safety properties.
18130         * manual/arith.texi: Document MTASC-safety properties.
18132         * manual/argp.texi: Document MTASC-safety properties.
18134         * manual/macros.texi: Introduce macros to document multi
18135         thread, asynchronous signal and asynchronous cancellation
18136         safety properties.
18137         * manual/intro.texi: Introduce the properties themselves.
18139 2014-01-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18141         * sysdeps/sh/sh4/Makefile: New file.
18143 2014-01-27  Andreas Schwab  <schwab@linux-m68k.org>
18145         * math/gen-libm-test.pl ($srcdir): New variable.
18146         ($auto_input): Use it.
18148 2014-01-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
18150         [BZ #16506]
18151         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
18152         access beyond array bounds when parsing netgroups file.
18154         * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
18155         the old buffer before realloc.
18157 2014-01-27  Allan McRae  <allan@archlinux.org>
18159         * po/fr.po: Update French translation from translation project.
18161 2014-01-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18163         * sysdeps/sh/libm-test-ulps: Regenerate.
18165 2014-01-24  David S. Miller  <davem@davemloft.net>
18167         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
18169 2014-01-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18171         * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
18172         * sysdeps/sh/libm-test-ulps: ... here and regenerated.
18174 2013-01-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
18176         [BZ #16474]
18177         * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
18178         string pointers after reallocation.
18180 2014-01-24  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18182         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
18183         __SH4A__ instead of __SH_FPU_ANY__.
18185 2014-01-23  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18187         * sysdeps/sh/fpu_control.h: New file.
18188         * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
18189         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
18190         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
18191         * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
18192         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
18193         * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
18194         * sysdeps/sh/sys/ucontext.h: Remove.
18195         * sysdeps/sh/sys: Remove directory.
18197 2014-01-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18199         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
18200         s390/sys/ucontext.h.
18201         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
18202         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
18204 2014-01-20  H.J. Lu  <hongjiu.lu@intel.com>
18206         [BZ #15605]
18207         * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
18209 2014-01-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18211         [BZ#16431]
18212         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
18213         Adjust the vDSO correctly for internal calls.
18214         * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
18216 2014-01-20  Allan McRae  <allan@archlinux.org>
18218         * po/ca.po: Update Catalan translation from translation project.
18220 2014-01-16  Mike Frysinger  <vapier@gentoo.org>
18222         * sysdeps/s390/sotruss-lib.c: New file.
18224 2014-01-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18226         [BZ#16430]
18227         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
18228         (__GI___gettimeofday): Alias for a different internal symbol to avoid
18229         local calls issues by not having a PLT stub required for IFUNC calls.
18230         * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
18232 2014-01-16 Joseph Myers  <joseph@codesourcery.com>
18234         * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
18235         * math/test-fpucw-static.c: Likewise.
18237 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
18239         [BZ #16453]
18240         * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
18242 2014-01-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18244         * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
18245         implementation for powerpc.
18247 2014-01-15  Ondřej Bílka  <neleai@seznam.cz>
18249         [BZ #14782]
18250         * sysdeps/posix/system.c (__libc_system): Do not enable
18251         asynchronous cancellation.
18253 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18255         [BZ #16427]
18256         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
18257         handling only for numbers special also in the IEEE case.
18259 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18261         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
18263 2014-01-11  Allan McRae  <allan@archlinux.org>
18265         * po/bg.po: Update Bulgarian translation from translation project.
18267         * po/de.po: Update German translation from translation project.
18269 2014-01-10  Roland McGrath  <roland@hack.frob.com>
18271         * sysdeps/generic/gcc-compat.h: New file.
18273 2014-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
18275         * benchtests/asin-inputs: Correct slow inputs.
18276         * benchtests/acos-inputs: Likewise.
18278 2014-01-10  Allan McRae  <allan@archlinux.org>
18280         * po:sv.po: Update Swedish translation from translation project.
18282         * po/vi.po: Update Vietnamese translation from translation project.
18284         * po/eo.po: Update Esperanto translation from translation project.
18286         * po/cs.po: Update Czech translation from translation project.
18288         * po/nl.po: Update Dutch translation from translation project.
18290         * po/pl.po: Update Polish translation from translation project.
18292         * po/ru.po: Update Russian translation from translation project.
18294         * po/uk.po: Update Ukrainian translation from translation project.
18296 2014-01-08  Brooks Moses  <bmoses@google.com>
18298         * elf/dl-load.c: Fix comment typo.
18300 2014-01-08  Carlos O'Donell  <carlos@redhat.com>
18302         * po/header.pot: Rename to...
18303         * po/pot.header: ... this.
18304         * po/Makefile: Use pot.header.
18306 2014-01-08  Yuriy Kaminskiy  <yumkam@gmail.com>
18307             Maxim Kuvyrkov  <maxim@kugelworks.com>
18309         [BZ #16394]
18310         * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
18311         SRC and DEST against LEN.
18313 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18315         [BZ #16414]
18316         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
18317         implementation.
18318         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
18320 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18322         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18324 2014-01-08  Joseph Myers  <joseph@codesourcery.com>
18326         [BZ #16408]
18327         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
18328         for large positive arguments.
18330 2014-01-07  Joseph Myers  <joseph@codesourcery.com>
18332         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
18334         * math/auto-libm-test-in: Mark various tests with
18335         xfail-rounding:ldbl-128ibm.
18336         * math/auto-libm-test-out: Regenerated.
18338         [BZ #16407]
18339         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
18340         Increase overflow threshold.
18342 2014-01-07  Ondřej Bílka  <neleai@seznam.cz>
18344         [BZ #14286]
18345         * stdio-common/vfprintf.c: Check for integer overflow.
18347 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18349         * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
18350         the first argument and return value of __tls_get_addr_internal.
18352 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18354         * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
18355         also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
18357 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18359         * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
18360         * sysdeps/s390/rtld-global-offsets.sym: New file.
18361         * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
18362         GLIBC_2.19 symbol.
18363         * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
18364         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
18365         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
18366         ... this.
18367         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
18368         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
18369         ... this.
18370         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
18371         Regenerate.
18372         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
18373         Regenerate.
18374         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
18375         halfs of GPRs for high_gprs contexts.
18376         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
18377         restore upper halfs of GPRs for high_gprs contexts.  Copy uc_flags
18378         field.
18379         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
18380         uc_flags field.
18381         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
18382         64 bit versions:
18383         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
18384         for high GPRs (uc_high_gprs) and for future extensions
18385         (__reserved).
18386         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
18387         for future extensions (__reserved).
18388         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
18389         64 bit versions:
18390         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
18391         SC_HIGHGPRS offset definition.
18392         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
18393         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
18395         * Versions.def: Add GLIBC_2.19 for libpthread.
18396         * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
18397         siglongjmp for libpthread with GLIBC_2.19 symver.
18398         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
18399         * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
18400         * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
18401         * sysdeps/s390/__longjmp.c: New file.
18402         * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
18403         * sysdeps/s390/longjmp.c: New file.
18404         * sysdeps/s390/setjmp.S: New file.
18405         * sysdeps/s390/sigjmp.S: New file.
18406         * sysdeps/s390/v1-longjmp.c: New file.
18407         * sysdeps/s390/v1-setjmp.h: New file.
18408         * sysdeps/s390/v1-sigjmp.c: New file.
18409         * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
18410         * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
18411         GLIBC_2.19 version.
18412         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
18413         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
18414         versioned symbols for ____longjmp_chk.
18415         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
18416         Likewise.
18417         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
18418         Regenerate.
18419         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
18420         Regenerate.
18421         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
18422         Regenerate.
18423         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
18424         Regenerate.
18425         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
18426         * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
18427         * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
18428         * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
18429         * sysdeps/s390/s390-32/setjmp-common.S: ... this.
18430         * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
18431         * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
18432         * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
18433         * sysdeps/s390/s390-64/setjmp-common.S: ... this.
18434         * sysdeps/s390/rtld-__longjmp.c: New file.
18435         * sysdeps/s390/rtld-setjmp.S: New file.
18437 2014-01-06  Joseph Myers  <joseph@codesourcery.com>
18439         [BZ #16400]
18440         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
18441         Return -__logl (x) for small positive arguments without evaluating
18442         a polynomial.
18444 2014-01-06  Mike Frysinger  <vapier@gentoo.org>
18446         * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
18447         Rename to ...
18448         (__ptrace_peeksiginfo_args): ... this.
18449         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
18450         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
18451         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
18453 2014-01-06  Allan McRae  <allan@archlinux.org>
18455         * inet/netinet/in.h: Fix typo in comment.
18457 2014-01-05  Andreas Jaeger  <aj@suse.de>
18459         * sysdeps/i386/fpu/libm-test-ulps: Update.
18461 2014-01-05  Allan McRae  <allan@archlinux.org>
18463         * po/libc.pot: Regenerated.
18465         * malloc/memusagestat.c: Fix gettext call formatting.
18467 2014-01-04  Sami Kerola  <kerolasa@iki.fi>
18469         * nscd/nscd.c: Improve usage() output.
18471 2014-01-04  Mike Frysinger  <vapier@gentoo.org>
18473         * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
18474         * sysdeps/unix/sysv/linux/configure: Regenerated.
18475         * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
18476         * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
18478 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
18480         [BZ #16390]
18481         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
18482         (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
18484 2014-01-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18486         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
18487         extra tokens at end of #undef directive.
18488         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
18489         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
18490         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
18492 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
18494         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
18496         * math/auto-libm-test-in: Mark various tests with
18497         xfail-rounding:ldbl-128ibm.
18498         * math/auto-libm-test-out: Regenerated.
18500 2014-01-02  Joseph Myers  <joseph@codesourcery.com>
18502         [BZ #16386]
18503         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
18504         numbers with subnormal high part when calculating exponent.
18506         [BZ #16385]
18507         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
18508         fabs.
18510         [BZ #16384]
18511         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
18512         M_LN2l.
18513         (__ieee754_acoshl): Use __log1pl not __log1p.
18515 2013-01-02  Ondřej Bílka  <neleai@seznam.cz>
18517         * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
18518         (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
18519         (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
18520         (grow_heap, heap_trim, _int_new_arena, get_free_list)
18521         (reused_arena, arena_get2): Convert to GNU style.
18522         * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
18523         (mem2mem_check, mem2chunk_check, top_check, realloc_check)
18524         (memalign_check, __malloc_set_state): Likewise.
18525         * malloc/mallocbug.c (main): Likewise.
18526         * malloc/malloc.c (__malloc_assert, malloc_init_state)
18527         (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
18528         (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
18529         (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
18530         (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
18531         (__posix_memalign, malloc_info): Likewise.
18532         * malloc/malloc.h: Likewise.
18533         * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
18534         (mallochook, memalignhook, reallochook, mabort): Likewise.
18535         * malloc/mcheck.h: Likewise.
18536         * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
18537         (free, mmap, mmap64, mremap, munmap, dest): Likewise.
18538         * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
18539         * malloc/morecore.c (__default_morecore): Likewise.
18540         * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
18541         * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
18542         (_obstack_allocated_p, obstack_free, _obstack_memory_used)
18543         (print_and_abort): Likewise.
18544         * malloc/obstack.h: Likewise.
18545         * malloc/set-freeres.c (__libc_freeres): Likewise.
18546         * malloc/tst-mallocstate.c (main): Likewise.
18547         * malloc/tst-mtrace.c (main): Likewise.
18548         * malloc/tst-realloc.c (do_test): Likewise.
18550 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
18552         [BZ #16366]
18553         * nscd/netgroupcache.c (do_notfound): New function.
18554         (addgetnetgrentX): Use it.
18556         [BZ # 16365]
18557         * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
18558         NSS_STATUS_NOTFOUND.
18560 2014-01-01  Joseph Myers  <joseph@codesourcery.com>
18562         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
18563         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18565 2014-01-01  Allan McRae  <allan@archlinux.org>
18567         * scripts/update-copyrights: Update configure input file suffix.
18569         * NEWS: Update copyright year.
18570         * catgets/gencat.c: Likewise.
18571         * csu/version.c: Likewise.
18572         * debug/catchsegv.sh: Likewise.
18573         * debug/pcprofiledump.c: Likewise.
18574         * debug/xtrace.sh: Likewise.
18575         * elf/ldconfig.c: Likewise.
18576         * elf/ldd.bash.in: Likewise.
18577         * elf/pldd.c: Likewise.
18578         * elf/sotruss.ksh: Likewise.
18579         * elf/sprof.c: Likewise.
18580         * iconv/iconv_prog.c: Likewise.
18581         * iconv/iconvconfig.c: Likewise.
18582         * locale/programs/locale.c: Likewise.
18583         * locale/programs/localedef.c: Likewise.
18584         * login/programs/pt_chown.c: Likewise.
18585         * malloc/memusage.sh: Likewise.
18586         * malloc/memusagestat.c: Likewise.
18587         * malloc/mtrace.pl: Likewise.
18588         * manual/libc.texinfo: Likewise.
18589         * nscd/nscd.c: Likewise.
18590         * nss/getent.c: Likewise.
18591         * nss/makedb.c: Likewise.
18592         * posix/getconf.c: Likewise.
18593         * scripts/test-installation.pl: Likewise.
18595         * All files with FSF copyright notices: Update copyright dates
18596         using scripts/update-copyrights.
18597         * intl/plural.c: Regenerated.
18598         * locale/programs/charmap-kw.h: Likewise.
18599         * locale/programs/locfile-kw.h: Likewise.
18601 2013-12-31  Mike Frysinger  <vapier@gentoo.org>
18603         * sysdeps/unix/sysv/linux/configure: Regenerated.
18604         * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
18605         the linux/fanotify.h header.
18606         * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
18607         HAVE_LINUX_FANOTIFY_H is defined.
18609 2013-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
18611         * benchtests/cos-inputs: New inputs.
18612         * benchtests/sin-inputs: Likewise.
18614         * benchtests/atan-inputs: New inputs. Fix name of multiple
18615         precision fallback inputs.
18617         * benchtests/atanh-inputs: New inputs.
18618         * benchtests/tanh-inputs: Likewise.
18620         * benchtests/acosh-inputs: New inputs.
18621         * benchtests/asinh-inputs: Likewise.
18623         * benchtests/cosh-inputs: New inputs.
18624         * benchtests/sinh-inputs: Likewise.
18626         * benchtests/acos-inputs: Add more inputs.
18627         * benchtests/asin-inputs: Likewise.
18629 2013-12-30  Ville Skytta  <ville.skytta@iki.fi>
18631         [BZ #16375]
18632         * manual/arith.texi: Fix spelling.
18633         * manual/charset.texi: Likewise.
18634         * manual/errno.texi: Likewise.
18635         * manual/filesys.texi: Likewise.
18636         * manual/lang.texi: Likewise.
18637         * manual/llio.texi: Likewise.
18638         * manual/locale.texi: Likewise.
18639         * manual/message.texi: Likewise.
18640         * manual/resource.texi: Likewise.
18641         * manual/search.texi: Likewise.
18642         * manual/setjmp.texi: Likewise.
18643         * manual/stdio.texi: Likewise.
18644         * manual/string.texi: Likewise.
18645         * manual/sysinfo.texi: Likewise.
18646         * manual/time.texi: Likewise.
18648 2013-12-27  Carlos O'Donell  <carlos@redhat.com>
18650         * po/sl.po: New file.
18652 2013-12-27  Mike Frysinger  <vapier@gentoo.org>
18654         * .gitignore: Add core/.gdbinit/.gdb_history.
18656 2013-12-27  Allan McRae  <allan@archlinux.org>
18658         [BZ #16369]
18659         * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
18660         Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
18662 2013-12-24  Brooks Moses  <bmoses@google.com>
18664         * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
18665         all compilers that claim C++98 compliance, not just GCC.
18666         * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
18667         Likewise.
18669 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
18671         * NEWS: Restore accidentally deleted bug-fix entries.
18673 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
18674             Ondřej Bílka  <neleai@seznam.cz>
18676         [BZ #15073]
18677         * malloc/malloc.c (_int_free): Perform sanity check only if we
18678         have_lock.
18680 2013-12-23  Ondřej Bílka  <neleai@seznam.cz>
18682         [BZ #12986]
18683         * manual/stdio.texi (String Input Conversions): Clarify that character
18684         classes are not supported.
18686 2013-12-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18688         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18690 2013-12-22  Joseph Myers  <joseph@codesourcery.com>
18692         [BZ #16337]
18693         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
18694         Calculate results for small negative arguments directly rather
18695         than using reflection formula with special underflow handling.
18697         * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
18698         * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
18699         sysdeps/unix/bsd/bsd4.4/syscalls.list.
18700         (fchflags): Likewise.
18701         (revoke): Likewise.
18702         (setlogin): Likewise.
18703         (sigaltstack): Likewise.
18704         (wait4): Likewise.
18705         (sigblock): Remove.
18706         (sigsetmask): Likewise.
18707         (wait3): Likewise.
18708         (waitpid): Likewise.
18709         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
18710         * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
18711         file.
18712         * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
18713         * sysdeps/unix/bsd/Makefile: ... here.
18714         * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
18715         * sysdeps/unix/bsd/Versions: ... here.
18716         * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
18717         * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
18718         * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
18719         * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
18720         * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
18721         * sysdeps/unix/bsd/sigblock.c: ... here.
18722         * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
18723         * sysdeps/unix/bsd/sigsetmask.c: ... here.
18724         * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
18725         * sysdeps/unix/bsd/sigvec.c: ... here.
18726         * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
18727         * sysdeps/unix/bsd/tcdrain.c: ... here.
18728         * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
18729         * sysdeps/unix/bsd/tcgetattr.c: ... here.
18730         * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
18731         * sysdeps/unix/bsd/tcsetattr.c: ... here.
18732         * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
18733         * sysdeps/unix/bsd/wait.c: ... here.
18734         * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
18735         * sysdeps/unix/bsd/wait3.c: ... here.
18736         * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
18737         * sysdeps/unix/bsd/waitpid.c: ... here.
18739 2013-12-21  Joseph Myers  <joseph@codesourcery.com>
18741         [BZ #16356]
18742         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
18743         round-to-nearest for [!USE_AS_EXPM1L].
18744         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
18745         * math/auto-libm-test-in: Do not expect cosh tests to fail.  Add
18746         more tests of exp and exp10.  Expect some exp10 tests to miss
18747         exceptions or fail in directed rounding modes.
18748         * math/auto-libm-test-out: Regenerated.
18749         * math/libm-test.inc (exp10_tonearest_test_data): New array.
18750         (exp10_test_tonearest): New function.
18751         (exp10_towardzero_test_data): New array.
18752         (exp10_test_towardzero): New function.
18753         (exp10_downward_test_data): New array.
18754         (exp10_test_downward): New function.
18755         (exp10_upward_test_data): New array.
18756         (exp10_test_upward): New function.
18757         (main): Call the new functions.
18758         * sysdeps/i386/fpu/libm-test-ulps: Update.
18759         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18761 2013-12-20  Joseph Myers  <joseph@codesourcery.com>
18763         * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
18764         asinh, atan, atan2, atanh, cbrt, cos and cosh.
18765         * math/auto-libm-test-out: Regenerated.
18766         * math/libm-test.inc (acosh_test_data): Add more tests.
18767         (atanh_test_data): Likewise.
18768         (ceil_test_data): Likewise.
18769         (copysign_test_data): Likewise.
18770         * sysdeps/i386/fpu/libm-test-ulps: Update.
18771         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18773         * timezone/checktab.awk: Update from tzcode 2013i.
18774         * timezone/private.h: Likewise.
18775         * timezone/scheck.c: Likewise.
18776         * timezone/tzfile.h: Likewise.
18777         * timezone/tzselect.ksh: Likewise.
18778         * timezone/zdump.c: Likewise.
18779         * timezone/zic.c: Likewise.
18781         * math/auto-libm-test-in: Add tests of cpow.
18782         * math/auto-libm-test-out: Regenerated.
18783         * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
18784         * math/gen-auto-libm-tests.c (func_calc_method): Add value
18785         mpc_cc_c.
18786         (func_calc_desc): Add mpc_cc_c union field.
18787         (test_functions): Add cpow.
18788         (special_fill_2pi): New function.
18789         (special_real_inputs): Add 2pi.
18790         (calc_generic_results): Handle mpc_cc_c.
18791         * sysdeps/i386/fpu/libm-test-ulps: Update.
18792         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18794         * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
18795         csqrt, ctan and ctanh.
18796         * math/auto-libm-test-out: Regenerated.
18797         * math/libm-test.inc (TEST_COND_x86_64): New macro.
18798         (TEST_COND_x86): Likewise.
18799         (ccos_test_data): Use AUTO_TESTS_c_c.
18800         (ccosh_test_data): Likewise.
18801         (cexp_test_data): Likewise.
18802         (clog_test_data): Likewise.
18803         (csqrt_test_data): Likewise.
18804         (ctan_test_data): Likewise.
18805         (ctan_tonearest_test_data): Likewise.
18806         (ctan_towardzero_test_data): Likewise.
18807         (ctan_downward_test_data): Likewise.
18808         (ctan_upward_test_data): Likewise.
18809         (ctanh_test_data): Likewise.
18810         (ctanh_tonearest_test_data): Likewise.
18811         (ctanh_towardzero_test_data): Likewise.
18812         (ctanh_downward_test_data): Likewise.
18813         (ctanh_upward_test_data): Likewise.
18814         * math/gen-auto-libm-tests.c (func_calc_method): Add value
18815         mpc_c_c.
18816         (func_calc_desc): Add mpc_c_c union field.
18817         (FUNC_mpc_c_c): New macro.
18818         (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
18819         ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
18820         ctanh.
18821         (special_fill_min_subnorm_p120): New function.
18822         (special_real_inputs): Add min_subnorm_p120.
18823         (calc_generic_results): Handle mpc_c_c.
18824         * sysdeps/i386/fpu/libm-test-ulps: Update.
18825         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18827 2013-12-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
18829         * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
18830         (do_sin_slow): New functions.
18831         (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
18832         (cslow2, csloww1, csloww2): Use the new functions.
18834         * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
18835         Use M to change sign of result instead of X.  Assume X is
18836         positive.
18837         (csloww1): Likewise.
18838         (__sin): Adjust.
18839         (__cos): Adjust.
18841         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
18842         arguments A and DA.
18843         (__sin): Adjust.
18844         (__cos): Likewise.
18846         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
18847         (__cos): Likewise.
18848         (sloww1): Don't adjust sign of DX.
18849         (csloww1): Likewise.
18850         (sloww2): Use X directly and don't adjust sign of DX.
18851         (csloww2): Likewise.
18853 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
18855         * math/auto-libm-test-in: Add tests of cabs and carg.
18856         * math/auto-libm-test-out: Regenerated.
18857         * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
18858         (carg_test_data): Likewise.
18859         * math/gen-auto-libm-tests.c (func_calc_method): Add value
18860         mpc_c_f.
18861         (func_calc_desc): Add mpc_c_f union field.
18862         (test_functions): Add cabs and carg.
18863         (calc_generic_results): Handle mpc_c_f.
18865         * sysdeps/powerpc/powerpc32/libgcc-compat.S
18866         [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
18867         as a macro and a compat symbol.
18868         [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
18869         [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
18870         [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
18871         [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
18872         [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
18873         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
18874         not use .hidden.
18875         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
18876         Likewise.
18877         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
18878         Likewise.
18879         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
18880         Likewise.
18881         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
18882         Likewise.
18883         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
18884         Likewise.
18885         * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
18886         __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
18887         from GLIBC_2.3.2.
18889 2013-12-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18891         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18893 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
18895         * manual/texinfo.tex: Update to version 2013-11-26.10 with
18896         trailing whitespace removed.
18897         * scripts/config.guess: Update to version 2013-11-29.
18898         * scripts/config.sub: Update to version 2013-10-01.
18900         * math/auto-libm-test-in: Add tests of sincos.
18901         * math/auto-libm-test-out: Regenerated.
18902         * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
18903         * math/gen-auto-libm-tests.c (func_calc_method): Add value
18904         mpfr_f_11.
18905         (func_calc_desc): Add mpfr_f_11 union field.
18906         (test_functions): Add sincos.
18907         (calc_generic_results): Handle mpfr_f_11.
18908         * sysdeps/i386/fpu/libm-test-ulps: Update.
18909         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18911 2013-12-19  Andreas Schwab  <schwab@suse.de>
18913         * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
18914         CALL_MCOUNT.
18915         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
18916         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
18917         [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
18919 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
18921         * math/gen-libm-test.pl (%beautify): Remove M_* constants.
18922         * sysdeps/i386/fpu/libm-test-ulps: Update.
18923         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18925         [BZ #16293]
18926         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
18927         round-to-nearest mode when using frndint.
18928         * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
18929         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
18930         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
18931         Likewise.
18932         * math/auto-libm-test-in: Add more tests of expm1.  Do not expect
18933         sinh test to fail.
18934         * math/auto-libm-test-out: Regenerated.
18935         * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
18936         (TEST_COND_x86): Likewise.
18937         (expm1_tonearest_test_data): New array.
18938         (expm1_test_tonearest): New function.
18939         (expm1_towardzero_test_data): New array.
18940         (expm1_test_towardzero): New function.
18941         (expm1_downward_test_data): New array.
18942         (expm1_test_downward): New function.
18943         (expm1_upward_test_data): New array.
18944         (expm1_test_upward): New function.
18945         (main): Run the new test functions.
18946         * sysdeps/i386/fpu/libm-test-ulps: Update.
18947         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18949         * include/features.h: Update comment documenting feature test
18950         macros.  Mention _DEFAULT_SOURCE in comment.
18951         [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
18952         [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
18953         _BSD_SOURCE and _SVID_SOURCE.
18954         [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
18955         !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
18956         !_SVID_SOURCE]: Likewise.
18957         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
18958         (__USE_POSIX_IMPLICITLY): Define.
18959         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
18960         (_POSIX_SOURCE): Undefine and redefine.
18961         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
18962         (_POSIX_C_SOURCE): Likewise.
18963         * manual/creature.texi (_DEFAULT_SOURCE): Document.
18964         (Feature Test Macros): Update documentation of default features.
18966 2013-12-19  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
18968         * benchtests/Makefile: Add bench-strtok.
18969         * benchtests/bench-strtok.c: New file: strtok benchtest.
18971 2013-12-19  Allan McRae  <allan@archlinux.org>
18973         * manual/install.texi: Suppress menu for plain text output.
18974         * INSTALL: Regenerated.
18976 2013-12-18  Brooks Moses  <bmoses@google.com>
18978         [BZ #15846]
18979         * misc/getauxval.c: Include errno.h.
18980         (__getauxval): Set errno to ENOENT if the requested type is not
18981         found.
18982         * misc/sys/auxv.h (getauxval): Document that it may set errno;
18983         don't declare with __attribute_const__.
18984         * elf/tst-auxv.c: Add tests for errno and type-not-found case.
18985         * manual/startup.texi: Document that getauxval sets errno.
18987 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
18989         * math/auto-libm-test-in: Add tests of jn and yn.
18990         * math/auto-libm-test-out: Regenerated.
18991         * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
18992         (yn_test_data): Likewise.
18993         * math/gen-auto-libm-tests.c (func_calc_method): Add value
18994         mpfr_if_f.
18995         (func_calc_desc): Add mpfr_if_f union field.
18996         (FUNC_mpfr_if_f): New macro.
18997         (test_functions): Add jn and yn.
18998         (calc_generic_results): Assert type of second input for
18999         mpfr_ff_f.  Handle mpfr_if_f.
19000         (output_for_one_input_case): Disable all checking for arguments
19001         fitting floating-point types in case of an integer argument.
19002         * sysdeps/i386/fpu/libm-test-ulps: Update.
19003         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19005         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
19006         Don't expect fegetround reference in libm.so.
19008 2013-12-17  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
19010         * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
19011         $(config-cflags-nofma).
19013 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
19015         * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
19016         * math/auto-libm-test-out: Regenerated.
19018         [BZ #16338]
19019         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
19020         to determine exponent and adjust argument to have exponent of -1.
19021         * math/auto-libm-test-in: Add more tests of log, log10, log1p and
19022         log2.
19023         * math/auto-libm-test-out: Regenerated.
19024         * sysdeps/i386/fpu/libm-test-ulps: Update.
19025         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19027 2013-12-18  Ondřej Bílka  <neleai@seznam.cz>
19029         * manual/probes.texi: Remove cases when per-thread arenas are
19030         disabled.
19032 2013-12-18  Andreas Schwab  <schwab@suse.de>
19034         * sysdeps/i386/i686/multiarch/strstr.c: Remove.
19035         * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
19036         * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
19037         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
19038         * sysdeps/i386/i686/multiarch/Makefile: Update.
19039         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
19041 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
19043         * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
19044         * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
19046 2013-12-17  Paul Eggert  <eggert@cs.ucla.edu>
19048         [BZ #15968]
19049         Support TZ transition times < 00:00:00.
19050         This is needed for version-3 tz-format files; it supports time
19051         stamps past 2037 for America/Godthab (the only entry in the tz
19052         database for which this change is relevant).
19053         * manual/time.texi (TZ Variable): Document transition times
19054         from -167:59:59 through -00:00:01.
19055         * time/tzset.c (tz_rule): Time of day is now signed.
19056         (__tzset_parse_tz): Parse negative time of day.
19058         Document TZ transition times >= 25:00:00.
19059         * manual/time.texi (TZ Variable): Document transition times from
19060         25:00:00 through 167:59:59.  These are already supported, and this
19061         support will help with version-3 tz-format files.
19063         * manual/time.texi (TZ Variable): Modernize North America example
19064         to reflect current (i.e., 2007-and-later) daylight saving rules.
19066         * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
19068 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
19070         * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
19071         * sysdeps/unix/bsd/bits/stat.h: Likewise.
19072         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
19073         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
19074         * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
19075         * sysdeps/unix/bsd/bsdstat.h: Likewise.
19076         * sysdeps/unix/bsd/clock.c: Likewise.
19077         * sysdeps/unix/bsd/i386/vfork.S: Likewise.
19078         * sysdeps/unix/bsd/i386/wait3.S: Likewise.
19079         * sysdeps/unix/bsd/init-posix.c: Likewise.
19080         * sysdeps/unix/bsd/poll.c: Likewise.
19081         * sysdeps/unix/bsd/ptsname.c: Likewise.
19082         * sysdeps/unix/bsd/seekdir.c: Likewise.
19083         * sysdeps/unix/bsd/setegid.c: Likewise.
19084         * sysdeps/unix/bsd/seteuid.c: Likewise.
19085         * sysdeps/unix/bsd/setgid.c: Likewise.
19086         * sysdeps/unix/bsd/setrgid.c: Likewise.
19087         * sysdeps/unix/bsd/setruid.c: Likewise.
19088         * sysdeps/unix/bsd/setsid.c: Likewise.
19089         * sysdeps/unix/bsd/setuid.c: Likewise.
19090         * sysdeps/unix/bsd/sigaction.c: Likewise.
19091         * sysdeps/unix/bsd/sigprocmask.c: Likewise.
19092         * sysdeps/unix/bsd/sigsuspend.c: Likewise.
19093         * sysdeps/unix/bsd/sys/reboot.h: Likewise.
19094         * sysdeps/unix/bsd/telldir.c: Likewise.
19095         * sysdeps/unix/bsd/times.c: Likewise.
19096         * sysdeps/unix/bsd/usleep.c: Likewise.
19098         * misc/Makefile (install-lib): Remove libbsd-compat.a.
19099         ($(objpfx)libbsd-compat.a): Remove rule.
19101         * include/features.h (__FAVOR_BSD): Do not define.
19102         * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
19103         features conflicting with POSIX.
19104         (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
19105         (_BSD_SOURCE): Remove description of not being a subset of other
19106         feature test macros.
19107         * manual/job.texi (getpgrp): Do not document BSD version.
19108         (getpgid): Do not document by reference to BSD getpgrp.
19109         * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
19110         * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
19111         * signal/signal.h [__FAVOR_BSD]: Likewise.
19112         * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
19113         instead of making contents conditional on [__FAVOR_BSD].
19114         * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
19116 2013-12-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19118         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
19120 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
19122         [BZ #16314]
19123         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
19124         values below 2**-450, not 2**-500.
19125         * math/auto-libm-test-in: Don't allow spurious underflow from
19126         hypot.
19127         * math/auto-libm-test-out: Regenerated.
19129         [BZ #16316]
19130         [BZ #16330]
19131         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
19132         values of ha and hb and sort them after adjusting subnormal
19133         arguments.
19134         * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
19135         Likewise.
19136         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
19137         values of ea and eb and sort them after adjusting subnormal
19138         arguments.
19139         * math/auto-libm-test-in: Do not expect some hypot tests of
19140         subnormals to fail.  Add more hypot tests.
19141         * math/auto-libm-test-out: Regenerated.
19143 2013-12-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
19145         [BZ #13304]
19146         * sysdeps/sh/s_fma.c: New file.
19147         * sysdeps/sh/s_fmaf.c: New file.
19148         * sysdeps/sh/soft-fp/sfp-machine.h: New file.  Based on arm
19149         version.
19150         * sysdeps/sh/Implies: Add sh/soft-fp.
19152 2013-12-16  Roland McGrath  <roland@hack.frob.com>
19154         * elf/dl-error.c (struct catch): Add new member `errcode'.  Add a
19155         level of indirection to members `objname', `errstring', `malloced'.
19156         (_dl_signal_error): Store through pointers in *LCATCH rather modifying
19157         *LCATCH itself.  Set *LCATCH->errcode to ERRCODE rather than passing
19158         it as the __longjmp argument (just pass 1 instead).
19159         (_dl_catch_error): Initialize C with argument pointers and address of
19160         volatile local ERRCODE rather than copying values out of C at return.
19162 2013-12-16  Joseph Myers  <joseph@codesourcery.com>
19164         * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
19165         * math/auto-libm-test-out: Regenerated.
19166         * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
19167         (hypot_test_data): Likewise.
19168         (pow_test_data): Likewise.
19169         (pow_tonearest_test_data): Likewise.
19170         * math/gen-auto-libm-tests.c (func_calc_method): Add value
19171         mpfr_ff_f.
19172         (func_calc_desc): Add mpfr_ff_f union field.
19173         (FUNC_mpfr_ff_f): New macro.
19174         (test_functions): Add atan2, hypot and pow.
19175         (special_fill_min): New function.
19176         (special_fill_minus_min): Likewise.
19177         (special_fill_min_subnorm): Likewise.
19178         (special_fill_minus_min_subnorm): Likewise.
19179         (special_real_inputs): Add min, -min, min_subnorm and
19180         -min_subnorm.
19181         (calc_generic_results): Handle mpfr_ff_f.
19182         * sysdeps/i386/fpu/libm-test-ulps: Update.
19183         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19185 2013-12-16  Will Newton  <will.newton@linaro.org>
19187         * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
19188         (Aligned Memory Blocks): Add documentation for aligned_alloc
19189         and suggest it as an alternative to posix_memalign.
19190         (Hooks for Malloc): Document __memalign_hook is also called
19191         for aligned_alloc.  (Summary of Malloc): Add summary for
19192         aligned alloc.  Document __memalign_hook is also called
19193         for aligned_alloc.
19195 2013-12-16  Will Newton  <will.newton@linaro.org>
19197         * manual/memory.texi (Malloc Examples): Clarify default
19198         alignment documentation.  Suggest posix_memalign rather
19199         than memalign or valloc.
19200         (Aligned Memory Blocks): Remove suggestion to use memalign
19201         or valloc.  Remove obsolete comment about BSD.
19202         Document memalign errno values and mark the function obsolete.
19203         Document posix_memalign returned error codes.  Mark valloc
19204         as obsolete.  (Hooks for Malloc): __memalign_hook is also
19205         called for posix_memalign and valloc.
19206         (Summary of Malloc): Add posix_memalign to function summary.
19207         __memalign_hook is also called for posix_memalign and valloc.
19209 2013-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
19211         * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
19212         TAYLOR_SIN.
19213         (__sin): Adjust.
19214         (__cos): Likewise.
19215         (sloww): Use mynumber union.  Expand ternary operator into
19216         if-else statements.
19217         (cslow): use mynumber union.
19219 2013-12-16  Allan McRae  <allan@archlinux.org>
19221         * configure.ac: Set AUTOCONF when maintainer-mode is not used.
19222         * configure: Regenerated.
19224         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
19226         [BZ #14120]
19227         * configure.ac: Added --enable-maintainer-mode. Check for
19228         autoconf when enabled.
19229         * configure: Regenerated.
19231         * nscd/nscd.service: New file.
19232         * nscd/nscd.tmpfiles: New file.
19234 2013-12-14  Ondřej Bílka  <neleai@seznam.cz>
19236         [BZ #12100]
19237         * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
19238         * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
19239         * sysdeps/x86_64/multiarch/strstr.c: ... here.
19240         (strstr): Add __strstr_sse2_unaligned ifunc.
19241         * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
19242         * sysdeps/x86_64/multiarch/strcasestr.c ... here.
19243         (strcasestr): Remove __strcasestr_sse42 ifunc.
19244         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
19245         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
19246         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
19248 2013-12-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
19250         * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
19251         * sysdeps/sh/bits/fenv.h: ... here.
19252         * sysdeps/sh/sh4/fpu/bits: Remove directory.
19254 2013-12-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19256         * NEWS: Mention ppc64 STT_GNU_IFUNC support.
19258         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
19259         hypotf multiarch implementations.
19260         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
19261         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
19262         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
19263         multiarch hypot for PPC64.
19264         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
19265         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
19266         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
19267         multiarch hypotf for PPC64.
19269         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
19270         modff multiarch implementations.
19271         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
19272         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
19273         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
19274         multiarch modf for PPC64.
19275         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
19276         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
19277         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
19278         multiarch modff for PPC64.
19280         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
19281         and logl multiarch implementations.
19282         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
19283         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
19284         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
19285         multiarch logb for PPC64.
19286         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
19287         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
19288         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
19289         multiarch logb for PPC64.
19290         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
19291         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
19292         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
19293         multiarch logb for PPC64.
19295         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
19296         isinff multiarch implementation.
19297         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
19298         file.
19299         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
19300         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
19301         multiarch isinf for PPC64.
19302         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
19303         file.
19304         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
19305         multiarch isinff for PPC64.
19307         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
19308         finitef multiarch implementation.
19309         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
19310         file.
19311         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
19312         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
19313         multiarch finite for PPC64.
19314         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
19315         file.
19316         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
19317         multiarch finitef for PPC64.
19319         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
19320         lrint multiarch implementation.
19321         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
19322         file.
19323         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
19324         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
19325         multiarch llrint for PPC64.
19326         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
19327         multiarch lrint for PPC64.
19329         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
19330         copysignf multiarch implementation.
19331         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
19332         file.
19333         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
19334         file.
19335         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
19336         multiarch copysign for PPC64.
19337         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
19338         multiarch copysignf for PPC64.
19340         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
19341         multiarch implementation.
19342         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
19343         file.
19344         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
19345         file.
19346         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
19347         file.
19348         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
19349         file.
19350         multiarch llround for PPC64.
19351         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
19352         multiarch trunc for PPC64.
19353         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
19354         multiarch truncf for PPC64.
19356         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
19357         multiarch implementation.
19358         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
19359         file.
19360         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
19361         file.
19362         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
19363         file.
19364         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
19365         file.
19366         multiarch llround for PPC64.
19367         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
19368         multiarch round for PPC64.
19369         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
19370         multiarch roundf for PPC64.
19372         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
19373         multiarch implementation.
19374         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
19375         file.
19376         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
19377         file.
19378         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
19379         file.
19380         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
19381         file.
19382         multiarch llround for PPC64.
19383         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
19384         multiarch floor for PPC64.
19385         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
19386         multiarch floorf for PPC64.
19388         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
19389         multiarch implementation.
19390         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
19391         file.
19392         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
19393         file.
19394         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
19395         file.
19396         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
19397         file.
19398         multiarch llround for PPC64.
19399         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
19400         multiarch ceil for PPC64.
19401         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
19402         multiarch ceilf for PPC64.
19404         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
19405         multiarch implementation.
19406         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
19407         file.
19408         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
19409         file.
19410         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
19411         file.
19412         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
19413         multiarch llround for PPC64.
19414         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
19415         multiarch lround for PPC64.
19417         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
19418         multiarch implementation.
19419         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
19420         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
19421         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
19422         file.
19423         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
19424         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
19425         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
19426         multiarch isnan for PPC64.
19427         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
19428         multiarch isnanf for PPC64.
19430         * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
19431         * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
19432         * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
19433         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
19434         * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
19435         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
19437         * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
19438         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
19439         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
19440         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
19442         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
19443         multiarch implementations.
19444         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19445         (__libc_ifunc_impl_list): Likewise.
19446         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
19447         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
19448         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
19449         multiarch stpcpy for PPC64.
19451         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
19452         multiarch implementations.
19453         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19454         (__libc_ifunc_impl_list): Likewise.
19455         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
19456         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
19457         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
19458         multiarch strcpy for PPC64.
19460         * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
19461         redefine function name.
19462         (_wordcopy_fwd_dest_aligned): Likewise.
19463         (_wordcopy_bwd_aligned): Likewise.
19464         (_wordcopy_bwd_dest_aligned): Likewise.
19465         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
19466         multiarch implementations.
19467         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19468         (__libc_ifunc_impl_list): Likewise.
19469         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
19470         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
19471         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
19472         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
19473         multiarch wcscpy for PPC64.
19475         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
19476         multiarch implementations.
19477         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19478         (__libc_ifunc_impl_list): Likewise.
19479         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
19480         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
19481         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
19482         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
19483         multiarch wcscpy for PPC64.
19485         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
19486         multiarch implementations.
19487         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19488         (__libc_ifunc_impl_list): Likewise.
19489         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
19490         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
19491         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
19492         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
19493         multiarch wcsrchr for PPC64.
19495         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
19496         multiarch implementations.
19497         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19498         (__libc_ifunc_impl_list): Likewise.
19499         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
19500         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
19501         * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
19502         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
19503         multiarch wcschr for PPC64.
19505         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
19506         multiarch implementations.
19507         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19508         (__libc_ifunc_impl_list): Likewise.
19509         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
19510         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
19511         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
19512         multiarch strchrnul for PPC64.
19514         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
19515         implementations.
19516         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19517         (__libc_ifunc_impl_list): Likewise.
19518         * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
19519         * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
19520         * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
19521         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
19522         strchr for PPC64.
19524         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
19525         implementations.
19526         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19527         (__libc_ifunc_impl_list): Likewise.
19528         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
19529         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
19530         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
19531         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
19532         strncmp for PPC64.
19534         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
19535         multiarch implementations.
19536         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19537         (__libc_ifunc_impl_list): Likewise.
19538         * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
19539         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
19540         strncasecmp for PPC64.
19541         * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
19542         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
19543         multiarch strncasecmp_l for PPC64.
19545         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
19546         multiarch implementations.
19547         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
19548         (__libc_ifunc_impl_list): Likewise.
19549         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
19550         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
19551         multiarch strcasecmp for PPC64.
19552         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
19553         file.
19554         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
19555         multiarch strcasecmp_l for PPC64.
19557         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
19558         implementations.
19559         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19560         (__libc_ifunc_impl_list): Likewise.
19561         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
19562         * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
19563         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
19564         strnlen for PPC64.
19566         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
19567         implementations.
19568         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19569         (__libc_ifunc_impl_list): Likewise.
19570         * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
19571         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
19572         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
19573         strlen for PPC64.
19575         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
19576         implementations.
19577         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19578         (__libc_ifunc_impl_list): Likewise.
19579         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
19580         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
19581         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
19582         rawmemrchr for PPC64.
19584         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
19585         implementation.
19586         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19587         (__libc_ifunc_impl_list): Likewise.
19588         * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
19589         * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
19590         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
19591         memrchr for PPC64.
19593         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
19594         implementation.
19595         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19596         (__libc_ifunc_impl_list): Likewise.
19597         * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
19598         * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
19599         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
19600         memchr for PPC64.
19602         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
19603         implementation.
19604         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19605         (__libc_ifunc_impl_list): Likewise.
19606         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
19607         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
19608         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
19609         mempcpy for PPC64.
19611         * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
19612         avoid cretion of __bzero symbol.
19613         * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
19614         Likewise.
19615         * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
19616         Likewise.
19617         * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
19618         Likewise.
19619         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
19620         multiarch implementations.
19621         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19622         (__libc_ifunc_impl_list): Likewise.
19623         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
19624         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
19625         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
19626         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
19627         bzero for PPC32.
19628         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
19629         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
19630         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
19631         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
19632         * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
19633         memset for PPC64.
19634         * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
19636         * string/memcmp.c (memcmp): Using macro to redefine symbol name.
19637         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
19638         implementations.
19639         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19640         (__libc_ifunc_impl_list): Likewise.
19641         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
19642         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
19643         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
19644         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
19645         memcmp for PPC64.
19647         * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
19648         multiarch for POWER/PPC64.
19649         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
19650         * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
19651         * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
19652         * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
19653         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
19654         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
19655         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
19656         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
19657         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
19658         memcpy for PPC64.
19660         * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
19661         * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
19662         * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
19663         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
19664         * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
19665         * sysdeps/powerpc/powerpc64/power5/Implies: New File.
19666         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
19667         * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
19668         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
19669         * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
19670         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
19671         * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
19672         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
19673         * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
19674         * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
19675         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
19676         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
19677         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
19678         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
19679         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
19680         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
19681         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
19683 2013-12-12  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
19685         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
19687 2013-12-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
19689         * benchtests/Makefile (bench): Add exp2 and log2.
19690         (LDLIBS-bench-exp2): Add -lm.
19691         (LDLIBS-bench-log2): Likewise.
19692         * benchtests/exp2-inputs: New inputs file.
19693         * benchtests/log2-inputs: New inputs file.
19694         * benchtests/log-inputs: Add new inputs.
19695         * benchtests/tan-inputs: Likewise.
19697 2013-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
19699         * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
19700         definition...
19701         (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
19702         (csloww2): ... from here.
19704         * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
19705         instead of structures.
19706         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
19707         (POLYNOMIAL): Likewise.
19708         (TAYLOR_SLOW): Likewise.
19709         (__sin): Likewise.
19710         (__cos): Likewise.
19711         (slow1): Likewise.
19712         (slow2): Likewise.
19713         (sloww): Likewise.
19714         (sloww1); Likewise.
19715         (sloww2): Likewise.
19716         (bsloww1): Likewise.
19717         (bsloww2): Likewise.
19718         (cslow2): Likewise.
19719         (csloww): Likewise.
19720         (csloww1): Likewise.
19721         (csloww2): Likewise.
19723 2013-12-10  Ondřej Bílka  <neleai@seznam.cz>
19725         * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
19726         (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
19727         Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
19728         * malloc/hooks.c (realloc_check): Likewise.
19730         * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
19731         * malloc/arena.c: Remove PER_THREAD conditional.
19732         [!PER_THREAD]: Remove code.
19733         (ptmalloc_unlock_all2): Likewise.
19734         (ptmalloc_init): Likewise.
19735         (_int_new_arena): Likewise.
19736         (arena_get2): Likewise.
19737         * malloc/hooks.c (__malloc_get_state): Likewise.
19738         (__malloc_set_state): Likewise.
19739         * malloc/malloc.c: Likewise.
19740         (struct malloc_state): Likewise.
19741         (struct malloc_par): Likewise.
19742         (__libc_realloc): Likewise.
19743         (__libc_mallopt): Likewise.
19745 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19747         * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
19749 2013-12-09  Ondřej Bílka  <neleai@seznam.cz>
19751         * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
19752         macro to a function.  Check for zero perturb_byte.
19753         (_int_malloc, _int_free): Remove zero perturb_byte checks.
19755         * malloc/malloc.c: (force_reg): Remove.
19756         (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
19757         (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
19758         force_reg by atomic_forced_read.
19759         * malloc/arena.c (ptmalloc_init): Likewise.
19760         * malloc/hooks.c (top_check): Likewise.
19762 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19764         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
19766 2013-12-09  Markus Trippelsdorf  <markus@trippelsdorf.de>
19768         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
19770 2013-12-08  Joseph Myers  <joseph@codesourcery.com>
19772         * math/auto-libm-test-in: Add tests of lgamma.
19773         * math/auto-libm-test-out: Regenerated.
19774         * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
19775         (M_LOG_2_SQRT_PIl): Likewise.
19776         (lgamma_test_data): Use AUTO_TESTS_f_f1.
19777         * math/gen-auto-libm-tests.c (func_calc_method): Add value
19778         mpfr_f_f1.
19779         (func_calc_desc): Add mpfr_f_f1 union field.
19780         (ARGS1): New macro.
19781         (ARGS2): Likewise.
19782         (ARGS3): Likewise.
19783         (ARGS4): Likewise.
19784         (RET1): Likewise.
19785         (RET2): Likewise.
19786         (CALC): Likewise.
19787         (FUNC): Likewise.
19788         (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
19789         (test_functions): Add lgamma.
19790         (calc_generic_results): Handle mpfr_f_f1.
19791         * sysdeps/i386/fpu/libm-test-ulps: Update.
19792         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19794 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19796         * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
19797         __mpn_add_n for PowerPC64/POWER7.
19798         * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
19799         __mpn_sub_n for PowerPC64/POWER7.
19801         * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
19802         __mpn_addmul_1 for PowerPC64.
19803         * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
19804         __mpn_submul_1 for PowerPC64.
19805         * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
19806         for PowerPC64.
19807         * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
19808         for PowerPC64.
19810 2013-12-06  Fernando J. V. da Silva  <fernandojvdasilva@gmail.com>
19812         [BZ #15089]
19813         * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
19815 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19817         * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
19819         * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
19820         add multiarch folders.
19821         * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
19822         * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
19823         * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
19824         * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
19825         * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
19826         * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
19827         * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
19828         * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
19829         * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
19830         * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
19831         * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
19832         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
19833         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
19834         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
19835         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
19836         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
19837         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
19839         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
19840         __ieee754_hypot and __ieee754_hypotf multiarch implementations.
19841         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
19842         New file.
19843         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
19844         New file.
19845         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
19846         multiarch __ieee754_hypot for PowerPC32.
19847         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
19848         New file.
19849         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
19850         New file.
19851         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
19852         multiarch __ieee754_hypotf for PowerPC32.
19854         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
19855         long_double_symbol only if __logbl is defined.
19856         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
19857         * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
19858         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
19859         * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
19860         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
19861         * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
19862         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
19863         path for implementation.
19864         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
19865         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
19866         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
19867         logb, and logbl multiarch implementations for PowerPC32.
19868         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
19869         file.
19870         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
19871         file.
19872         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
19873         multiarch logb for PowerPC32.
19874         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
19875         file.
19876         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
19877         file.
19878         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
19879         multiarch logbf for PowerPC32.
19880         * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
19881         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
19882         file.
19883         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
19884         multiarch logbl implementation for PowerPC32.
19886         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
19887         and modff multiarch implementations.
19888         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
19889         New file.
19890         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
19891         New file.
19892         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
19893         multiarch modf for PowerPC32.
19894         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
19895         New file.
19896         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
19897         New file.
19898         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
19899         multiarch modff for PowerPC32.
19901         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
19902         and lrintf multiarch implementations.
19903         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
19904         New file.
19905         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
19906         New file.
19907         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
19908         multiarch lrint for PowerPC32.
19909         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
19910         file: multiarch lrintf for PowerPC32.
19912         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
19913         and lroundf multiarch implementations.
19914         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
19915         New file.
19916         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
19917         New file.
19918         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
19919         New file.
19920         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
19921         multiarch lround for PowerPC32.
19922         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
19923         file: multiarch lroundf for PowerPC32.
19925         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
19926         copysign and copysignf multiarch implementations.
19927         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
19928         New file.
19929         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
19930         New file.
19931         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
19932         file: multiarch copysign for PowerPC32.
19933         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
19934         file: multiarch copysignf for PowerPC32.
19936         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
19937         and truncf multiarch implementations.
19938         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
19939         New file.
19940         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
19941         file.
19942         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
19943         multiarch trunc for PowerPC32.
19944         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
19945         New file.
19946         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
19947         New file.
19948         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
19949         multiarch truncf for PowerPC32.
19951         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
19952         and roundf multiarch implementations.
19953         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
19954         New file.
19955         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
19956         file.
19957         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
19958         multiarch round for PowerPC32.
19959         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
19960         New file.
19961         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
19962         New file.
19963         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
19964         multiarch roundf for PowerPC32.
19966         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
19967         and floorf multiarch implementations.
19968         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
19969         New file.
19970         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
19971         file.
19972         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
19973         multiarch floor for PowerPC32.
19974         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
19975         New file.
19976         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
19977         New file.
19978         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
19979         multiarch floorf for PowerPC32.
19981         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
19982         and ceilf multiarch implementations.
19983         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
19984         New file.
19985         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
19986         file.
19987         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
19988         multiarch ceil for PowerPC32.
19989         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
19990         New file.
19991         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
19992         file.
19993         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
19994         multiarch ceilf for PowerPC32.
19996         * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
19997         is defined.
19998         * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
19999         FINITEF is defined.
20000         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
20001         and finitef multiarch implementations.
20002         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
20003         New file.
20004         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
20005         file.
20006         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
20007         multiarch finite for PowerPC32.
20008         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
20009         New file.
20010         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
20011         file: multiarch finitef for PowerPC32.
20013         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
20014         and isinff multiarch implementations.
20015         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
20016         file.
20017         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
20018         file.
20019         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
20020         multiarch isinf for PowerPC32.
20021         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
20022         New file.
20023         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
20024         multiarch isinff for PowerPC32.
20026         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
20027         alias when __isnan is defined.
20028         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
20029         and isnanf multiarch implementations.
20030         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
20031         file.
20032         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
20033         file.
20034         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
20035         file.
20036         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
20037         file.
20038         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
20039         multiarch isnan for PowerPC32.
20040         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
20041         New file.
20042         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
20043         New file.
20044         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
20045         multiarch isnanf for PowerPC32.
20047         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
20048         and sqrtf multiarch implementations.
20049         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
20050         file.
20051         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
20052         file.
20053         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
20054         multiarch sqrt for PowerPC32.
20055         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
20056         file.
20057         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
20058         file.
20059         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
20060         multiarch sqrtf for PowerPC32.
20062         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
20063         and llroundf multiarch implementations.
20064         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
20065         New file.
20066         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
20067         New file.
20068         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
20069         New file.
20070         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
20071         file: multiarch llround for PowerPC32.
20072         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
20073         file: multiarch llroundf for PowerPC32.
20075         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
20076         multiarch PowerPC32 fpu implementations.
20077         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
20078         New file.
20079         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
20080         New file.
20081         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
20082         multiarch llrint for PowerPC32.
20083         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
20084         New file.
20085         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
20086         New file.
20087         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
20088         file.
20090         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
20092         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
20093         file.
20094         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
20095         file.
20096         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
20097         file.
20098         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
20099         multiarch wordcopy for PPC32.
20100         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
20101         wordcopy objects.
20102         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20103         (__libc_ifunc_impl_list): Likewise.
20104         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
20105         * sysdeps/powerpc/power4/wordcopy.c: ... to here.
20106         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
20107         * sysdeps/powerpc/power6/wordcopy.c: ... to here.
20108         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
20109         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
20111         * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
20112         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
20113         file.
20114         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
20115         file.
20116         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
20117         file.
20118         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
20119         multiarch wcscpy for PPC32.
20120         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
20121         multiarch objects.
20122         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20123         (__libc_ifunc_impl_list): Likewise.
20124         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
20125         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
20126         * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
20127         sysdeps/powerpc/power6/wcscpy.c.
20129         * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
20130         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
20131         file.
20132         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
20133         file.
20134         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
20135         file.
20136         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
20137         multiarch wcsrchr for PPC32.
20138         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
20139         multiarch objects.
20140         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20141         (__libc_ifunc_impl_list): Likewise.
20142         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
20143         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
20144         * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
20145         sysdeps/powerpc/power6/wcsrchr.c.
20147         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
20148         file.
20149         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
20150         file.
20151         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
20152         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
20153         multiarch wcschr for PPc32.
20154         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
20155         multiarch objects.
20156         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20157         (__libc_ifunc_impl_list): Likewise.
20158         * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
20159         * sysdeps/powerpc/power6/wcschr.c: ... to here.
20160         * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
20161         sysdeps/powerpc/power6/wcschr.c.
20163         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
20164         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
20165         file.
20166         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
20167         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
20168         file: multiarch strchr for PPC32.
20169         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
20170         multiarch objects.
20171         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20172         (__libc_ifunc_impl_list): Likewise.
20174         * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
20175         name.
20176         * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
20177         file.
20178         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
20179         file.
20180         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
20181         multiarch strchrnul for PPC32.
20182         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
20183         multiarch objects.
20184         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20185         (__libc_ifunc_impl_list): Likewise.
20187         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
20188         file.
20189         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
20190         multiarch strncasecmp for PPC32.
20191         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
20192         file.
20193         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
20194         multiarch strncasecmp_l for PPC32.
20195         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
20196         strncasecmp multiarch objects.
20197         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20198         (__libc_ifunc_impl_list): Likewise.
20200         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
20201         file.
20202         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
20203         multiarch strncasecmp for PPC32.
20204         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
20205         New file.
20206         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
20207         multiarch strcasecmp_l for PPC32.
20208         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
20209         multiarch objects.
20210         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20211         (__libc_ifunc_impl_list): Likewise.
20213         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
20214         file.
20215         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
20216         file.
20217         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
20218         multiarch strncmp for PPC32.
20219         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
20220         multiarch objects.
20221         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20222         (__libc_ifunc_impl_list): Likewise.
20224         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
20225         * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
20226         file.
20227         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
20228         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
20229         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
20230         multiarch objects.
20231         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20232         (__libc_ifunc_impl_list): Likewise.
20234         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
20235         file.
20236         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
20237         file.
20238         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
20239         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
20240         multiarch objects.
20241         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20242         (__libc_ifunc_impl_list): Likewise.
20244         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
20245         file.
20246         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
20247         file.
20248         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
20249         multiarch rawmemchr for PPC32.
20250         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
20251         multiarch objects.
20252         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20253         (__libc_ifunc_impl_list): Likewise.
20255         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
20256         file.
20257         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
20258         file.
20259         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
20260         file: memrchr multiarch for PPC32.
20261         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
20262         multiarch objects.
20263         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20264         (__libc_ifunc_impl_list): Likewise.
20266         * string/memchr.c (__memchr): Using macro to redefine symbol name.
20267         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
20268         file.
20269         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
20270         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
20271         multiarch memchr for PPC32.
20272         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
20273         multiarch objects.
20274         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20275         (__libc_ifunc_impl_list): Likewise.
20277         * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
20278         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
20279         file.
20280         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
20281         file.
20282         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
20283         file: multiarch mempcpy for PPC32.
20284         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
20285         multiarch objects.
20286         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20287         (__libc_ifunc_impl_list): Likewise.
20289         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
20290         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
20291         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
20292         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
20293         multiarch bzero for PPC32.
20294         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
20295         file.
20296         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
20297         file.
20298         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
20299         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
20300         file: multiarch memset for PPC32.
20301         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
20302         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
20303         memset multiarch objects.
20304         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20305         (__libc_ifunc_impl_list): Likewise.
20307         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
20308         file.
20309         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
20310         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
20311         memcmp for PPC32.
20312         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
20313         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
20314         multiarch objects.
20315         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20316         (__libc_ifunc_impl_list): Likewise.
20318         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
20319         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
20320         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
20321         file.
20322         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
20323         file.
20324         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
20325         file.
20326         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
20327         multiarch memcpy for PPC32.
20328         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
20329         multiarch objects.
20330         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20331         (__libc_ifunc_impl_list): Likewise.
20333         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
20334         support multiarch for POWER/PPC32.
20335         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
20336         Likewise.
20337         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
20338         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
20339         Implies file to make multiarch folder appers before the fpu and
20340         default folder for power4 configuration.
20342 2013-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
20344         * scripts/bench.pl: Append volatile keyword to type.
20346 2013-12-05  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
20348         * sysdeps/sh/sotruss-lib.c: New file.
20349         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
20351 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20353         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20355 2013-12-05  Joseph Myers  <joseph@codesourcery.com>
20357         [BZ #6810]
20358         * math/w_tgamma.c: Include <errno.h>.
20359         (__tgamma): Use __glibc_unlikely.  Set errno on underflow to 0.
20360         * math/w_tgammaf.c: Include <errno.h>.
20361         (__tgammaf): Use __glibc_unlikely.  Set errno on underflow to 0.
20362         * math/w_tgammal.c: Include <errno.h>.
20363         (__tgammal): Use __glibc_unlikely.  Set errno on underflow to 0.
20364         * math/auto-libm-test-in: Do not allow missing errno on tgamma
20365         underflow.  Add more tgamma tests.
20366         * math/auto-libm-test-out: Regenerated.
20367         * sysdeps/i386/fpu/libm-test-ulps: Update.
20368         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20370         * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
20371         sin, sinh, tan, tanh, tgamma, y0 and y1.
20372         * math/auto-libm-test-out: Regenerated.
20373         * math/libm-test.inc (TEST_COND_x86_64): New macro.
20374         (TEST_COND_x86): Likewise.
20375         (M_E2l): Remove macro.
20376         (M_E3l): Likewise.
20377         (M_2_SQRT_PIl): Likewise.
20378         (M_SQRT_PIl): Likewise.
20379         (M_1_DIV_El): Likewise.
20380         (log_test_data): Use AUTO_TESTS_f_f.
20381         (log10_test_data): Likewise.
20382         (log1p_test_data): Likewise.
20383         (log2_test_data): Likewise.
20384         (sin_test_data): Likewise.
20385         (sin_tonearest_test_data): Likewise.
20386         (sin_towardzero_test_data): Likewise.
20387         (sin_downward_test_data): Likewise.
20388         (sin_upward_test_data): Likewise.
20389         (sinh_test_data): Likewise.
20390         (sinh_tonearest_test_data): Likewise.
20391         (sinh_towardzero_test_data): Likewise.
20392         (sinh_downward_test_data): Likewise.
20393         (sinh_upward_test_data): Likewise.
20394         (tan_test_data): Likewise.
20395         (tan_tonearest_test_data): Likewise.
20396         (tan_towardzero_test_data): Likewise.
20397         (tan_downward_test_data): Likewise.
20398         (tan_upward_test_data): Likewise.
20399         (tanh_test_data): Likewise.
20400         (tgamma_test_data): Likewise.
20401         (y0_test_data): Likewise.
20402         (y1_test_data): Likewise.
20403         * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
20404         (special_real_inputs): Add pi/4.
20405         * sysdeps/i386/fpu/libm-test-ulps: Update.
20406         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20408 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20410         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
20411         "longjmp_target" static probes.
20412         (__longjmp): Rename to __longjmp_symbol.
20413         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
20414         * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
20415         on which longjmp to generate.
20416         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
20417         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
20418         probe.
20419         (__sigsetjmp): Rename to __sigsetjmp_symbol.
20420         (__sigjmp_save): Rename to __sigjmp_save_symbol.
20421         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
20422         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
20423         and __sigjmp_save_symbol based on which sigsetjmp to generated.
20424         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
20425         * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
20426         __longjmp_symbol based on which __longjmp to generate.
20427         * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
20428         probe.
20429         (setjmp): Rename to setjmp_symbol.
20430         (__sigsetjmp): Rename to __sigsetjmp_symbol.
20431         (_setjmp): Rename to _setjmp_symbol.
20432         (__sigsetjmp): Rename to __sigsetjmp_symbol.
20433         * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
20434         _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
20435         which setjmp to generate.
20436         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
20437         "longjmp_target" static probes.
20439 2013-12-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
20441         * benchtests/README: Add note about output arguments.
20442         * benchtests/bench-sincos.c: Remove file.
20443         * benchtests/sincos-inputs: New file.
20444         * scripts/bench.pl: Identify output arguments and define
20445         static variables for them.
20447         * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
20449         [BZ #15941]
20450         * Makefile (INSTALL): Add install-plain.texi as the primary
20451         dependency.
20452         * manual/install-plain.texi: New file.
20453         * manual/install.texi: Include node directive only for
20454         non-plaintext output.
20456 2013-12-04  Joseph Myers  <joseph@codesourcery.com>
20458         * stdlib/longlong.h: Update from GCC.
20460         [BZ #6807]
20461         [BZ #15901]
20462         * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
20463         * math/w_j0f.c (y0f): Likewise.
20464         * math/w_j0l.c (__y0l): Likewise.
20465         * math/w_j1.c (y1): Likewise.
20466         * math/w_j1f.c (y1f): Likewise.
20467         * math/w_j1l.c (__y1l): Likewise
20468         * math/w_jn.c (yn): Likewise.
20469         * math/w_jnf.c (ynf): Likewise.
20470         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
20471         Bessel function pole errors in _POSIX_ mode.  Use NAN as return
20472         value for Bessel function domain errors outside _SVID_ mode.
20473         Adjust sign of return value for yn (negative integer, 0).
20474         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
20475         by zero in return for negative x and set sign appropriately for
20476         negative n.
20477         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
20478         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
20479         * math/libm-test.inc (y0_test_data): Add more tests and adjust
20480         expectations in error cases.
20481         (y1_test_data): Likewise.
20482         (yn_test_data): Likewise.
20483         * sysdeps/i386/fpu/libm-test-ulps: Update.
20484         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20486 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20488         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
20489         "64" to "64-v1".  Add "64-v2".
20490         (abi-64-options): Rename to ...
20491         (abi-64-v1-options): ... this.   Redefine _CALL_ELF.
20492         (abi-64-condition): Rename to ...
20493         (abi-64-v1-condition): ... this.  Add _CALL_ELF check.,
20494         (abi-64-ld-soname): Rename to ...
20495         (abi-64-v1-ld-soname): ... this.
20496         (abi-64-v2-options): Define.
20497         (abi-64-v2-condition): Likewise.
20498         (abi-64-v2-ld-soname): Likewise.
20499         * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
20500         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
20501         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
20502         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
20503         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
20505 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20506             Alan Modra  <amodra@gmail.com>
20508         * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
20509         New versions for use with the ELFv2 ABI.
20510         (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
20511         * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
20512         declaration.
20513         (struct La_ppc64v2_retval): Likewise.
20514         (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
20515         (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
20516         * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
20517         to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
20518         (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
20519         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
20520         Do not save or restore CR.
20521         (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
20522         (_dl_profile_resolve): Do no save or restore CR.  Support extended
20523         return values for ELFv2 ABI.  Fix location of FPR return registers.
20524         * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
20525         updated values for _CALL_ELF == 2.
20526         (La_regs, La_retval, int_retval): Likewise.
20528 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20530         * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
20531         (FRAME_MIN_SIZE_PARM): Likewise.
20532         (FRAME_BACKCHAIN): Likewise.
20533         (FRAME_CR_SAVE): Likewise.
20534         (FRAME_LR_SAVE): Likewise.
20535         (FRAME_TOC_SAVE): Likewise.
20536         (FRAME_PARM_SAVE): Likewise.
20537         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
20538         FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
20539         FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
20540         (call_mcount_parm_offset): New macro.
20541         (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
20542         (PROF): Use symbolic stack frame offsets.
20543         (TAIL_CALL_SYSCALL_ERROR): Likewise.
20544         * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
20545         Redefine in terms of FRAME_MIN_SIZE.
20546         (_dl_runtime_resolve): Use symbolic stack frame offsets.
20547         (_dl_profile_resolve): Likewise.  Update comment.
20548         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
20549         symbols stack frame offsets.
20550         (__sigsetjmp): Likewise.
20551         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
20552         * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
20553         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
20554         * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
20556         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
20557         (FRAME_BACKCHAIN): Remove.
20558         (FRAME_CR_SAVE): Likewise.
20559         (FRAME_LR_SAVE): Likewise.
20560         (FRAME_COMPILER_DW): Likewise.
20561         (FRAME_LINKER_DW): Likewise.
20562         (FRAME_TOC_SAVE): Likewise.
20563         (FRAME_PARM_SAVE): Likewise.
20564         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
20565         (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
20566         (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
20567         * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
20568         (CHECK_SP): Use symbolic stack frame offsets.
20569         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
20570         zone" instead of caller's parameter save area for temp storage.
20571         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
20572         Likewise.  Also, use symbolic stack frame offsets.
20573         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
20574         stackblock): Redefine for _CALL_ELF == 2 to save parameters into
20575         our own stack frame instead of the caller's.
20576         (__socket): Use symbolic stack frame offsets.
20578 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20579             Alan Modra  <amodra@gmail.com>
20581         * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
20582         Define.
20583         (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
20584         (PPC64_LOCAL_ENTRY_OFFSET): Define.
20585         * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
20586         New function.
20587         (elf_machine_fixup_plt): Call it.
20588         (elf_machine_plt_conflict): Likewise.  Add map, sym_map, and
20589         reloc arguments.
20590         (elf_machine_rela): Update call to elf_machine_plt_conflict.
20591         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
20592         (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
20593         r2 before calling target.
20595 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20596             Alan Modra  <amodra@gmail.com>
20598         * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
20599         (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
20600         versions of macros to support ELFv2 ABI.
20601         (LOCALENTRY): New macro.
20602         (ENTRY, EALIGN): Use it.
20603         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
20604         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
20605         fall through into ENTRY entry point.
20606         * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
20607         Only define if _CALL_ELF != 2.
20609         (elf_machine_matches_host): Verify ABI version matches.
20610         (RTLD_START): Use LOCALENTRY.
20611         (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
20612         (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
20613         (PLT_ENTRY_WORDS): New macro.
20614         (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
20615         (elf_machine_runtime_setup): Support ELFv2 ABI.
20616         (elf_machine_fixup_plt): Likewise.
20617         (elf_machine_plt_conflict): Likewise.
20618         (resolve_ifunc): Likewise.
20619         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
20620         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
20621         Likewise.
20622         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
20623         (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
20624         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
20625         (makecontext): Support ELFv2 ABI.
20626         * elf/elf.h (EF_PPC64_ABI): Define.
20628 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20630         * sysdeps/powerpc/powerpc64/sysdep.h
20631         (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
20632         (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
20633         (ENTRY) [ASSEMBLER]: ... but instead here ...
20634         (EALIGN) [ASSEMBLER]: ... and here.
20635         (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
20636         (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
20637         (ENTRY_2) [!ASSEMBLER]: Use it.
20638         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
20639         ENTRY_2 changes.  Use PPC64_LOAD_FUNCPTR.
20640         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
20641         (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
20642         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
20643         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
20644         Use PPC64_LOAD_FUNCPTR.
20646         * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
20648 2013-12-04  Alan Modra  <amodra@gmail.com>
20650         * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
20651         (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
20652         (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
20653         (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
20655         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
20656         overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
20657         R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
20658         Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
20659         R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
20660         Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
20662 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
20664         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
20665         (__makecontext): Fix incorrect CFI when backtracing out of
20666         context created via makecontext.
20667         * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
20668         (__setcontext): Fix incorrect CFI during switch to new context.
20669         (__novec_setcontext): Likewise.
20671 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
20673         [BZ #4772]
20674         * time/strptime_l.c (__strptime_internal): Allow modifiers
20675         in strptime.
20676         * time/tst-strptime.c (day_tests): Add testcase.
20678 2013-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
20680         * scripts/bench.pl: Skip over blank lines.
20682 2013-12-04  Paul Eggert  <eggert@cs.ucla.edu>
20684         [BZ #926]
20685         * manual/time.texi (Calendar Time): Clarify what timezone functions
20686         use.
20688 2013-12-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20690         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20692 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
20694         * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
20695         implementation.
20696         * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
20697         * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
20698         * debug/memset_chk.c (__memset_chk): Likewise.
20699         * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
20700         * debug/strncpy_chk.c: Likewise.
20702 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
20704         [BZ #15268]
20705         [BZ #15425]
20706         * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
20707         (__ieee754_exp): For possibly underflowing results, check size of
20708         result and force underflow exception if required.
20709         * math/auto-libm-test-in: Add more tests of exp.
20710         * math/auto-libm-test-out: Regenerated.
20711         * sysdeps/i386/fpu/libm-test-ulps: Update.
20712         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20714         [BZ #16283]
20715         * math/w_exp2.c (__exp2): Handle a zero result as underflow.
20716         * math/w_exp2f.c (__exp2f): Likewise.
20717         * math/w_exp2l.c (__exp2l): Likewise.
20718         * math/auto-libm-test-in: Do not allow missing errno on exp2
20719         underflow.
20720         * math/auto-libm-test-out: Regenerated.
20722 2013-12-03  Ondřej Bílka  <neleai@seznam.cz>
20724         [BZ #16274]
20725         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
20726         handle filename validation.
20727         * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
20728         (do_open): Delete.
20730 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
20732         [BZ #6786]
20733         * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
20734         (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
20735         * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
20736         <float.h>.
20737         (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
20738         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
20739         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
20740         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
20741         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
20742         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
20743         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
20744         * math/auto-libm-test-in: Don't allow missing errno from erfc.
20745         Add more erfc tests.
20746         * math/auto-libm-test-out: Regenerated.
20747         * sysdeps/i386/fpu/libm-test-ulps: Update.
20748         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20750         * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
20751         exp2, expm1, j0 and j1.
20752         * math/auto-libm-test-out: Regenerated.
20753         * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
20754         (erfc_test_data): Likewise.
20755         (exp_test_data): Likewise.
20756         (exp_tonearest_test_data): Likewise.
20757         (exp_towardzero_test_data): Likewise.
20758         (exp_downward_test_data): Likewise.
20759         (exp_upward_test_data): Likewise.
20760         (exp10_test_data): Likewise.
20761         (exp2_test_data): Likewise.
20762         (expm1_test_data): Likewise.
20763         (j0_test_data): Likewise.
20764         (j1_test_data): Likewise.
20765         * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
20766         (input_flag_type): Add flag_xfail_rounding.
20767         (input_flags): Add xfail-rounding.
20768         (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
20769         (output_for_one_input_case): Handle flag_xfail_rounding.
20770         * sysdeps/i386/fpu/libm-test-ulps: Update.
20771         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20773 2013-12-03  Aurelien Jarno  <aurelien@aurel32.net>
20775         [BZ #16289]
20776         * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
20777         division by 0.
20779 2013-12-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
20781         [BZ #16195]
20782         * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
20783         (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
20784         (STAP_PROBE0): New macro.
20785         (STAP_PROBE1): Likewise.
20786         (STAP_PROBE2): Likewise.
20787         (STAP_PROBE3): Likewise.
20788         (STAP_PROBE4): Likewise.
20790 2013-12-02  Ondřej Bílka  <neleai@seznam.cz>
20792         * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
20794 2013-12-02  Steve Ellcey  <sellcey@mips.com>
20796         * benchtests/Makefile (bench): Add sqrt.
20797         (LDLIBS-bench-sqrt): New.
20798         * benchtests/sqrt-input: New.
20800 2013-12-02  Pavel Simerda  <psimerda@redhat.com>
20802         * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
20803         (GAIH_EAI): Likewise.
20804         (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
20805         (gaih_inet): Likewise.
20806         (getaddrinfo): Don't use GAIH_EAI.
20808         * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
20809         (struct gaih): Remove definition.
20811 2013-12-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
20813         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
20814         Use HERRNOP directly.
20816 2013-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20818         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20820 2013-11-30  Joseph Myers  <joseph@codesourcery.com>
20822         * math/gen-auto-libm-tests.c (test_functions): Add more
20823         single-argument functions.
20824         (special_fill_pi_2): New function.
20825         (special_fill_minus_pi_2): Likewise.
20826         (special_fill_pi_6): Likewise.
20827         (special_fill_minus_pi_6): Likewise.
20828         (special_fill_pi_3): Likewise.
20829         (special_fill_2pi_3): Likewise.
20830         (special_fill_e): Likewise.
20831         (special_fill_1_e): Likewise.
20832         (special_fill_e_minus_1): Likewise.
20833         (special_real_inputs): Add more special inputs.
20834         (output_for_one_input_case): Do not require ERANGE on underflow to
20835         zero if round-to-nearest result does not underflow to zero, unless
20836         exact results required.
20837         * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
20838         atan, atanh, cbrt, cos and cosh.
20839         * math/auto-libm-test-out: Regenerated.
20840         * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
20841         (acos_tonearest_test_data): Likewise.
20842         (acos_towardzero_test_data): Likewise.
20843         (acos_downward_test_data): Likewise.
20844         (acos_upward_test_data): Likewise.
20845         (acosh_test_data): Likewise.
20846         (asin_test_data): Likewise.
20847         (asin_tonearest_test_data): Likewise.
20848         (asin_towardzero_test_data): Likewise.
20849         (asin_upward_test_data): Likewise.
20850         (asinh_test_data): Likewise.
20851         (atan_test_data): Likewise.
20852         (atanh_test_data): Likewise.
20853         (cbrt_test_data): Likewise.
20854         (cos_test_data): Likewise.
20855         (cos_tonearest_test_data): Likewise.
20856         (cos_towardzero_test_data): Likewise.
20857         (cos_downward_test_data): Likewise.
20858         (cos_upward_test_data): Likewise.
20859         (cosh_test_data): Likewise.
20860         (cosh_tonearest_test_data): Likewise.
20861         (cosh_towardzero_test_data): Likewise.
20862         (cosh_downward_test_data): Likewise.
20863         (cosh_upward_test_data): Likewise.
20864         * sysdeps/i386/fpu/libm-test-ulps: Update.
20865         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20867 2013-11-29  Joseph Myers  <joseph@codesourcery.com>
20869         [BZ #6787]
20870         * math/w_exp10.c (__exp10): Handle a zero result as underflow.
20871         * math/w_exp10f.c (__exp10f): Likewise.
20872         * math/w_exp10l.c (__exp10l): Likewise.
20873         * math/libm-test.inc (exp10_test_data): Add more tests and expect
20874         errno settings in existing tests.
20876         [BZ #14032]
20877         * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
20878         precision control set to double precision.
20879         * sysdeps/i386/fpu/w_sqrt.c: New file.
20880         * math/auto-libm-test-in: Add more tests.
20881         * math/auto-libm-test-out: Update.
20883         * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
20884         (sqrt_test_tonearest): New function.
20885         (sqrt_towardzero_test_data): New variable.
20886         (sqrt_test_towardzero): New function.
20887         (sqrt_downward_test_data): New variable.
20888         (sqrt_test_downward): New function.
20889         (sqrt_upward_test_data): New variable.
20890         (sqrt_test_upward): New function.
20891         (main): Call the new functions.
20893         * math/gen-auto-libm-tests.c: New file.
20894         * math/auto-libm-test-in: Likewise.
20895         * math/auto-libm-test-out: New generated file.
20896         * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
20897         variables.
20898         (%beautify): Add generated representations of zero.
20899         (top level): Set $auto_input and call parse_auto_input.
20900         (beautify): Remove trailing "f" from hex float constants.
20901         (parse_args): Handle XFAIL_TEST.
20902         (convert_condition): New function.
20903         (or_value): Likewise.
20904         (or_cond_value): Likewise.
20905         (generate_testfile): Handle AUTO_TESTS_* lines.
20906         (parse_auto_input): New function.
20907         * math/libm-test.inc (XFAIL_TEST): New macro.
20908         (ERRNO_UNCHANGED): Update value.
20909         (ERRNO_EDOM): Likewise.
20910         (ERRNO_ERANGE): Likewise.
20911         (IGNORE_RESULT): Likewise.
20912         (TEST_COND_flt_32): New macro.
20913         (TEST_COND_dbl_64): Likewise.
20914         (TEST_COND_ldbl_96_intel): Likewise.
20915         (TEST_COND_ldbl_96_m68k): Likewise.
20916         (TEST_COND_ldbl_128): Likewise.
20917         (TEST_COND_ldbl_128ibm): Likewise.
20918         (TEST_COND_long32): Likewise.
20919         (TEST_COND_long64): Likewise.
20920         (TEST_COND_before_rounding): Likewise.
20921         (TEST_COND_after_rounding): Likewise.
20922         (enable_test): Handle XFAIL_TEST flag.
20923         (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
20924         with finite results.
20925         * math/Makefile ($(objpfx)libm-test.stmp): Depend on
20926         auto-libm-test-out.
20928 2013-11-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
20929             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20931         [BZ #16214]
20932         * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
20933         __tls_get_addr_internal instead of __tls_get_offset in order to
20934         avoid GOT pointer dependency.  Make rtld export
20935         __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
20936         __tls_get_addr since we are a __tls_get_offset platform.
20937         * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
20938         GOT pointer being set up before.
20939         * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
20941 2013-11-28  Joseph Myers  <joseph@codesourcery.com>
20943         * manual/math.texi (Errors in Math Functions): Document accuracy
20944         goals.
20946         [BZ #15004]
20947         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
20948         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
20949         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
20950         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
20951         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
20952         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
20953         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
20954         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
20955         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
20956         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
20957         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
20958         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
20959         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
20960         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
20961         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
20962         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
20964         * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
20965         * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
20966         * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
20967         * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
20968         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
20969         Likewise.
20970         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
20971         Likewise.
20972         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
20973         Likewise.
20974         * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
20975         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
20976         (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
20977         atomic-feupdateenv and flt-rounds.
20978         * sysdeps/powerpc/nofpu/Versions (libc): Add
20979         __atomic_feholdexcept, __atomic_feclearexcept,
20980         __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
20981         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
20982         (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
20983         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
20984         (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
20985         here.
20986         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
20987         Update.
20989         * manual/arith.texi (FP Exceptions): Document that exceptions may
20990         not be raised when matherr is used.
20991         (Math Error Reporting): Document overflow in directed rounding
20992         modes.  Document that errno may not be set when finite values are
20993         returned on overflow.  Document intent to set errno on underflow
20994         only for underflow to zero.
20996         [BZ #16271]
20997         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
20998         round-to-nearest then adjust result for other rounding modes.
20999         * include/fenv.h (fegetround): Use libm_hidden_proto.
21000         * math/fegetround.c (fegetround): Use libm_hidden_def.
21001         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
21002         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
21003         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
21004         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
21005         Likewise.
21006         * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
21007         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
21008         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
21009         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
21011 2013-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
21013         [BZ #16077]
21014         * nss/Versions (libnss_files): Add
21015         _nss_files_gethostbyname3_r.
21016         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
21017         New function.
21018         (HOST_DB_LOOKUP): Remove macro.
21019         (_nss_files_gethostbyname_r): Implement function without the
21020         HOST_DB_LOOKUP macro.
21021         (_nss_files_gethostbyname2_r): Likewise.
21023 2013-11-28  Ondřej Bílka  <neleai@seznam.cz>
21025         * malloc/malloc.c (__libc_calloc): Make memset a tail call.
21027 2013-11-26  Uros Bizjak  <ubizjak@gmail.com>
21029         * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
21030         _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
21031         warning.
21033 2013-11-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21035         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
21036         __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
21037         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
21038         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
21039         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
21040         __fe_nomask_env_priv and attribute_hidden.
21041         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
21042         (libc_feupdateenv_test_ppc): Likewise.
21043         (libc_feresetround_ppc): Likewise.
21044         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
21045         (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
21046         compat_symbol macro.
21047         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
21048         (__fe_nomask_env): Likewise.
21049         * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
21051 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
21053         * string/Makefile: Remove ifunc tests.
21054         * string/test-string.h: Define TEST_IFUNC.
21055         * string/test-bcopy-ifunc.c: Remove.
21056         * string/test-bzero-ifunc.c: Likewise.
21057         * string/test-memccpy-ifunc.c: Likewise.
21058         * string/test-memchr-ifunc.c: Likewise.
21059         * string/test-memcmp-ifunc.c: Likewise.
21060         * string/test-memcpy-ifunc.c: Likewise.
21061         * string/test-memmem-ifunc.c: Likewise.
21062         * string/test-memmove-ifunc.c: Likewise.
21063         * string/test-mempcpy-ifunc.c: Likewise.
21064         * string/test-memrchr-ifunc.c: Likewise.
21065         * string/test-memset-ifunc.c: Likewise.
21066         * string/test-rawmemchr-ifunc.c: Likewise.
21067         * string/test-stpcpy-ifunc.c: Likewise.
21068         * string/test-stpncpy-ifunc.c: Likewise.
21069         * string/test-strcasecmp-ifunc.c: Likewise.
21070         * string/test-strcasestr-ifunc.c: Likewise.
21071         * string/test-strcat-ifunc.c: Likewise.
21072         * string/test-strchr-ifunc.c: Likewise.
21073         * string/test-strchrnul-ifunc.c: Likewise.
21074         * string/test-strcmp-ifunc.c: Likewise.
21075         * string/test-strcpy-ifunc.c: Likewise.
21076         * string/test-strcspn-ifunc.c: Likewise.
21077         * string/test-strlen-ifunc.c: Likewise.
21078         * string/test-strncasecmp-ifunc.c: Likewise.
21079         * string/test-strncat-ifunc.c: Likewise.
21080         * string/test-strncmp-ifunc.c: Likewise.
21081         * string/test-strncpy-ifunc.c: Likewise.
21082         * string/test-strnlen-ifunc.c: Likewise.
21083         * string/test-strpbrk-ifunc.c: Likewise.
21084         * string/test-strrchr-ifunc.c: Likewise.
21085         * string/test-strspn-ifunc.c: Likewise.
21086         * string/test-strstr-ifunc.c: Likewise.
21088 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
21090         * benchtests/Makefile: Remove ifunc tests.
21091         * benchtests/bench-string.h: Define TEST_IFUNC.
21092         * benchtests/bench-bcopy-ifunc.c: Remove.
21093         * benchtests/bench-bzero-ifunc.c: Likewise.
21094         * benchtests/bench-memccpy-ifunc.c: Likewise.
21095         * benchtests/bench-memchr-ifunc.c: Likewise.
21096         * benchtests/bench-memcmp-ifunc.c: Likewise.
21097         * benchtests/bench-memcpy-ifunc.c: Likewise.
21098         * benchtests/bench-memmem-ifunc.c: Likewise.
21099         * benchtests/bench-memmove-ifunc.c: Likewise.
21100         * benchtests/bench-mempcpy-ifunc.c: Likewise.
21101         * benchtests/bench-memrchr-ifunc.c: Likewise.
21102         * benchtests/bench-memset-ifunc.c: Likewise.
21103         * benchtests/bench-rawmemchr-ifunc.c: Likewise.
21104         * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
21105         * benchtests/bench-stpcpy-ifunc.c: Likewise.
21106         * benchtests/bench-stpncpy-ifunc.c: Likewise.
21107         * benchtests/bench-strcasecmp-ifunc.c: Likewise.
21108         * benchtests/bench-strcasestr-ifunc.c: Likewise.
21109         * benchtests/bench-strcat-ifunc.c: Likewise.
21110         * benchtests/bench-strchr-ifunc.c: Likewise.
21111         * benchtests/bench-strchrnul-ifunc.c: Likewise.
21112         * benchtests/bench-strcmp-ifunc.c: Likewise.
21113         * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
21114         * benchtests/bench-strcpy-ifunc.c: Likewise.
21115         * benchtests/bench-strcspn-ifunc.c: Likewise.
21116         * benchtests/bench-strlen-ifunc.c: Likewise.
21117         * benchtests/bench-strncasecmp-ifunc.c: Likewise.
21118         * benchtests/bench-strncat-ifunc.c: Likewise.
21119         * benchtests/bench-strncmp-ifunc.c: Likewise.
21120         * benchtests/bench-strncpy-ifunc.c: Likewise.
21121         * benchtests/bench-strnlen-ifunc.c: Likewise.
21122         * benchtests/bench-strpbrk-ifunc.c: Likewise.
21123         * benchtests/bench-strrchr-ifunc.c: Likewise.
21124         * benchtests/bench-strsep-ifunc.c: Likewise.
21125         * benchtests/bench-strspn-ifunc.c: Likewise.
21126         * benchtests/bench-strstr-ifunc.c: Likewise.
21128 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
21130         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
21132 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
21134         * resolv/netdb.h: Use __glibc_reserved instead __unused.
21135         * rt/aio.h: Likewise.
21136         * sysdeps/gnu/bits/utmp.h: Likewise.
21137         * sysdeps/gnu/bits/utmpx.h: Likewise.
21138         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
21139         * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
21140         * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
21141         * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
21142         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
21143         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
21144         * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
21145         * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
21146         * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
21147         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
21148         * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
21149         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
21150         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
21151         * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
21152         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
21153         * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
21154         * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
21155         * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
21156         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
21157         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
21158         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
21159         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
21160         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
21161         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
21162         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
21163         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
21164         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
21165         * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
21166         * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
21167         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
21168         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
21169         * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
21170         * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
21171         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
21172         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
21173         * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
21174         * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
21175         * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
21176         * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
21177         * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
21178         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
21179         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
21181 2013-11-25  Carlos O'Donell  <carlos@redhat.com>
21183         [BZ #16245]
21184         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
21185         Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
21187 2013-11-25  Joseph Myers  <joseph@codesourcery.com>
21189         * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
21190         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
21191         Likewise.
21193 2013-11-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21195         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
21196         SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
21197         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
21198         (__fesetround): Remove define.
21199         * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
21200         rounding and exceptions handling.
21201         * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
21202         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
21203         (__fe_nomask_env): Likewise.
21204         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
21205         __fegetround instead of fegetround.
21206         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
21207         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
21209 2013-11-21  Roland McGrath  <roland@hack.frob.com>
21211         * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
21212         it's there.
21214         * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
21216 2013-11-21  Meador Inge  <meadori@codesourcery.com>
21218         [BZ #11157]
21219         * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
21220         (encrypt_r): Likewise.
21221         * malloc/obstack.h (obstack_free): Likewise.
21222         * posix/unistd.h (encrypt): Likewise.
21224 2013-11-21  Guy Martin  <gmsoft@tuxicoman.be>
21226         * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
21227         DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
21228         DL_CALL_DT_FINI() that call the functions directly.
21229         * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
21230         * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
21231         * elf/dl-fini.c: Likewise.
21233 2013-11-20  Ondřej Bílka  <neleai@seznam.cz>
21235         * malloc/hooks.c (memalign_check): Add alignment rounding.
21236         * malloc/malloc.c (_mid_memalign): New function.
21237         (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
21238         Implement by calling _mid_memalign.
21239         * manual/probes.texi (Memory Allocation Probes): Remove
21240         memory_valloc_retry and memory_pvalloc_retry.
21242 2013-11-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
21244         * locale/programs/locarchive.c (open_archive): Add const
21245         qualifier to ARCHIVEFNAME and copy default fname to
21246         DEFAULT_FNAME.
21248         [BZ #15601]
21249         * libio/tst-widetext.input: Rename Oriya to Odia.
21250         * locale/iso-639.def: Likewise.
21252         * manual/probes.texi (Mathematical Function Probes): Add
21253         documentation for sin, cos, asin and acos probes.
21254         * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
21255         (__sin32): Add slowasin probe.
21256         (__cos32): Add slowacos probe.
21257         (__mpsin): Add slowsin probe.
21258         (__mpcos): Add slowcos probe.
21260 2013-11-19  Joseph Myers  <joseph@codesourcery.com>
21262         [BZ #15483]
21263         * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
21264         thread-local __sim_exceptions_thread and global
21265         __sim_exceptions_global.
21266         (__sim_disabled_exceptions): Change to thread-local
21267         __sim_disabled_exceptions_thread and global
21268         __sim_disabled_exceptions_global.
21269         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
21270         and global __sim_round_mode_global.
21271         (__simulate_exceptions): Use thread-local floating-point state and
21272         set global state from it as needed.
21273         * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
21274         __sim_exceptions_thread, __sim_disabled_exceptions_thread and
21275         __sim_round_mode_thread.
21276         * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
21277         (__sim_exceptions): Change to thread-local __sim_exceptions_thread
21278         and global __sim_exceptions_global.
21279         (__sim_disabled_exceptions): Change to thread-local
21280         __sim_disabled_exceptions_thread and global
21281         __sim_disabled_exceptions_global.
21282         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
21283         and global __sim_round_mode_global.
21284         [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
21285         (SIM_SET_GLOBAL): Likewise.
21286         * sysdeps/powerpc/soft-fp/sfp-machine.h
21287         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
21288         __sim_round_mode_thread.
21289         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
21290         __sim_disabled_exceptions_thread.
21291         (__sim_exceptions): Change to __sim_exceptions_thread.
21292         (__sim_disabled_exceptions): Change to
21293         __sim_disabled_exceptions_thread.
21294         (__sim_round_mode): Change to __sim_round_mode_thread.
21295         * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
21296         thread-local floating-point state and set global state from it as
21297         needed.
21298         * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
21299         * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
21300         (__sim_disabled_exceptions): Remove extern declaration.
21301         (feenableexcept): Use thread-local floating-point state and set
21302         global state from it as needed.
21303         * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
21304         extern declaration.
21305         (__sim_disabled_exceptions): Likewise.
21306         (__sim_round_mode): Likewise.
21307         (__fegetenv): Use thread-local floating-point state.
21308         * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
21309         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
21310         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
21311         floating-point state and set global state from it as needed.
21312         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
21313         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
21314         * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
21315         Likewise.
21316         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
21317         * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
21318         Likewise.
21319         sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
21320         * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
21321         Use __sim_round_mode_thread.
21322         * math/test-fenv-tls.c: New file.
21323         * math/Makefile (tests): Add test-fenv-tls.
21324         ($(objpfx)test-fenv-tls): Depend on
21325         $(common-objpfx)nptl/libpthread.so.
21327 2013-11-19  Andreas Schwab  <schwab@suse.de>
21329         * locale/programs/locale.c (show_info): Decode wordarray elements.
21330         * locale/categories.def (LC_MONETARY): Add element for
21331         _NL_MONETARY_CRNCYSTR.
21332         * locale/C-monetary.c (conversion_rate): New variable.
21333         (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
21334         element.
21336 2013-11-18  Chris Metcalf  <cmetcalf@tilera.com>
21338         * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
21339         Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
21341 2013-11-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
21343         * elf/Makefile (tst-auxv): New test.
21344         * elf/tst-auxv.c: New
21345         * elf/rtld.c (dl_main): Adjust AT_EXECFN
21347 2013-11-18  Joseph Myers  <joseph@codesourcery.com>
21349         * include/libc-symbols.h (__hidden_proto): Add argument "thread".
21350         (hidden_proto): Caller changed.
21351         (hidden_tls_proto): New macro.
21352         (libc_hidden_tls_proto): Likewise.
21353         (rtld_hidden_tls_proto): Likewise.
21354         (libm_hidden_tls_proto): Likewise.
21355         (libresolv_hidden_tls_proto): Likewise.
21356         (librt_hidden_tls_proto): Likewise.
21357         (libdl_hidden_tls_proto): Likewise.
21358         (libnss_files_hidden_tls_proto): Likewise.
21359         (libnsl_hidden_tls_proto): Likewise.
21360         (libnss_nisplus_hidden_tls_proto): Likewise.
21361         (libutil_hidden_tls_proto): Likewise.
21363 2013-11-18  Ondřej Bílka  <neleai@seznam.cz>
21365         [BZ #10253]
21366         * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
21367         (decompose_rpath): Defer expansion to fillin_rpath.
21368         (_dl_init_paths): Pass linkmap to fillin_rpath.
21370 2013-11-18  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
21372         * benchtests/Makefile: Add strsep.
21373         * benchtests/bench-strsep.c: New file: strsep benchtest.
21374         * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
21376 2013-11-18  Andreas Schwab  <schwab@suse.de>
21378         * locale/programs/locale.c (show_info) [case byte]: Check for
21379         '\377' instead of '\177'.
21380         * locale/C-monetary.c (not_available): Always use "\377".
21381         * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
21382         unspecified p_sign_posn and n_sign_posn.  Check for '\377' to
21383         detect unavailable sign_posn locale elements.
21384         * locale/localeconv.c (__localeconv): For grouping and
21385         mon_grouping handle "\177" and "\377" like no grouping.
21386         (INT_ELEM): New macro.  Use it to set all numeric members.
21387         * locale/programs/ld-monetary.c (monetary_read)
21388         <tok_mon_grouping>: Normalize single -1 to the empty string.
21389         * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
21390         Likewise.
21392 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
21394         [BZ #16055]
21395         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
21396         when we match (nil).
21397         * stdio-common/tst-sscanf.c (struct test): Add testcase.
21399 2013-11-16  Joseph Myers  <joseph@codesourcery.com>
21401         * math/libm-test.inc (TEST_NAN_SIGN): New macro.
21402         (NO_TEST_INLINE): Update value.
21403         (ERRNO_UNCHANGED): Likewise.
21404         (ERRNO_EDOM): Likewise.
21405         (ERRNO_ERANGE): Likewise.
21406         (IGNORE_RESULT): Likewise.
21407         (check_float_internal): Check signs of NaN results if
21408         TEST_NAN_SIGN used.
21409         (check_complex): Pass TEST_NAN_SIGN flag through to second
21410         check_float_internal call.
21411         (copysign_test_data): Add tests with quiet NaNs as second
21412         argument.  Use TEST_NAN_SIGN.
21413         (fabs_test_data): Add test of negative quiet NaN argument.  Use
21414         TEST_NAN_SIGN.
21415         (signbit_test_data): Add tests of quiet NaN argument.
21416         * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
21418         * math/gen-libm-test.pl (show_exceptions): Take extra argument
21419         $ignore_result.
21420         (parse_args): Handle function results specified as IGNORE.
21421         * math/libm-test.inc (IGNORE_RESULT): New macro.
21422         (check_float_internal): Do not check numerical result if flag
21423         IGNORE_RESULT set.
21424         (check_complex): Pass through IGNORE_RESULT to second
21425         check_float_internal call.
21426         (check_int): Do not check numerical result if flag IGNORE_RESULT
21427         set.
21428         (check_long): Likewise.
21429         (check_bool): Likewise.
21430         (check_longlong): Likewise.
21431         (lrint_test_data): Add tests of infinite and NaN arguments.
21432         (lrint_tonearest_test_data): Likewise.
21433         (lrint_towardzero_test_data): Likewise.
21434         (lrint_downward_test_data): Likewise.
21435         (lrint_upward_test_data): Likewise.
21436         (llrint_test_data): Likewise.
21437         (llrint_tonearest_test_data): Likewise.
21438         (llrint_towardzero_test_data): Likewise.
21439         (llrint_downward_test_data): Likewise.
21440         (llrint_upward_test_data): Likewise.
21441         (lround_test_data): Likewise.
21442         (llround_test_data): Likewise.
21444         * math/libm-test.inc (NO_TEST_INLINE): New macro.
21445         (ERRNO_UNCHANGED): Update value.
21446         (ERRNO_EDOM): Likewise.
21447         (ERRNO_ERANGE): Likewise.
21448         (NO_TEST_INLINE_FLOAT): New macro.
21449         (NO_TEST_INLINE_DOUBLE): Likewise.
21450         (enable_test): New function.
21451         (RUN_TEST_f_f): Check enable_test before running test.
21452         (RUN_TEST_2_f): Likewise.
21453         (RUN_TEST_fff_f): Likewise.
21454         (RUN_TEST_c_f): Likewise.
21455         (RUN_TEST_f_f1): Likewise.
21456         (RUN_TEST_fF_f1): Likewise.
21457         (RUN_TEST_fI_f1): Likewise.
21458         (RUN_TEST_ffI_f1): Likewise.
21459         (RUN_TEST_c_c): Likewise.
21460         (RUN_TEST_cc_c): Likewise.
21461         (RUN_TEST_f_i): Likewise.
21462         (RUN_TEST_f_i_tg): Likewise.
21463         (RUN_TEST_ff_i_tg): Likewise.
21464         (RUN_TEST_f_b): Likewise.
21465         (RUN_TEST_f_b_tg): Likewise.
21466         (RUN_TEST_f_l): Likewise.
21467         (RUN_TEST_f_L): Likewise.
21468         (RUN_TEST_fFF_11): Likewise.
21469         (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
21470         conditionals.
21471         (cosh_test_data): Likewise.
21472         (exp_test_data): Likewise.
21473         (expm1_test_data): Likewise.
21474         (hypot_test_data): Likewise.
21475         (pow_test_data): Likewise.
21476         (sinh_test_data): Likewise.
21477         (tanh_test_data): Likewise.
21478         * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
21479         flags argument.
21481         * libm-test.inc (acos_test_data): Disallow inexact exceptions for
21482         tests with quiet NaN input and output.
21483         (acosh_test_data): Likewise.
21484         (asin_test_data): Likewise.
21485         (asinh_test_data): Likewise.
21486         (atan_test_data): Likewise.
21487         (atanh_test_data): Likewise.
21488         (atan2_test_data): Likewise.
21489         (cbrt_test_data): Likewise.
21490         (cos_test_data): Likewise.
21491         (cosh_test_data): Likewise.
21492         (erf_test_data): Likewise.
21493         (erfc_test_data): Likewise.
21494         (exp_test_data): Likewise.
21495         (exp10_test_data): Likewise.
21496         (exp2_test_data): Likewise.
21497         (expm1_test_data): Likewise.
21498         (hypot_test_data): Likewise.
21499         (j0_test_data): Likewise.
21500         (j1_test_data): Likewise.
21501         (jn_test_data): Likewise.
21502         (lgamma_test_data): Likewise.
21503         (log_test_data): Likewise.
21504         (log10_test_data): Likewise.
21505         (log1p_test_data): Likewise.
21506         (log2_test_data): Likewise.
21507         (pow_test_data): Likewise.
21508         (scalb_test_data): Likewise.
21509         (sin_test_data): Likewise.
21510         (sincos_test_data): Likewise.
21511         (sinh_test_data): Likewise.
21512         (tan_test_data): Likewise.
21513         (tanh_test_data): Likewise.
21514         (tgamma_test_data): Likewise.
21515         (y0_test_data): Likewise.
21516         (y1_test_data): Likewise.
21517         (yn_test_data): Likewise.
21519         [BZ #16167]
21520         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
21521         argument being NaN and avoid computations with second argument in
21522         that case.
21523         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
21524         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
21525         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
21527 2013-11-15  Arun Kumar Pyasi <arun@chitwanix.com>
21529         * locale/iso-639.def: Add Chitwani Tharu (the).
21531 2013-11-14  Andreas Schwab  <schwab@suse.de>
21533         * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
21534         word instead of empty string.
21536 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21538         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
21539         (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
21540         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
21541         (__fe_nomask_env): Likewise.
21543 2013-11-13  Steve Ellcey  <sellcey@mips.com>
21545         * benchtests/bench-timing.h: Include time.h.
21547 2013-11-13  H.J. Lu  <hongjiu.lu@intel.com>
21549         [BZ #15997]
21550         * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
21551         to 3.4.0 for x32.
21552         * sysdeps/unix/sysv/linux/configure: Regenerated.
21554 2013-11-13  Joseph Myers  <joseph@codesourcery.com>
21556         [BZ #16151]
21557         * stdlib/strtod_l.c (round_and_return): Do not consider
21558         retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
21559         exponent one less than half the least subnormal exponent.
21560         * stdlib/test-strtod-round-data: Add more tests.
21561         * stdlib/tst-strtod-round.c (tests): Regenerated.
21563 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21565         [BZ #14143]
21566         * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
21567         (__fe_mask_env): Likewise.
21568         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
21569         libm_hidden_proto and add function prototype.
21570         (__fe_mask_env): Add function prototype.
21571         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
21572         (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
21573         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
21574         (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
21575         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
21576         (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
21578 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
21580         * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
21581         set reference_name to "" to avoid passing NULL to DSO_FILENAME.
21583 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
21585         * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
21586         of htab_find_slot().
21588 2013-11-11  David S. Miller  <davem@davemloft.net>
21590         [BZ #16150]
21591         * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
21592         symbol in the non-vis3 case in static builds.
21593         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
21594         * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
21595         * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
21596         * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
21598 2013-11-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
21600         [BZ #387]
21601         * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
21602         it is empty.
21604 2013-11-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21606         * benchtests/Makefile: Add bench-strtod.
21607         * benchtests/bench-strtod.c: New file: strtod benchtest
21609 2013-11-11  Andreas Schwab  <schwab@suse.de>
21611         [BZ #16153]
21612         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
21613         terminating NUL in key length.
21615 2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21617         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
21618         Add artificial ODP entry for vDSO symbol for PPC64.
21619         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
21620         * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
21622 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
21624         [BZ #15374]
21625         * nss/getent.c (services_keys): Recognize services starting with digit.
21627 2013-11-06  David S. Miller  <davem@davemloft.net>
21629         [BZ #15985]
21630         * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
21631         on pre-v9 cpus, use a fnegs+fmovs sequence instead.
21633 2013-11-06  Will Newton  <will.newton@linaro.org>
21635         * manual/memory.texi (Malloc Examples): Remove register
21636         keyword from examples.
21638 2013-11-04  Chris Leonard  <cjl@sugarlabs.org>
21640         * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
21642 2013-11-04  Joseph Myers  <joseph@codesourcery.com>
21644         [BZ #6981]
21645         * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
21646         depending on [__GCC_IEC_559 > 0].
21647         [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
21648         depending on [__GCC_IEC_559_COMPLEX > 0].
21650 2013-11-03  Chris Leonard  <cjl@sugarlabs.org>
21652         * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
21653         to iso-639.def.
21655 2013-11-03  Ondřej Bílka  <neleai@seznam.cz>
21657         * elf/rtld.c: Remove unused NONTLS_INIT_TP.
21659 2013-11-01  Ondřej Bílka  <neleai@seznam.cz>
21661         [BZ #16112]
21662         * malloc/malloc (malloc_info): Do not handle first bin as
21663         special case.
21665 2013-11-01  Chris Leonard  <cjl@sugarlabs.org>
21667         * locale/iso-639.def: Add Central Nahuatl (nhn).
21669 2013-11-01  Bruno Haible  <bruno@clisp.org>
21671         [BZ #7003]
21672         * manual/math.texi (BSD Random): Specify range upper bound as
21673         in POSIX.
21675 2013-10-31  Chris Leonard  <cjl@sugarlabs.org>
21677         * locale/iso-639.def: Add Meadow Mari (mhr).
21679 2013-10-31  Ondřej Bílka  <neleai@seznam.cz>
21681         [BZ #14752], [BZ #15763]
21682         * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
21683         Validate name.
21684         * rt/tst_shm.c: Add test for escaping directory.
21686 2013-10-31  Andreas Schwab  <schwab@suse.de>
21688         [BZ #15917]
21689         * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
21690         followed by 'x' as part of digit sequence.
21691         * stdio-common/tst-sscanf.c (double_tests2): New tests.
21693 2013-10-31  Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
21695         [BZ #16037]
21696         * configure.ac: allow GNU Make 4.0 and greater.
21697         * configure: Regenerated.
21699 2013-10-30  Will Newton  <will.newton@linaro.org>
21701         [BZ #16038]
21702         * malloc/hooks.c (memalign_check): Limit alignment to the
21703         maximum representable power of two.
21704         * malloc/malloc.c (__libc_memalign): Likewise.
21705         * malloc/tst-memalign.c (do_test): Add test for very
21706         large alignment values.
21707         * malloc/tst-posix_memalign.c (do_test): Likewise.
21709 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
21711         [BZ #11087]
21712         * malloc/malloc.c (sysmalloc): Compute statistics atomically.
21713         (munmap_chunk): Likewise.
21714         (mremap_chunk): Likewise.
21716 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
21718         [BZ #15799]
21719         * stdlib/div.c (div): Remove obsolete code.
21720         * stdlib/ldiv.c (ldiv): Likewise.
21721         * stdlib/lldiv.c (lldiv): Likewise.
21723 2013-10-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
21725         [BZ #16071]
21726         * nss/nss_files/files-XXX.c (get_contents_ret): New
21727         enumerator.
21728         (get_contents): New function.
21729         (internal_getent): Use it.  Expand size of LINEBUFLEN.
21731 2013-10-30  Mike Frysinger  <vapier@gentoo.org>
21733         * configure.in: Moved to ...
21734         * configure.ac: ... here. Change reference to configure.in
21735         to configure.ac.
21736         * sysdeps/arm/preconfigure.ac: ... here.
21737         configure.in to configure.ac.
21738         * sysdeps/gnu/configure.in: Moved to ...
21739         * sysdeps/gnu/configure.ac: ... here.
21740         * sysdeps/i386/configure.in: Moved to ...
21741         * sysdeps/i386/configure.ac: ... here.
21742         * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
21743         * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
21744         * sysdeps/mach/configure.in: Moved to ...
21745         * sysdeps/mach/configure.ac: ... here.
21746         * sysdeps/mach/hurd/configure.in: Moved to ...
21747         * sysdeps/mach/hurd/configure.ac: ... here.
21748         * sysdeps/powerpc/configure.in: Moved to ...
21749         * sysdeps/powerpc/configure.ac: ... here.
21750         * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
21751         * sysdeps/powerpc/powerpc32/configure.ac: ... here.
21752         * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
21753         * sysdeps/powerpc/powerpc64/configure.ac: ... here.
21754         * sysdeps/s390/s390-32/configure.in: Moved to ...
21755         * sysdeps/s390/s390-32/configure.ac: ... here.
21756         * sysdeps/s390/s390-64/configure.in: Moved to ...
21757         * sysdeps/s390/s390-64/configure.ac: ... here.
21758         * sysdeps/sh/configure.in: Moved to ...
21759         * sysdeps/sh/configure.ac: ... here.
21760         * sysdeps/sparc/configure.in: Moved to ...
21761         * sysdeps/sparc/configure.ac: ... here.
21762         * sysdeps/unix/sysv/linux/configure.in: Moved to ...
21763         * sysdeps/unix/sysv/linux/configure.ac: ... here.
21764         * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
21765         * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
21766         * sysdeps/x86_64/configure.in: Moved to ...
21767         * sysdeps/x86_64/configure.ac: ... here.
21768         * sysdeps/x86_64/preconfigure.in: Moved to ...
21769         * sysdeps/x86_64/preconfigure.ac: ... here.
21770         * aclocal.m4: Change reference to configure.in to configure.ac.
21771         * config.h.in: Likewise.
21772         * manual/install.texi: Likewise.
21773         * manual/maint.texi: Likewise.
21774         * Makefile: Likewise.
21775         * malloc/Makefile: Likewise.
21776         * nscd/Makefile: Likewise.
21777         * Makeconfig: Change reference to configure.in and
21778         preconfigure.in to configure.ac and preconfigure.ac
21779         respectively.
21780         * INSTALL: Regenerated.
21781         * configure: Likewise.
21782         * sysdeps/gnu/configure: Likewise.
21783         * sysdeps/i386/configure: Likewise.
21784         * sysdeps/ieee754/ldbl-opt/configure: Likewise.
21785         * sysdeps/mach/configure: Likewise.
21786         * sysdeps/mach/hurd/configure: Likewise.
21787         * sysdeps/powerpc/configure: Likewise.
21788         * sysdeps/powerpc/powerpc32/configure: Likewise.
21789         * sysdeps/powerpc/powerpc64/configure: Likewise.
21790         * sysdeps/s390/s390-32/configure: Likewise.
21791         * sysdeps/s390/s390-64/configure: Likewise.
21792         * sysdeps/sh/configure: Likewise.
21793         * sysdeps/sparc/configure: Likewise.
21794         * sysdeps/unix/sysv/linux/configure: Likewise.
21795         * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
21796         * sysdeps/x86_64/configure: Likewise.
21797         * sysdeps/x86_64/preconfigure: Likewise.
21799 2013-10-29  Andreas Schwab  <schwab@suse.de>
21801         * stdio-common/Makefile (tst-swscanf-ENV): Define.
21803 2013-10-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
21805         * benchtests/pow-inputs: Add new inputs.
21807         * benchtests/exp-inputs: Add new inputs.
21809         * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
21810         conditional check for return value.
21811         (__cos32): Likewise.
21813 2013-10-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21815         * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
21816         to provide a boost for large inputs with word alignment.
21817         * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
21818         implementation based on optimized PPC64 strcpy.
21819         * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
21820         strcpy for PPC64/POWER7 based on both doubleword and word load/store.
21821         * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
21822         stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
21824 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
21826         [BZ #2801]
21827         * manual/socket.texi (Host Names): Fix gethostbyname_r example.
21829 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
21831         [BZ #14876]
21832         * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
21833         * time/tst-strptime.c (day_tests): Add testcase.
21835 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
21837         [BZ #14029]
21838         * manual/pattern.texi: Acknowledge that fnmatch can fail.
21840 2013-10-25  Fabrice Bauzac  <fbauzac@debian71.nce.amadeus.net>
21842         [BZ #16074]
21843         * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
21844         MAP_FAILED on error.
21846 2013-10-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
21848         [BZ #16072]
21849         * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
21850         heap for large requests.
21852 2013-10-25  Aurelien Jarno  <aurelien@aurel32.net>
21854         [BZ #9954]
21855         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
21856         result if the result has no associated interface.
21857         * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
21858         interface for all 127.X.Y.Z addresses.
21860 2013-10-24  Chris Leonard  <cjl@sugarlabs.org>
21862         * locale/iso-639.def: Add Ligurian (lij)
21864 2013-10-21  Ondřej Bílka  <neleai@seznam.cz>
21866         [BZ #15825]
21867         * sunrpc/rpc_main.c: Document rpcgen -5.
21869 2013-10-19  Michael Stahl  <mstahl@redhat.com>
21871         * elf/rtld.c (do_preload): Print the reason why preloading failed.
21873 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
21875         [BZ #10278]
21876         * posix/glob.c: Match only directories when trailing slash is present.
21877         * posix/tst-gnuglob.c (my_opendir): Do not open files.
21878         (main): Add testcase.
21880 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
21882         [BZ #15670]
21883         * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
21885 2013-10-18  Carlos O'Donell  <carlos@redhat.com>
21887         * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
21888         AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
21889         AUTH_DES and cindex for FIPS 140-2.
21890         (DES Encryption): Add cindex FIPS 46-3.
21892         * locale/locarchive.h (struct locarhandle): Add fname.
21893         * locale/programs/localedef.c (main): Pass ARGV[remaining]
21894         if an optional argument was specified to --list-archive,
21895         otherwise NULL.
21896         * locale/programs/locarchive.c (show_archive_content): Take new
21897         argument fname and pass it via ah.fname to open_archive.
21898         * locale/programs/localedef.h: Update decl.
21899         (open_archive): If AH->fname is non-null, open that file
21900         rather than the default file name, and don't ignore ENOENT.
21901         (create_archive): Set AH.fname to NULL.
21902         (delete_locales_from_archive): Likewise.
21903         (add_locales_to_archive): Likewise.
21904         * locale/programs/locfile.c (write_all_categories): Likewise.
21906 2013-10-18  Joseph Myers  <joseph@codesourcery.com>
21907             Aldy Hernandez  <aldyh@redhat.com>
21909         * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
21910         * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
21911         * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
21912         * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
21913         * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
21914         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
21915         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
21916         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
21917         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
21918         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
21919         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
21920         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
21921         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
21922         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
21923         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
21924         Likewise.
21925         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
21926         Likewise.
21927         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
21928         Likewise.
21929         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
21930         Likewise.
21931         * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
21932         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
21933         Likewise.
21934         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
21935         * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
21936         * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
21937         * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
21938         Likewise.
21939         * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
21940         * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
21941         * sysdeps/powerpc/preconfigure: Likewise.
21942         * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
21943         Likewise.
21944         * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
21945         Replace contents of file by #include of <fenv_libc.h>.
21946         * sysdeps/powerpc/soft-fp/sfp-machine.h
21947         [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
21948         and <sys/prctl.h>.
21949         [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
21950         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
21951         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
21952         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
21953         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
21954         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
21955         [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
21956         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
21957         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
21958         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
21959         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
21960         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
21961         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
21962         Allow copysignl PLT reference to be missing.
21964 2013-10-18  Richard Sandiford  <richard@codesourcery.com>
21965             Joseph Myers  <joseph@codesourcery.com
21967         [BZ #15948]
21968         * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
21969         single character.
21970         (add_to_tablewc): Assert sequence of wide characters is nonempty.
21972 2013-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
21974         * elf/tst-tls-dlinfo.c: Don't include tls.h.
21975         * elf/tst-tls1.c: Likewise.
21976         * elf/tst-tls10.h: Likewise.
21977         * elf/tst-tls14.c: Likewise.
21978         * elf/tst-tls2.c: Likewise.
21979         * elf/tst-tls3.c: Likewise.
21980         * elf/tst-tls4.c: Likewise.
21981         * elf/tst-tls5.c: Likewise.
21982         * elf/tst-tls6.c: Likewise.
21983         * elf/tst-tls7.c: Likewise.
21984         * elf/tst-tls8.c: Likewise.
21985         * elf/tst-tls9.c: Likewise.
21986         * elf/tst-tlsmod1.c: Likewise.
21987         * elf/tst-tlsmod13.c: Likewise.
21988         * elf/tst-tlsmod13a.c: Likewise.
21989         * elf/tst-tlsmod14a.c: Likewise.
21990         * elf/tst-tlsmod16a.c: Likewise.
21991         * elf/tst-tlsmod16b.c: Likewise.
21992         * elf/tst-tlsmod2.c: Likewise.
21993         * elf/tst-tlsmod3.c: Likewise.
21994         * elf/tst-tlsmod4.c: Likewise.
21995         * elf/tst-tlsmod5.c: Likewise.
21996         * elf/tst-tlsmod6.c: Likewise.
21998 2013-10-18  Ondřej Bílka  <neleai@seznam.cz>
22000         [BZ #12486]
22001         * malloc/malloc.c: remove checks for statistics.
22003 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
22005         [BZ #15277]
22006         * inet/inet_net.c (inet_network): Detect additional invalid strings.
22007         * inet/tst-network.c: Add testcase.
22009 2013-10-17  Andreas Schwab  <schwab@suse.de>
22011         [BZ #15218]
22012         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
22013         to determine canonical name.
22015 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
22017         * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
22018         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
22019         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
22020         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
22021         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
22022         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
22023         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
22024         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
22025         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
22026         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
22027         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
22028         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
22029         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
22030         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
22031         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
22032         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
22033         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
22034         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
22035         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
22036         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
22037         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
22038         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
22039         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
22040         * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
22041         * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
22042         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
22043         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
22044         * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
22045         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
22046         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
22047         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
22048         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
22049         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
22050         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
22051         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
22052         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
22053         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
22054         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
22055         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
22056         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
22057         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
22058         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
22059         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
22060         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
22061         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
22062         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
22063         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
22064         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
22065         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
22066         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
22067         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
22068         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
22069         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
22070         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
22071         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
22072         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
22073         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
22074         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
22076 2013-10-17  Joseph Myers  <joseph@codesourcery.com>
22078         [BZ #16041]
22079         * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
22080         make result into a quiet NaN.
22082 2013-10-16  Joseph Myers  <joseph@codesourcery.com>
22084         * soft-fp/adddf3.c: Fix horizontal whitespace.
22085         * soft-fp/addsf3.c: Likewise.
22086         * soft-fp/addtf3.c: Likewise.
22087         * soft-fp/divdf3.c: Likewise.
22088         * soft-fp/divsf3.c: Likewise.
22089         * soft-fp/divtf3.c: Likewise.
22090         * soft-fp/double.h: Likewise.
22091         * soft-fp/eqdf2.c: Likewise.
22092         * soft-fp/eqsf2.c: Likewise.
22093         * soft-fp/eqtf2.c: Likewise.
22094         * soft-fp/extenddftf2.c: Likewise.
22095         * soft-fp/extended.h: Likewise.
22096         * soft-fp/extendsfdf2.c: Likewise.
22097         * soft-fp/extendsftf2.c: Likewise.
22098         * soft-fp/extendxftf2.c: Likewise.
22099         * soft-fp/fixdfdi.c: Likewise.
22100         * soft-fp/fixdfsi.c: Likewise.
22101         * soft-fp/fixdfti.c: Likewise.
22102         * soft-fp/fixsfdi.c: Likewise.
22103         * soft-fp/fixsfsi.c: Likewise.
22104         * soft-fp/fixsfti.c: Likewise.
22105         * soft-fp/fixtfdi.c: Likewise.
22106         * soft-fp/fixtfsi.c: Likewise.
22107         * soft-fp/fixtfti.c: Likewise.
22108         * soft-fp/fixunsdfdi.c: Likewise.
22109         * soft-fp/fixunsdfsi.c: Likewise.
22110         * soft-fp/fixunsdfti.c: Likewise.
22111         * soft-fp/fixunssfdi.c: Likewise.
22112         * soft-fp/fixunssfsi.c: Likewise.
22113         * soft-fp/fixunssfti.c: Likewise.
22114         * soft-fp/fixunstfdi.c: Likewise.
22115         * soft-fp/fixunstfsi.c: Likewise.
22116         * soft-fp/fixunstfti.c: Likewise.
22117         * soft-fp/floatdidf.c: Likewise.
22118         * soft-fp/floatdisf.c: Likewise.
22119         * soft-fp/floatditf.c: Likewise.
22120         * soft-fp/floatsidf.c: Likewise.
22121         * soft-fp/floatsisf.c: Likewise.
22122         * soft-fp/floatsitf.c: Likewise.
22123         * soft-fp/floattidf.c: Likewise.
22124         * soft-fp/floattisf.c: Likewise.
22125         * soft-fp/floattitf.c: Likewise.
22126         * soft-fp/floatundidf.c: Likewise.
22127         * soft-fp/floatundisf.c: Likewise.
22128         * soft-fp/floatunditf.c: Likewise.
22129         * soft-fp/floatunsidf.c: Likewise.
22130         * soft-fp/floatunsisf.c: Likewise.
22131         * soft-fp/floatunsitf.c: Likewise.
22132         * soft-fp/floatuntidf.c: Likewise.
22133         * soft-fp/floatuntisf.c: Likewise.
22134         * soft-fp/floatuntitf.c: Likewise.
22135         * soft-fp/fmadf4.c: Likewise.
22136         * soft-fp/fmasf4.c: Likewise.
22137         * soft-fp/fmatf4.c: Likewise.
22138         * soft-fp/gedf2.c: Likewise.
22139         * soft-fp/gesf2.c: Likewise.
22140         * soft-fp/getf2.c: Likewise.
22141         * soft-fp/ledf2.c: Likewise.
22142         * soft-fp/lesf2.c: Likewise.
22143         * soft-fp/letf2.c: Likewise.
22144         * soft-fp/muldf3.c: Likewise.
22145         * soft-fp/mulsf3.c: Likewise.
22146         * soft-fp/multf3.c: Likewise.
22147         * soft-fp/negdf2.c: Likewise.
22148         * soft-fp/negsf2.c: Likewise.
22149         * soft-fp/negtf2.c: Likewise.
22150         * soft-fp/op-1.h: Likewise.
22151         * soft-fp/op-2.h: Likewise.
22152         * soft-fp/op-4.h: Likewise.
22153         * soft-fp/op-8.h: Likewise.
22154         * soft-fp/op-common.h: Likewise.
22155         * soft-fp/quad.h: Likewise.
22156         * soft-fp/single.h: Likewise.
22157         * soft-fp/soft-fp.h: Likewise.
22158         * soft-fp/sqrtdf2.c: Likewise.
22159         * soft-fp/sqrtsf2.c: Likewise.
22160         * soft-fp/sqrttf2.c: Likewise.
22161         * soft-fp/subdf3.c: Likewise.
22162         * soft-fp/subsf3.c: Likewise.
22163         * soft-fp/subtf3.c: Likewise.
22164         * soft-fp/truncdfsf2.c: Likewise.
22165         * soft-fp/trunctfdf2.c: Likewise.
22166         * soft-fp/trunctfsf2.c: Likewise.
22167         * soft-fp/trunctfxf2.c: Likewise.
22168         * soft-fp/unorddf2.c: Likewise.
22169         * soft-fp/unordsf2.c: Likewise.
22170         * soft-fp/unordtf2.c: Likewise.
22172 2013-10-15  Joseph Myers  <joseph@codesourcery.com>
22174         * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
22175         * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
22177 2013-10-15   Ondřej Bílka  <neleai@seznam.cz>
22179         * elf/dl-libc.c: Clear initfini list after freeing.
22181 2013-10-14  Joseph Myers  <joseph@codesourcery.com>
22183         * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
22184         * soft-fp/addsf3.c: Likewise.
22185         * soft-fp/addtf3.c: Likewise.
22186         * soft-fp/divdf3.c: Likewise.
22187         * soft-fp/divsf3.c: Likewise.
22188         * soft-fp/divtf3.c: Likewise.
22189         * soft-fp/double.h: Likewise.
22190         * soft-fp/eqdf2.c: Likewise.
22191         * soft-fp/eqsf2.c: Likewise.
22192         * soft-fp/eqtf2.c: Likewise.
22193         * soft-fp/extenddftf2.c: Likewise.
22194         * soft-fp/extended.h: Likewise.
22195         * soft-fp/extendsfdf2.c: Likewise.
22196         * soft-fp/extendsftf2.c: Likewise.
22197         * soft-fp/extendxftf2.c: Likewise.
22198         * soft-fp/fixdfdi.c: Likewise.
22199         * soft-fp/fixdfsi.c: Likewise.
22200         * soft-fp/fixdfti.c: Likewise.
22201         * soft-fp/fixsfdi.c: Likewise.
22202         * soft-fp/fixsfsi.c: Likewise.
22203         * soft-fp/fixsfti.c: Likewise.
22204         * soft-fp/fixtfdi.c: Likewise.
22205         * soft-fp/fixtfsi.c: Likewise.
22206         * soft-fp/fixtfti.c: Likewise.
22207         * soft-fp/fixunsdfdi.c: Likewise.
22208         * soft-fp/fixunsdfsi.c: Likewise.
22209         * soft-fp/fixunsdfti.c: Likewise.
22210         * soft-fp/fixunssfdi.c: Likewise.
22211         * soft-fp/fixunssfsi.c: Likewise.
22212         * soft-fp/fixunssfti.c: Likewise.
22213         * soft-fp/fixunstfdi.c: Likewise.
22214         * soft-fp/fixunstfsi.c: Likewise.
22215         * soft-fp/fixunstfti.c: Likewise.
22216         * soft-fp/floatdidf.c: Likewise.
22217         * soft-fp/floatdisf.c: Likewise.
22218         * soft-fp/floatditf.c: Likewise.
22219         * soft-fp/floatsidf.c: Likewise.
22220         * soft-fp/floatsisf.c: Likewise.
22221         * soft-fp/floatsitf.c: Likewise.
22222         * soft-fp/floattidf.c: Likewise.
22223         * soft-fp/floattisf.c: Likewise.
22224         * soft-fp/floattitf.c: Likewise.
22225         * soft-fp/floatundidf.c: Likewise.
22226         * soft-fp/floatundisf.c: Likewise.
22227         * soft-fp/floatunsidf.c: Likewise.
22228         * soft-fp/floatunsisf.c: Likewise.
22229         * soft-fp/floatuntidf.c: Likewise.
22230         * soft-fp/floatuntisf.c: Likewise.
22231         * soft-fp/floatuntitf.c: Likewise.
22232         * soft-fp/fmadf4.c: Likewise.
22233         * soft-fp/fmasf4.c: Likewise.
22234         * soft-fp/fmatf4.c: Likewise.
22235         * soft-fp/gedf2.c: Likewise.
22236         * soft-fp/gesf2.c: Likewise.
22237         * soft-fp/getf2.c: Likewise.
22238         * soft-fp/ledf2.c: Likewise.
22239         * soft-fp/lesf2.c: Likewise.
22240         * soft-fp/letf2.c: Likewise.
22241         * soft-fp/muldf3.c: Likewise.
22242         * soft-fp/mulsf3.c: Likewise.
22243         * soft-fp/multf3.c: Likewise.
22244         * soft-fp/negdf2.c: Likewise.
22245         * soft-fp/negsf2.c: Likewise.
22246         * soft-fp/negtf2.c: Likewise.
22247         * soft-fp/op-1.h: Likewise.
22248         * soft-fp/op-2.h: Likewise.
22249         * soft-fp/op-4.h: Likewise.
22250         * soft-fp/op-8.h: Likewise.
22251         * soft-fp/op-common.h: Likewise.
22252         * soft-fp/quad.h: Likewise.
22253         * soft-fp/single.h: Likewise.
22254         * soft-fp/soft-fp.h: Likewise.
22255         * soft-fp/sqrtdf2.c: Likewise.
22256         * soft-fp/sqrtsf2.c: Likewise.
22257         * soft-fp/sqrttf2.c: Likewise.
22258         * soft-fp/subdf3.c: Likewise.
22259         * soft-fp/subsf3.c: Likewise.
22260         * soft-fp/subtf3.c: Likewise.
22261         * soft-fp/truncdfsf2.c: Likewise.
22262         * soft-fp/trunctfdf2.c: Likewise.
22263         * soft-fp/trunctfsf2.c: Likewise.
22264         * soft-fp/trunctfxf2.c: Likewise.
22265         * soft-fp/unorddf2.c: Likewise.
22266         * soft-fp/unordsf2.c: Likewise.
22267         * soft-fp/unordtf2.c: Likewise.
22269 2013-10-14   Ondřej Bílka  <neleai@seznam.cz>
22271         [BZ #15672]
22272         * misc/error.c (error_tail): Fix possible buffer overflow.
22274 2013-10-14  Aurelien Jarno  <aurelien@aurel32.net>
22276         [BZ #13028]
22277         * res_send.c(__libc_res_nsend): Correctly copy the nameserver
22278         address.
22280 2013-10-14  P. J. McDermott  <pj@pehjota.net>
22282         [BZ #832]
22283         * elf/ldd.bash.in (try_trace): New function.  Delete previous code
22284         testing pipefail option.
22286 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
22288         * soft-fp/double.h: Indent preprocessor directives inside #if.
22289         * soft-fp/extended.h: Likewise.
22290         * soft-fp/op-2.h: Likewise.
22291         * soft-fp/op-4.h: Likewise.
22292         * soft-fp/op-common.h: Likewise.
22293         * soft-fp/quad.h: Likewise.
22294         * soft-fp/single.h: Likewise.
22295         * soft-fp/soft-fp.h: Likewise.
22297 2013-10-12   Yuri Chornoivan <yurchor@ukr.net>
22299         * iconv/iconv_prog.c: Fix typos.
22300         * stdio-common/psiginfo-data.h: Likewise.
22302 2013-10-12   Reuben Thomas <rrt@sc3d.org>
22304         [BZ #15764]
22305         * locale/setlocale.c: Fix typo.
22307 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
22309         [BZ #16036]
22310         * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
22311         signaling NaN arguments.
22312         * soft-fp/unordsf2.c (__unordsf2): Likewise.
22313         * soft-fp/unordtf2.c (__unordtf2): Likewise.
22315         [BZ #14910]
22316         * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
22317         unordered operands.
22318         * soft-fp/gesf2.c (__gesf2): Likewise.
22319         * soft-fp/getf2.c (__getf2): Likewise.
22320         * soft-fp/ledf2.c (__ledf2): Likewise.
22321         * soft-fp/lesf2.c (__lesf2): Likewise.
22322         * soft-fp/letf2.c (__letf2): Likewise.
22324         * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
22325         * soft-fp/eqsf2.c (__eqsf2): Likewise.
22326         * soft-fp/eqtf2.c (__eqtf2): Likewise.
22327         * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
22328         * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
22329         * soft-fp/fixdfti.c (__fixdfti): Likewise.
22330         * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
22331         * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
22332         * soft-fp/fixsfti.c (__fixsfti): Likewise.
22333         * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
22334         * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
22335         * soft-fp/fixtfti.c (__fixtfti): Likewise.
22336         * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
22337         * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
22338         * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
22339         * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
22340         * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
22341         * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
22342         * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
22343         * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
22344         * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
22345         * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
22346         * soft-fp/floatdisf.c (__floatdisf): Likewise.
22347         * soft-fp/floatsisf.c (__floatsisf): Likewise.
22348         * soft-fp/floattidf.c (__floattidf): Likewise.
22349         * soft-fp/floattisf.c (__floattisf): Likewise.
22350         * soft-fp/floattitf.c (__floattitf): Likewise.
22351         * soft-fp/floatundidf.c (__floatundidf): Likewise.
22352         * soft-fp/floatundisf.c (__floatundisf): Likewise.
22353         * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
22354         * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
22355         * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
22356         * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
22357         * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
22358         * soft-fp/gesf2.c (__gesf2): Likewise.
22359         * soft-fp/getf2.c (__getf2): Likewise.
22360         * soft-fp/ledf2.c (__ledf2): Likewise.
22361         * soft-fp/lesf2.c (__lesf2): Likewise.
22362         * soft-fp/letf2.c (__letf2): Likewise.
22364         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
22365         Undefine and redefine.
22366         [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
22367         [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
22368         [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
22369         * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
22370         (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22371         * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
22372         (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22373         * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
22374         (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22375         * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
22376         (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22377         * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
22378         (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22379         * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
22380         (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22382         [BZ #16032]
22383         * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
22384         without decrementing exponent if mantissa >= that for the
22385         denominator, not >.
22386         (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
22387         denominator, not >.  Decrement exponent in < case instead of
22388         incrementing in >= case.
22389         * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
22390         without decrementing exponent if mantissa >= that for the
22391         denominator, not >.
22393         * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
22394         computing saturated result for unsigned overflow.
22396 2013-10-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
22397             Jeff Law  <law@redhat.com>
22399         * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
22400         (atan2Mp): Add systemtap probe marker.
22401         * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
22402         (__ieee754_log): Add systemtap probe marker.
22403         * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
22404         (atanMp): Add systemtap probe marker.
22405         * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
22406         (tanMp): Add systemtap probe marker.
22407         * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
22408         (__slowexp): Add systemtap probe marker.
22409         * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
22410         (__slowpow): Add systemtap probe marker.
22411         * manual/probes.texi: Document probes.
22413 2013-10-11  Eric Biggers  <ebiggers3@gmail.com>
22415         [BZ #15362]
22416         * libio/fileops.c (_IO_new_file_write): Return count of bytes
22417         written.
22418         (_IO_new_file_xsputn): Don't return EOF if nothing has been
22419         written.
22420         * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
22421         written to buffer but not flushed.
22422         * libio/iofwrite_u.c:  Likewise.
22423         * libio/iopadn.c:  Return bytes returned even if EOF was
22424         encountered.
22425         * libio/iowpadn.c:  Likewise.
22426         * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
22427         if _IO_padn does not write the whole buffer.
22428         [!COMPILE_WPRINTF] (PAD): Likewise.
22430 2013-10-10  David S. Miller  <davem@davemloft.net>
22432         * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
22433         directory block.
22435 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
22437         * soft-fp/extendxftf2.c: Use copyright year range.  Use URL
22438         instead of FSF address.
22439         * soft-fp/fixdfti.c: Likewise.
22440         * soft-fp/fixsfti.c: Likewise.
22441         * soft-fp/fixtfti.c: Likewise.
22442         * soft-fp/fixunsdfti.c: Likewise.
22443         * soft-fp/fixunssfti.c: Likewise.
22444         * soft-fp/fixunstfti.c: Likewise.
22445         * soft-fp/floattidf.c: Likewise.
22446         * soft-fp/floattisf.c: Likewise.
22447         * soft-fp/floattitf.c: Likewise.
22448         * soft-fp/floatuntidf.c: Likewise.
22449         * soft-fp/floatuntisf.c: Likewise.
22450         * soft-fp/floatuntitf.c: Likewise.
22451         * soft-fp/trunctfxf2.c: Likewise.
22453         * soft-fp/extendxftf2.c: New file.  Copied from libgcc.
22454         * soft-fp/fixdfti.c: Likewise.
22455         * soft-fp/fixsfti.c: Likewise.
22456         * soft-fp/fixtfti.c: Likewise.
22457         * soft-fp/fixunsdfti.c: Likewise.
22458         * soft-fp/fixunssfti.c: Likewise.
22459         * soft-fp/fixunstfti.c: Likewise.
22460         * soft-fp/floattidf.c: Likewise.
22461         * soft-fp/floattisf.c: Likewise.
22462         * soft-fp/floattitf.c: Likewise.
22463         * soft-fp/floatuntidf.c: Likewise.
22464         * soft-fp/floatuntisf.c: Likewise.
22465         * soft-fp/floatuntitf.c: Likewise.
22466         * soft-fp/trunctfxf2.c: Likewise.
22468 2013-10-10  David S. Miller  <davem@davemloft.net>
22470         * sysdeps/sparc/fpu/libm-test-ulps: Update.
22472 2013-10-10  Joseph Myers  <joseph@codsourcery.com>
22474         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
22475         (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
22476         [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
22477         [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
22478         [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
22479         [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
22480         [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
22482         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
22483         for NaNs before doing comparisons on argument.
22484         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
22485         Likewise.
22487 2013-10-10  Will Newton  <will.newton@linaro.org>
22489         * malloc/hooks.c (memalign_check): Ensure the value of bytes
22490         passed to _int_memalign does not overflow.
22492 2013-10-10  Torvald Riegel  <triegel@redhat.com>
22494         * scripts/bench.pl: Add include-sources directive.
22495         * benchtests/README: Update documentation.
22497 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
22499         * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
22500         * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
22501         instead of FP_INIT_ROUNDMODE.
22502         * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
22503         * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
22505         [BZ #16034]
22506         * soft-fp/op-common.h (_FP_NEG): Document input as raw.  Do not
22507         copy class of input value.
22508         * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing.  Do
22509         not handle exceptions.
22510         * soft-fp/negsf2.c (__negsf2): Likewise.
22511         * soft-fp/negtf2.c (__negtf2): Likewise.
22512         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
22514 2013-10-09  Joseph Myers  <joseph@codesourcery.com>
22516         * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
22517         semicolon.  From Linux kernel.
22519 2013-10-09  Adam Buchbinder  <adam.buchbinder@gmail.com>
22521         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
22523 2013-10-08  Yogesh Chaudhari  <mr.yogesh@gmail.com>
22525         [BZ #156]
22526         * manual/socket.texi: Added statement about buffer
22527         for gethostbyname2_r.
22529 2013-10-08  Ondřej Bílka  <neleai@seznam.cz>
22531         * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
22532         Use .p2align directive instead, throughout.
22533         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
22534         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
22535         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
22536         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
22537         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
22538         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
22539         * sysdeps/x86_64/strchr.S: Likewise.
22540         * sysdeps/x86_64/strrchr.S: Likewise.
22542 2013-10-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
22544         * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
22546         * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
22548         * sysdeps/generic/math_private.h (__mpsin1): Remove
22549         declaration.
22550         (__mpcos1): Likewise.
22551         (__mpsin): New argument __range_reduce.
22552         (__mpcos): Likewise.
22553         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
22554         (slow): Use __mpsin and __mpcos.
22555         (slow1): Likewise.
22556         (slow2): Likewise.
22557         (sloww): Likewise.
22558         (sloww1): Likewise.
22559         (sloww2): Likewise.
22560         (bsloww): Likewise.
22561         (bsloww1): Likewise.
22562         (bsloww2): Likewise.
22563         (cslow2): Likewise.
22564         (csloww): Likewise.
22565         (csloww1): Likewise.
22566         (csloww2): Likewise.
22567         * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
22568         range_reduce.  Merge in __mpsin1.
22569         (__mpcos): Likewise.
22570         (__mpsin1): Remove.
22571         (__mpcos1): Likewise.
22573 2013-10-07  Joseph Myers  <joseph@codesourcery.com>
22575         * locale/loadlocale.c (_nl_intern_locale_data): Use
22576         LOCFILE_ALIGNED_P.
22577         * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
22578         LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
22579         * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
22580         obstack data is appropriately aligned.
22581         (obstack_int32_grow_fast): Likewise.
22582         * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
22583         * locale/programs/locfile.c (add_locale_uint32): Likewise.
22584         (add_locale_uint32_array): Likewise.
22586 2013-10-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
22588         * benchtests/Makefile: Remove ARGLIST and RET variables.
22589         ($(objpfx)bench-%.c): Pass only function name to the script.
22590         * benchtests/README: Update documentation.
22591         * benchtests/acos-inputs: Add new directives.
22592         * benchtests/acosh-inputs: Likewise.
22593         * benchtests/asin-inputs: Likewise.
22594         * benchtests/asinh-inputs: Likewise.
22595         * benchtests/atan-inputs: Likewise.
22596         * benchtests/atanh-inputs: Likewise.
22597         * benchtests/cos-inputs: Likewise.
22598         * benchtests/cosh-inputs: Likewise.
22599         * benchtests/exp-inputs: Likewise.
22600         * benchtests/log-inputs: Likewise.
22601         * benchtests/pow-inputs: Likewise.
22602         * benchtests/rint-inputs: Likewise.
22603         * benchtests/sin-inputs: Likewise.
22604         * benchtests/sinh-inputs: Likewise.
22605         * benchtests/tan-inputs: Likewise.
22606         * benchtests/tanh-inputs: Likewise.
22607         * scripts/bench.pl: Add support for new directives.
22609 2013-10-07  Alan Modra  <amodra@gmail.com>
22611         * README: Fix careless merge.
22613 2013-10-05  Alan Modra  <amodra@gmail.com>
22615         * NEWS: Mention powerpc64le support and bugs fixed.
22616         * README: Both big-endian and little-endian powerpc64 supported.
22618 2013-10-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
22620         * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
22621         (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
22622         (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
22623         _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
22625 2013-10-04  Ryan S. Arnold  <ryan.arnold@linaro.org>
22627         * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
22628         match prototype.
22630 2013-10-04  Joseph Myers  <joseph@codesourcery.com>
22632         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
22633         Move -mhard-float appending from
22634         ports/sysdeps/powerpc/powerpc32/Makefile.
22635         [$(with-fp) = yes] (ASFLAGS): Likewise.
22636         [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
22637         * sysdeps/powerpc/nofpu: Move directory from
22638         ports/sysdeps/powerpc/nofpu.
22639         * sysdeps/powerpc/soft-fp: Move directory from
22640         ports/sysdeps/powerpc/soft-fp.
22641         * sysdeps/powerpc/powerpc32/405: Move directory from
22642         ports/sysdeps/powerpc/powerpc32/405.
22643         * sysdeps/powerpc/powerpc32/440: Move directory from
22644         ports/sysdeps/powerpc/powerpc32/440.
22645         * sysdeps/powerpc/powerpc32/464: Move directory from
22646         ports/sysdeps/powerpc/powerpc32/464.
22647         * sysdeps/powerpc/powerpc32/476: Move directory from
22648         ports/sysdeps/powerpc/powerpc32/476.
22649         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
22650         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
22651         * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
22652         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
22653         * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
22654         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
22655         * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
22656         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
22657         * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
22658         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
22659         * README: Update for powerpc-*-linux-gnu software floating point
22660         support in libc.
22662         * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
22663         case to powerpc/powerpc32*.
22664         * sysdeps/unix/sysv/linux/configure: Regenerated.
22666         * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
22667         (_FPU_MASK_OM): Define as 0x04.
22668         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
22669         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
22670         0x00c10080.
22671         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
22672         0x0000003c.
22673         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
22675         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
22676         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
22677         getcontext_e500.
22678         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
22679         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
22680         setcontext_e500.
22681         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
22682         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
22683         and setcontext_e500.
22685 2013-10-04  Chris Leonard  <cjl@sugarlabs,.org>
22687         * locale/iso-3166.def: Update iso-1366.def and related occurrences
22689 2013-10-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
22691         * manual/threads.texi (Default Thread Attributes): Fix typo.
22693 2013-10-04  Will Newton  <will.newton@linaro.org>
22695         * malloc/Makefile: Add tst-memalign.
22696         * malloc/tst-memalign.c: New file.
22698         * malloc/tst-posix_memalign.c: Add comments.
22699         (do_test): Add comments and call free on all potentially
22700         allocated pointers. Add space after cast.
22702         * malloc/tst-pvalloc.c: Add comments.
22703         (do_test): Add comments and call free on all potentially
22704         allocated pointers. Remove duplicate check for NULL pointer.
22705         Add space after cast.
22707         * malloc/tst-valloc.c: Add comments.
22708         (do_test): Add comments and call free on all potentially
22709         allocated pointers. Remove duplicate check for NULL pointer.
22710         Add space after cast.
22712 2013-10-04  Alan Modra  <amodra@gmail.com>
22714         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
22715         Use stdint types in rather than __attribute__((mode())).
22716         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
22718 2013-10-04  Alan Modra  <amodra@gmail.com>
22720         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
22721         Correct handling of unaligned relocs for little-endian.
22722         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
22724 2013-10-04  Alan Modra  <amodra@gmail.com>
22726         * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
22727         * configure: Regenerate.
22728         * nptl/shlib-versions: Powerpc*le starts at 2.18.
22729         * shlib-versions: Likewise.
22731 2013-10-04  Alan Modra  <amodra@gmail.com>
22733         * string/tester.c (test_memrchr): Increment reported test cycle.
22735 2013-10-04  Alan Modra  <amodra@gmail.com>
22737         * string/test-memcpy.c (do_one_test): When reporting errors, print
22738         string address and don't overrun end of string.
22740 2013-10-04  Alan Modra  <amodra@gmail.com>
22742         * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
22743         insrdi.  Make better use of reg selection to speed exit slightly.
22744         Schedule entry path a little better.  Remove useless "are we done"
22745         checks on entry to main loop.  Handle wrapping around zero address.
22746         Correct main loop count.  Handle single left-over word from main
22747         loop inline rather than by using loop_small.  Remove extra word
22748         case in loop_small caused by wrong loop count.  Add little-endian
22749         support.
22750         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
22751         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.  Use proper
22752         cache hint.
22753         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
22754         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
22755         support.  Avoid rlwimi.
22756         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
22758 2013-10-04  Alan Modra  <amodra@gmail.com>
22760         * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
22761         insrdi.  Formatting.
22762         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
22763         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
22764         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
22765         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
22766         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
22767         * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
22769 2013-10-04  Alan Modra  <amodra@gmail.com>
22771         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
22772         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
22773         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
22774         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
22775         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
22776         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
22777         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
22778         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
22779         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise.  Make better
22780         use of regs.  Use power7 mtocrf.  Tidy function tails.
22782 2013-10-04  Alan Modra  <amodra@gmail.com>
22784         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
22785         Formatting.  Consistently use rXXX register defines or rN defines.
22786         Use early exit labels that avoid restoring unused non-volatile regs.
22787         Make cr field use more consistent with rWORDn compares.  Rename
22788         regs used as shift registers for unaligned loop, using rN defines
22789         for short lifetime/multiple use regs.
22790         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
22791         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.  Exit with
22792         addi 1,1,64 to pop stack frame.  Simplify return value code.
22793         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
22795 2013-10-04  Alan Modra  <amodra@gmail.com>
22797         * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
22798         support.  Correct typos, formatting.  Optimize tail.  Use insrdi
22799         rather than rlwimi.
22800         * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
22801         * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
22802         little-endian support.  Correct typos.
22803         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise.  Use insrdi
22804         rather than rlwimi.
22805         * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define.  Use
22806         in loop and entry code to keep "and." results.
22807         (strchr): Add little-endian support.  Comment.  Move cntlzd
22808         earlier in tail.
22809         * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
22811 2013-10-04  Alan Modra  <amodra@gmail.com>
22813         * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
22814         * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
22815         * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
22816         * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
22818 2013-10-04  Alan Modra  <amodra@gmail.com>
22820         * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
22821         (rTMP): Define as r11.
22822         (strcmp): Add little-endian support.  Optimise tail.
22823         * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
22824         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
22825         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
22826         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
22827         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
22828         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
22829         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
22831 2013-10-04  Alan Modra  <amodra@gmail.com>
22833         * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
22834         little-endian support.  Remove unnecessary "are we done" tests.
22835         Handle "s" wrapping around zero and extremely large "size".
22836         Correct main loop count.  Handle single left-over word from main
22837         loop inline rather than by using small_loop.  Correct comments.
22838         Delete "zero" tail, use "end_max" instead.
22839         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
22841 2013-10-04  Alan Modra  <amodra@gmail.com>
22843         * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
22844         support.  Don't branch over align.
22845         * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
22846         * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
22847         support.  Rearrange tmp reg use to suit.  Comment.
22848         * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
22850 2013-10-04  Alan Modra  <amodra@gmail.com>
22852         * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
22854 2013-10-04  Alan Modra  <amodra@gmail.com>
22856         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
22857         conditional form of branch and link when obtaining pc.
22858         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
22860 2013-10-04  Alan Modra  <amodra@gmail.com>
22862         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
22863         HIWORD/LOWORD.
22864         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
22865         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
22867 2013-10-04  Alan Modra  <amodra@gmail.com>
22869         * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
22870         * sysdeps/powerpc/novmx-longjmp.c: Likewise.
22871         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
22872         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
22873         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
22874         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
22875         * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
22876         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
22877         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
22878         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
22880 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
22881             Alistair Popple <alistair@ozlabs.au.ibm.com>
22882             Alan Modra <amodra@gmail.com>
22884         [BZ #15723]
22885         * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
22886         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
22887         _dl_hwcap access for little-endian.
22888         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.  Don't
22889         destroy vmx regs when saving unaligned.
22890         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
22891         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save.  Don't
22892         destroy vmx regs when saving unaligned.
22894 2013-10-04  Alan Modra  <amodra@gmail.com>
22896         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
22897         Don't use a union to pack hi/low value.
22899 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
22901         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
22902         for little-endian.
22903         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
22904         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
22905         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
22906         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
22907         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
22909 2013-10-04  Alan Modra  <amodra@gmail.com>
22911         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
22912         constants to usual value for .cst8 section, and remove redundant
22913         high address load.
22914         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
22915         constant for 0x1p52.  Load little-endian words of double from
22916         correct stack offsets.
22918 2013-10-04  Alan Modra  <amodra@gmail.com>
22920         * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
22921         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
22922         words of double from correct stack offsets.
22923         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
22924         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
22925         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
22926         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
22927         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
22928         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
22929         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
22930         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
22931         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
22932         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
22933         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
22934         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
22935         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
22936         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
22937         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
22938         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
22939         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
22941 2013-10-04  Alan Modra  <amodra@gmail.com>
22943         * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
22944         64-bit int/double union.
22945         (_FPU_SETCW): Likewise.
22946         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
22947         (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
22949 2013-10-04  Alan Modra  <amodra@gmail.com>
22951         * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
22952         * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
22954 2013-10-04  Alan Modra  <amodra@gmail.com>
22956         * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
22957         use vector int constants.
22958         (__float_and_test24, __float_and8, __float_get_exp): Likewise.
22960 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
22962         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
22963         array with long long.
22964         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
22965         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
22966         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
22967         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
22968         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
22969         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
22970         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
22971         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
22972         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
22973         * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
22974         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
22975         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
22976         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
22978 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
22980         * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
22981         (__signbit): Likewise.  Correct for little-endian.
22982         (__signbitl): Call __signbit.
22983         (lrint): Correct for little-endian.
22984         (lrintf): Call lrint.
22986 2013-10-04  Alan Modra  <amodra@gmail.com>
22988         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
22989         union 32-bit int array member with 64-bit int array.
22990         (t515, tm256): Double rather than long double.
22991         (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
22993 2013-10-04  Alan Modra  <amodra@gmail.com>
22995         * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
22996         Delete.
22997         (IEEE854_LONG_DOUBLE_BIAS): Delete.
22998         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
22999         version of math_ldbl.h.
23001 2013-10-04  Alan Modra  <amodra@gmail.com>
23003         [BZ #15734], [BZ #15735]
23004         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
23005         all uses of ieee875 long double macros and unions.  Simplify test
23006         for 0.0L.  Correct |x|<|y| and |x|=|y| test.  Use
23007         ldbl_extract_mantissa value for ix,iy exponents.  Properly
23008         normalize after ldbl_extract_mantissa, and don't add hidden bit
23009         already handled.  Don't treat low word of ieee854 mantissa like
23010         low word of IBM long double and mask off bit when testing for
23011         zero.
23012         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
23013         all uses of ieee875 long double macros and unions.  Simplify tests
23014         for 0.0L and inf.  Correct double adjustment of k.  Delete dead code
23015         adjusting ha,hb.  Simplify code setting kld.  Delete two600 and
23016         two1022, instead use their values.  Recognise that tests for large
23017         "a" and small "b" are mutually exclusive.  Rename vars.  Comment.
23018         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
23019         Rewrite all uses of ieee875 long double macros and unions.  Simplify
23020         test for 0.0L and nan.  Correct negation.
23021         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
23022         ieee875 long double macros and unions.  Correct output for large
23023         magnitude x.  Correct absolute value calculation.
23024         (__erfcl): Likewise.
23025         * math/libm-test.inc: Add tests for errors discovered in IBM long
23026         double versions of fmodl, remainderl, erfl and erfcl.
23028 2013-10-04  Alan Modra  <amodra@gmail.com>
23030         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
23031         all uses of ieee854 long double macros and unions.  Simplify tests
23032         for long doubles that are fully specified by the high double.
23033         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
23034         Likewise.
23035         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
23036         Remove dead code too.
23037         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
23038         (__ieee754_ynl): Likewise.
23039         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
23040         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
23041         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
23042         Remove dead code too.
23043         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
23044         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
23045         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
23046         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
23047         Simplify.
23048         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
23049         Simplify.
23050         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
23051         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
23052         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
23053         Comment on variable precision.
23054         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
23055         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
23056         Likewise.
23057         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
23058         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
23059         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
23060         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
23061         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
23063 2013-10-04  Alan Modra  <amodra@gmail.com>
23065         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
23066         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
23067         all uses of ieee854 long double macros and unions.
23068         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
23069         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
23070         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
23071         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
23072         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
23073         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
23074         Likewise.
23075         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
23076         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
23077         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
23078         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
23079         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
23080         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
23081         Simplify sign and nan test too.
23082         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
23083         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
23084         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
23085         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
23086         Likewise.
23087         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
23088         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
23089         Likewise.
23090         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
23091         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
23092         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
23093         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
23094         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
23095         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
23097 2013-10-04  Alan Modra  <amodra@gmail.com>
23099         * stdio-common/printf_size.c (__printf_size): Don't use
23100         union ieee854_long_double in fpnum union.
23101         * stdio-common/printf_fphex.c (__printf_fphex): Likewise.  Use
23102         signbit macro to retrieve sign from long double.
23103         * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
23104         retrieve sign from long double.
23105         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
23106         * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
23107         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
23108         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
23109         * math/test-misc.c (main): Don't use union ieee854_long_double.
23111 2013-10-04  Alan Modra  <amodra@gmail.com>
23113         [BZ #15680]
23114         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
23115         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
23116         (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
23117         calculation.  Remove unnecessary test for denormal exponent.
23118         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
23119         Correct handling of denormals.  Avoid undefined shift behaviour.
23120         Correct normalisation of low mantissa when low double is denormal.
23121         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
23122         (ldbl_extract_mantissa): Likewise.  Comment.  Use uint64_t* for hi64.
23123         (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
23124         Correct normalisation of low mantissa.  Test for overflow of high
23125         mantissa and normalise.
23126         (ldbl_nearbyint): Use more readable constant for two52.
23127         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
23128         (__mpn_construct_long_double): Fix test for overflow of high
23129         mantissa and correct normalisation.  Avoid undefined shift.
23131 2013-10-04  Alan Modra  <amodra@gmail.com>
23133         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
23134         (union ibm_extended_long_double): Define as an array of ieee754_double.
23135         (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
23136         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
23137         to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
23138         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
23139         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
23140         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
23141         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
23142         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
23143         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
23144         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
23145         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
23147 2013-10-03  Joseph Myers  <joseph@codesourcery.com>
23149         * locale/programs/locarchive.c (add_locale): Use constant 4096 for
23150         page size instead of calling getpagesize.
23152         * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
23153         (LOCFILE_ALIGN_MASK): Likewise.
23154         (LOCFILE_ALIGN_UP): Likewise.
23155         (LOCFILE_ALIGNED_P): Likewise.
23156         * locale/programs/ld-collate.c (collate_output): Use the new
23157         macros instead of __alignof__ (int32_t).
23158         * locale/weight.h (findidx): Likewise.
23160 2013-10-03  Ondřej Bílka  <neleai@seznam.cz>
23162         [BZ #431]
23163         * manual/string.texi: Fix strncat and wcsncat.
23165 2013-10-03  Brooks Moses  <bmoses@google.com>
23167         [BZ #15915]
23168         * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
23169         * Makerules: ...here, and adjust associated comments.
23171 2013-10-02  Will Newton  <will.newton@linaro.org>
23173         * malloc/Makefile: Add tst-pvalloc.
23174         * malloc/tst-pvalloc.c: New file.
23176 2013-10-02  Will Newton  <will.newton@linaro.org>
23178         * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
23179         improve test coverage.
23181 2013-10-02  Will Newton  <will.newton@linaro.org>
23183         * malloc/Makefile: Add tst-posix_memalign.
23184         * malloc/tst-posix_memalign.c: New file.
23186 2013-10-01  Eric Blake  <eblake@redhat.com>
23188         * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
23189         Use __THROWNL rather than __THROW on static functions.
23191 2013-09-30  Petr Machata  <pmachata@redhat.com>
23193         * elf/elf.h (R_AARCH64_ABS16): New macro.
23194         (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
23195         (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
23196         (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
23197         (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
23198         (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
23199         (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
23200         (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
23201         (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
23202         (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
23203         (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
23204         (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
23205         (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
23206         (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
23207         (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
23208         (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
23209         (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
23210         (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
23211         (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
23212         (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
23213         (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
23214         (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
23215         (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
23216         (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
23217         (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
23218         (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
23219         (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
23220         (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
23221         (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
23222         (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
23223         (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
23224         (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
23225         (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
23226         (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
23227         (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
23228         (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
23229         (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
23230         (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
23231         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
23232         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
23233         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
23234         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
23235         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
23236         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
23237         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
23238         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
23239         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
23240         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
23241         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
23242         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
23243         (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
23244         (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
23245         (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
23246         (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
23247         (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
23248         (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
23249         (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
23250         (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
23251         (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
23252         (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
23253         (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
23254         (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
23255         (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
23256         (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
23257         (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
23258         (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
23259         (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
23260         (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
23261         (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
23262         (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
23263         (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
23264         (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
23265         (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
23266         (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
23267         (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
23268         (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
23269         (R_AARCH64_TLSDESC_OFF_G1): Likewise.
23270         (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
23271         (R_AARCH64_TLSDESC_LDR): Likewise.
23272         (R_AARCH64_TLSDESC_ADD): Likewise.
23273         (R_AARCH64_TLSDESC_CALL): Likewise.
23275 2013-09-30  Andreas Schwab  <schwab@suse.de>
23277         [BZ #15048]
23278         * nscd/aicache.c (addhstaiX): Properly use the cache variable for
23279         the nss database lookup.
23280         * nscd/initgrcache.c (addinitgroupsX): Likewise.
23281         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
23283 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
23285         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
23287 2013-09-28  P. J. McDermott  <pj@pehjota.net>
23289         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
23290         ${Bash-specific parameter/pattern/string} parameter expansion.
23291         * sysdeps/unix/make-syscalls.sh: Likewise.
23293 2013-09-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
23295         * sysdeps/sh/stackguard-macros.h: New file.
23297 2013-09-26  Ondřej Bílka  <neleai@seznam.cz>
23299         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
23300         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
23301         * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
23302         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
23303         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
23304         * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
23306 2013-09-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23308         * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
23309         Fix thread ID register.
23311 2013-09-25  Joseph Myers  <joseph@codesourcery.com>
23313         * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
23314         [POSIX || UNIX98]: Require rather than permitting all symbols from
23315         <time.h>.
23316         [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
23317         element of struct sched_param.
23318         [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
23319         [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
23320         [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
23321         [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
23322         constant.
23324 2013-09-24  Olivier Langlois  <olivier@olivierlanglois.net>
23326         * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
23327         argument calculation.
23329 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
23331         * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
23332         Expect macro.
23333         [POSIX] (pthread_attr_t): Do not require type.
23334         [POSIX] (pthread_cond_t): Likewise.
23335         [POSIX] (pthread_condattr_t): Likewise.
23336         [POSIX] (pthread_key_t): Likewise.
23337         [POSIX] (pthread_mutex_t): Likewise.
23338         [POSIX] (pthread_mutexattr_t): Likewise.
23339         [POSIX] (pthread_once_t): Likewise.
23340         [POSIX] (pthread_t): Likewise.
23341         [POSIX-based standards] (pthread_atfork): Expect function.
23343 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
23344             Richard Sandiford  <richard@codesourcery.com>
23346         * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
23347         (swap_endianness_p): New extern variable.
23348         (set_big_endian): New inline function.
23349         (maybe_swap_uint32): Likewise.
23350         (maybe_swap_uint32_array): Likewise.
23351         (maybe_swap_uint32_obstack): Likewise.
23352         * locale/programs/locfile.c: Include <stdbool.h>.
23353         (swap_endianness_p): New variable.
23354         (add_locale_uint32): Call maybe_swap_uint32.
23355         (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
23356         (write_locale_data): Call maybe_swap_uint32_array.
23357         * locale/programs/ld-collate.c (obstack_int32_grow): Call
23358         maybe_swap_uint32.
23359         (obstack_int32_grow_fast): Likewise.
23360         (output_weightwc): Call maybe_swap_uint32_obstack.
23361         (collate_output): Likewise.
23362         * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
23363         (OPT_LITTLE_ENDIAN): Likewise.
23364         (options): Add --little-endian and --big-endian options.
23365         (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
23366         * locale/programs/locarchive.c: Include "locfile.h".
23367         (GET): New macro.
23368         (SET): Likewise.
23369         (INC): Likewise.
23370         (create_archive): Use the new macros to access fields of
23371         structures directly mapped from or written to locale archives.
23372         (oldlocrecentcmp): Likewise.
23373         (enlarge_archive): Likewise.
23374         (insert_name): Likewise.
23375         (add_alias): Likewise.
23376         (add_locale): Likewise.
23377         (delete_locales_from_archive): Likewise.
23378         (show_archive_content): Likewise.
23379         (add_locale_to_archive): Likewise.  Use maybe_swap_uint32 on
23380         locale data.
23382 2013-09-24  Roland McGrath  <roland@hack.frob.com>
23384         * manual/freemanuals.texi: Updated from (newly) canonical copy at
23385         http://www.gnu.org/doc/freemanuals.texi.
23386         * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
23388 2013-09-24  Will Newton  <will.newton@linaro.org>
23390         * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
23391         macro.
23393 2013-09-23  Joseph Myers  <joseph@codesourcery.com>
23395         * locale/hashval.h (compute_hashval): Interpret bytes of key as
23396         unsigned char.
23398 2013-09-23  Maciej W. Rozycki  <macro@codesourcery.com>
23400         * manual/threads.texi (POSIX Threads): Fix a typo.
23402 2013-09-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
23404         [BZ #14547]
23405         * string/tst-strcoll-overflow.c: New test case.
23406         * string/Makefile (xtests): Add tst-strcoll-overflow.
23407         * string/strcoll_l.c (STRCOLL): Skip allocating memory for
23408         cache if string sizes may cause integer overflow.
23410         [BZ #14547]
23411         * string/strcoll_l.c (coll_seq): New members rule, idx,
23412         save_idx and back_us.
23413         (get_next_seq_nocache): New function.
23414         (do_compare_nocache): New function.
23415         (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
23416         when malloc fails.
23418 2013-09-23  Carlos O'Donell  <carlos@redhat.com>
23420         [BZ #15754]
23421         * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
23422         __pointer_chk_guard_local, otherwise __pointer_chk_guard.
23423         * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
23425         [BZ #15754]
23426         * elf/Makefile (tests): Add tst-ptrguard1.
23427         (tests-static): Add tst-ptrguard1-static.
23428         (tst-ptrguard1-ARGS): Define.
23429         (tst-ptrguard1-static-ARGS): Define.
23430         * elf/tst-ptrguard1.c: New file.
23431         * elf/tst-ptrguard1-static.c: New file.
23432         * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
23433         * sysdeps/i386/stackguard-macros.h: Likewise.
23434         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
23435         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
23436         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
23437         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
23438         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
23439         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
23441 2013-09-23  Hector Marco  <hecmargi@upv.es>
23442             Ismael Ripoll  <iripoll@disca.upv.es>
23443             Carlos O'Donell  <carlos@redhat.com>
23445         [BZ #15754]
23446         * sysdeps/generic/stackguard-macros.h: Define
23447         __pointer_chk_guard_local and POINTER_CHK_GUARD.
23448         * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
23449         Define __pointer_chk_guard_local.
23450         (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
23451         Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
23453 2013-09-15  Vinitha Vijayan <vinitha.vijayann@gmail.com>
23455         [BZ #15859]
23456         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
23458 2013-09-20  Andreas Schwab  <schwab@linux-m68k.org>
23460         * include/string.h (__ffs): Declare as hidden.
23461         * string/ffs.c (__ffs): Define as hidden.
23462         * sysdeps/i386/ffs.c (__ffs): Likewise.
23463         * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
23464         * sysdeps/powerpc/ffs.c (__ffs): Likewise.
23465         * sysdeps/s390/ffs.c (__ffs): Likewise.
23466         * sysdeps/x86_64/ffs.c (__ffs): Likewise.
23468 2013-09-20  Alexandre Oliva <aoliva@redhat.com>
23470         * NEWS: Mention malloc probes.
23472         * malloc/arena.c (new_heap): New memory_heap_new probe.
23473         (grow_heap): New memory_heap_more probe.
23474         (shrink_heap): New memory_heap_less probe.
23475         (heap_trim): New memory_heap_free probe.
23476         * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
23477         (systrim): New memory_sbrk_less probe.
23478         * manual/probes.texi: Document them.
23480         * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
23481         * manual/probes.texi: Document it.
23483         * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
23484         (__libc_realloc): Add memory_realloc_retry probe.
23485         (__libc_memalign): Add memory_memalign_retry probe.
23486         (__libc_valloc): Add memory_valloc_retry probe.
23487         (__libc_pvalloc): Add memory_pvalloc_retry probe.
23488         (__libc_calloc): Add memory_calloc_retry probe.
23489         * manual/probes.texi: Document them.
23491         * malloc/arena.c (get_free_list): Add probe
23492         memory_arena_reuse_free_list.
23493         (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
23494         and memory_arena_reuse.
23495         (arena_get2) [!PER_THREAD]: Likewise.
23496         * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
23497         memory_arena_reuse_realloc.
23498         * manual/probes.texi: Document them.
23500         * malloc/malloc.c (__libc_free): Add
23501         memory_mallopt_free_dyn_thresholds probe.
23502         (__libc_mallopt): Add multiple memory_mallopt probes.
23503         * manual/probes.texi: Document them.
23505         * malloc/malloc.c: Include stap-probe.h.
23506         (__libc_mallopt): Add memory_mallopt probe.
23507         * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
23508         * manual/probes.texi: New.
23509         * manual/Makefile (chapters): Add probes.
23510         * manual/threads.texi: Set next node.
23512 2013-09-19  Wei-Lun Chao  <bluebat@member.fsf.org>
23514         [BZ #15963, #13985]
23515         * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
23516         czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
23517         Add `Chinese' to `nan' entry name.
23519 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
23521         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
23522         (POLYNOMIAL): Likewise.
23523         (TAYLOR_SINCOS): Likewise.
23524         (TAYLOR_SLOW): Likewise.
23525         (__sin): Use TAYLOR_SINCOS.
23526         (__cos): Likewise.
23527         (slow): Use TAYLOR_SLOW.
23528         (sloww): Likewise.
23529         (bsloww): Likewise.
23530         (csloww): Likewise.
23532 2013-09-19  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
23534         * stdlib/strtod_l.c: Fix buffer overrun.
23536 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
23538         * benchtests/Makefile (bench): Add sincos.
23539         * benchtests/bench-sincos.c: New file.
23541         * math/libm-test.inc (cos_test_data): New test inputs.
23542         (sin_test_data): Likewise.
23544         * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
23545         macro.
23546         (__sin): Use it.
23547         (__cos): Likewise.
23548         (slow1): Likewise.
23549         (slow2): Likewise.
23550         (sloww1): Likewise.
23551         (sloww2): Likewise.
23552         (bsloww1): Likewise.
23553         (bsloww2): Likewise.
23554         (cslow2): Likewise.
23555         (csloww1): Likewise.
23556         (csloww2): Likewise.
23558         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
23559         function.
23560         (__sin): Use it.
23561         (__cos): Likewise.
23563         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
23564         gotos.
23565         (__cos): Likewise.
23567 2013-09-18  Maciej W. Rozycki  <macro@codesourcery.com>
23569         * config.h.in (HAVE_MIPS_NAN2008): New macro.
23570         * elf/elf.h (EF_MIPS_NAN2008): Likewise.
23571         * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
23572         (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
23573         (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
23574         * elf/cache.c (print_entry): Handle the new cache flags.
23576 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
23577             Aldy Hernandez  <aldyh@redhat.com>
23579         * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
23580         Change condition to [_SOFT_FLOAT].
23581         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
23582         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
23583         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
23584         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
23585         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
23586         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
23587         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
23588         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
23589         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
23590         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
23591         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
23592         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
23593         [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
23594         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
23595         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
23596         [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
23597         declaration.
23599 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
23601         * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
23602         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
23603         (__longjmp): Use LOAD_GP to load saved GPRs.
23604         * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
23605         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
23606         (__sigsetjmp): Use SAVE_GP to save GPRs.
23608         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
23609         Do not append -msoft-float.
23610         [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
23612 2013-09-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
23614         * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
23616 2013-09-17  Joseph Myers  <joseph@codesourcery.com>
23618         [BZ #15966]
23619         * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
23620         (_FPU_GETCW): Use initial "__" on variable and field names but not
23621         on macro parameter name.
23622         [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise.  Use
23623         parentheses around reference to macro parameter.
23625 2013-09-13  Richard Sandiford  <richard@codesourcery.com>
23627         * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
23628         prototype.
23629         (ctype_startup): Use uint32_t in cast and sizeof for
23630         ctype->charnames.
23632 2013-09-11  Jia Liu  <proljc@gmail.com>
23634         * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
23635         __daddr_t_defined.
23636         [__FreeBSD__]: Likewise.
23638 2013-09-11  Ondřej Bílka  <neleai@seznam.cz>
23640         * sysdeps/x86_64/multiarch/ifunc-impl-list.c
23641         (__libc_ifunc_impl_list): Remove: __strchr_sse42.
23642         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
23643         (strchr): Remove __strchr_sse42 ifunc selection.
23644         * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
23645         * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
23647 2013-09-11  Will Newton  <will.newton@linaro.org>
23649         * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
23650         parameter to RES. Remove hardcoded 1000 value.
23651         * benchtests/bench-skeleton.c (main): Pass RES parameter
23652         to TIMING_INIT and multiply result by 1000.
23654 2013-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23656         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
23658 2013-09-11  Andreas Schwab  <schwab@suse.de>
23660         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
23661         if not defined.
23662         (O_TMPFILE) [__USE_GNU]: Define.
23663         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
23664         Define.
23666 2013-09-11  Will Newton  <will.newton@linaro.org>
23668         [BZ #15857]
23669         * malloc/malloc.c (__libc_memalign): Check the value of bytes
23670         does not overflow.
23672 2013-09-11  Will Newton  <will.newton@linaro.org>
23674         [BZ #15856]
23675         * malloc/malloc.c (__libc_valloc): Check the value of bytes
23676         does not overflow.
23678 2013-09-11  Will Newton  <will.newton@linaro.org>
23680         [BZ #15855]
23681         * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
23682         does not overflow.
23684 2013-09-10  Ondřej Bílka  <neleai@seznam.cz>
23686         * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
23687         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
23688         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
23689         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
23690         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
23692 2013-09-10  Allan McRae  <allan@archlinux.org>
23694         [BZ #15748]
23695         * manual/arith.texi (Parsing of Floats): Clarify
23696         cross-reference.
23698         [BZ #15849]
23699         * manual/install.texi (Running make install): Mention
23700         --enable-pt-chown.
23701         * INSTALL: Regenerated.
23703 2013-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
23705         * csu/init-first.c (_init): Remove the !SHARED condition around
23706         FPU control word initialization.
23707         * elf/dl-support.c (_dl_fpu_control): New variable.
23708         (_dl_aux_init) <AT_FPUCW>: Initialize it.
23709         * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
23710         (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
23711         * math/test-fpucw-static.c: New file.
23712         * math/test-fpucw-ieee.c: New file.
23713         * math/test-fpucw-ieee-static.c: New file.
23714         * math/Makefile (tests): Add `test-fpucw-ieee' and
23715         `$(tests-static)'.
23716         (tests-static): New variable.
23717         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
23718         dependency to...
23719         [($(build-shared),yes)]
23720         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
23721         ... this.
23722         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
23723         New dependency.
23725 2013-09-09  Allan McRae  <allan@archlinux.org>
23727         [BZ #15939]
23728         * manual/string.texi (Collation Functions): Fix typo in
23729         strcoll example.
23730         Reported by Suren Karapetyan <me@suren.karapetyan.name>.
23732         [BZ #15893]
23733         * stdlib/isomac.c (get_null_defines): Fix memory leak.
23735         [BZ #15892]
23736         * libio/memstream.c (open_memstream): Fix memory leak.
23737         * libio/wmemstream.c (open_wmemstream): Likewise.
23739         [BZ #15895]
23740         * nscd/netgroupcache.c: Fix nesting of ifdefs.
23742 2013-09-09  Will Newton  <will.newton@linaro.org>
23744         * malloc/Makefile: Add tst-realloc to tests.
23745         * malloc/tst-realloc.c: New file.
23747 2013-09-09  Allan McRae  <allan@archlinux.org>
23749         [BZ #15844]
23750         * COPYING: Update from GNU website to fix FSF address.
23751         * COPYING.LIB: Likewise.
23753 2013-09-06  David S. Miller  <davem@davemloft.net>
23755         * po/zh_TW.po: Update Chinese (traditional) translation from
23756         translation project.
23758 2013-09-06  Richard Sandiford  <richard@codesourcery.com>
23759             Joseph Myers  <joseph@codesourcery.com>
23761         * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
23762         "localeinfo.h".
23763         (obstack_chunk_alloc): New macro.
23764         (obstack_chunk_free): Likewise.
23765         (record_offset): New function.
23766         (init_locale_data): Likewise.
23767         (align_locale_data): Likewise.
23768         (add_locale_empty): Likewise.
23769         (add_locale_raw_data): Likewise.
23770         (add_locale_raw_obstack): Likewise.
23771         (add_locale_string): Likewise.
23772         (add_locale_wstring): Likewise.
23773         (add_locale_uint32): Likewise.
23774         (add_locale_uint32_array): Likewise.
23775         (add_locale_char): Likewise.
23776         (start_locale_structure): Likewise.
23777         (end_locale_structure): Likewise.
23778         (start_locale_prelude): Likewise.
23779         (end_locale_prelude): Likewise.
23780         (write_locale_data): Take locale_file structure rather than an
23781         iovec.
23782         * locale/programs/locfile.h: Include "obstack.h".
23783         (struct locale_file): Change to store locale file contents instead
23784         of header.
23785         (init_locale_data): New prototype.
23786         (align_locale_data): Likewise.
23787         (add_locale_empty): Likewise.
23788         (add_locale_raw_data): Likewise.
23789         (add_locale_raw_obstack): Likewise.
23790         (add_locale_string): Likewise.
23791         (add_locale_wstring): Likewise.
23792         (add_locale_uint32): Likewise.
23793         (add_locale_uint32_array): Likewise.
23794         (add_locale_char): Likewise.
23795         (start_locale_structure): Likewise.
23796         (end_locale_structure): Likewise.
23797         (start_locale_prelude): Likewise.
23798         (end_locale_prelude): Likewise.
23799         (write_locale_data): Update prototype.
23800         * locale/programs/3level.h (struct TABLE): Remove result field.
23801         (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
23802         Use new locale_file interface.
23803         [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
23804         (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
23805         * locale/programs/ld-address.c (address_output): Use new
23806         locale_file interface.
23807         * locale/programs/ld-collate.c (NO_FINALIZE): Change to
23808         NO_ADD_LOCALE.
23809         (collate_finish): Don't call collseq_table_finalize.
23810         (collate_output): Use new locale_file interface.
23811         * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
23812         in file.
23813         (NO_FINALIZE): Change to NO_ADD_LOCALE.
23814         (TABLE): Move defines earlier in file.
23815         (ELEMENT): Likewise.
23816         (DEFAULT): Likewise.
23817         (wctrans_table_add): Move macro and inline function earlier in
23818         file.
23819         (struct wctype_table): Move type earlier in file.
23820         (add_locale_wctype_table): New static prototype.
23821         (struct locale_ctype_t): Use logical types instead of struct iovec
23822         pointers for members.
23823         (ctype_output): Use new locale_file interface.
23824         (wctype_table_finalize): Change to add_locale_wctype_table.  Use
23825         new locale_file interface.
23826         (allocate_arrays): Update for use of new locale_file interface.
23827         * locale/programs/ld-identification.c (identification_output): Use
23828         new locale_file interface.
23829         * locale/programs/ld-measurement.c (measurement_output): Likewise.
23830         * locale/programs/ld-messages.c (messages_output): Likewise.
23831         * locale/programs/ld-monetary.c (monetary_output): Likewise.
23832         * locale/programs/ld-name.c (name_output): Likewise.
23833         * locale/programs/ld-numeric.c (numeric_output): Likewise.
23834         * locale/programs/ld-paper.c (paper_output): Likewise.
23835         * locale/programs/ld-telephone.c (telephone_output): Likewise.
23836         * locale/programs/ld-time.c (time_output): Likewise.
23838 2013-09-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23840         * benchtests/Makefile: Add memrchr benchmark.
23841         * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
23842         benchmark as memrchr.
23843         * benchtests/bench-memrchr-ifunc.c: New file.
23844         * benchtests/bench-memrchr.c: New file.
23846 2013-09-06   Will Newton  <will.newton@linaro.org>
23848         * benchtests/Makefile (string-bench): Add memcpy.
23850 2013-09-05  Carlos O'Donell  <carlos@redhat.com>
23851             Cong Wang  <amwang@redhat.com>
23853         [BZ #15850]
23854         * sysdeps/unix/sysv/linux/bits/in.h
23855         [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
23856         * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
23857         before __USE_KERNEL_IPV6_DEFS uses.
23858         * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
23859         IPPROTO_BEETPH.
23860         [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
23861         sockaddr_in6, or ipv6_mreq.
23863 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23865         * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
23866         memory access for final bytes in some large inputs.
23867         * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
23869 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23871         * string/test-memrchr.c: New file.
23872         * string/test-memrchr-ifunc.c: New file.
23873         * string/Makefile: Add new memrchr testcase.
23875 2013-09-05  Mike Frysinger  <vapier@gentoo.org>
23877         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
23878         fanotify_init returns EPERM.
23880 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
23882         * conform/conformtest.pl (newtoken): Treat tokens not allowed as
23883         errors.
23884         (top level): Treat second token from macro or constant entries for
23885         allowed headers as allowed.
23886         * include/complex.h: Condition internal declarations on
23887         [!_ISOMAC].
23888         * include/fenv.h: Condition include of <stdbool.h> and internal
23889         declarations on [!_ISOMAC].
23891 2013-09-04  Chris Leonard  <cjl@sugarlabs,.org>
23893         [BZ #15923]
23894         * locale/iso-4217.def: Update iso-1427.def and related occurrences.
23896 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
23898         * configure.in (--enable-versioning): Remove configure option.
23899         (libc_cv_asm_symver_directive): Remove configure test.
23900         (libc_cv_ld_version_script_option): Likewise.
23901         (VERSIONING): Remove variable and AC_SUBST.
23902         (DO_VERSIONING): Remove AC_DEFINE.
23903         * configure: Regenerated.
23904         * config.h.in (DO_VERSIONING): Remove macro.
23905         * Makerules [$(versioning) = yes]: Change conditionals to
23906         [$(build-shared) = yes].
23907         * config.make.in (versioning): Remove variable.
23908         * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
23909         [$(build-shared) = yes].
23910         * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
23911         * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
23912         * elf/Makefile [$(versioning) = yes]: Change conditionals to
23913         [$(build-shared) = yes].
23914         * extra-lib.mk [$(versioning) = yes]: Likewise.
23915         * hurd/Makefile [$(versioning) = yes]: Likewise.
23916         * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
23917         [SHARED].
23918         * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
23919         [SHARED].
23920         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
23921         [SHARED && !NO_HIDDEN].
23922         * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
23923         [SHARED].
23924         [SHARED && DO_VERSIONING]: Likewise..
23925         * libio/Makefile [$(versioning) = yes]: Change conditionals to
23926         [$(build-shared) = yes].
23927         * manual/install.texi (--disable-versioning): Remove
23928         documentation.
23929         * INSTALL: Regenerated.
23930         * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
23931         to [SHARED].
23932         * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
23933         [$(build-shared) = yes].
23934         * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
23935         * sysdeps/i386/i686/multiarch/strstr-c.c
23936         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
23937         [SHARED && !NO_HIDDEN].
23938         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
23939         [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
23940         * sysdeps/powerpc/powerpc32/dl-machine.c
23941         [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
23942         * sysdeps/powerpc/powerpc32/sysdep.h
23943         [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
23944         to [SHARED && PIC && !NO_HIDDEN].
23945         * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
23946         conditional to [SHARED].
23948 2013-09-04   Will Newton  <will.newton@linaro.org>
23950         * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
23951         * benchtests/bench-string.h: Include bench-timing.h instead
23952         of including hp-timing.h directly. (INNER_LOOP_ITERS): New
23953         define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
23954         call to HP_TIMING_DIFF_INIT.
23955         * benchtests/bench-memccpy.c: Use bench-timing.h macros
23956         instead of hp-timing.h macros.
23957         * benchtests/bench-memchr.c: Likewise.
23958         * benchtests/bench-memcmp.c: Likewise.
23959         * benchtests/bench-memcpy.c: Likewise.
23960         * benchtests/bench-memmem.c: Likewise.
23961         * benchtests/bench-memmove.c: Likewise.
23962         * benchtests/bench-memset.c: Likewise.
23963         * benchtests/bench-rawmemchr.c: Likewise.
23964         * benchtests/bench-strcasecmp.c: Likewise.
23965         * benchtests/bench-strcasestr.c: Likewise.
23966         * benchtests/bench-strcat.c: Likewise.
23967         * benchtests/bench-strchr.c: Likewise.
23968         * benchtests/bench-strcmp.c: Likewise.
23969         * benchtests/bench-strcpy.c: Likewise.
23970         * benchtests/bench-strcpy_chk.c: Likewise.
23971         * benchtests/bench-strlen.c: Likewise.
23972         * benchtests/bench-strncasecmp.c: Likewise.
23973         * benchtests/bench-strncat.c: Likewise.
23974         * benchtests/bench-strncmp.c: Likewise.
23975         * benchtests/bench-strncpy.c: Likewise.
23976         * benchtests/bench-strnlen.c: Likewise.
23977         * benchtests/bench-strpbrk.c: Likewise.
23978         * benchtests/bench-strrchr.c: Likewise.
23979         * benchtests/bench-strspn.c: Likewise.
23980         * benchtests/bench-strstr.c: Likewise.
23982 2013-09-04  Will Newton  <will.newton@linaro.org>
23984         * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
23986 2013-09-03  Joseph Myers  <joseph@codesourcery.com>
23988         [BZ #15427]
23989         * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
23990         2**-30 instead of 2**-70 as threshold for returning -log(|x|).
23991         * math/libm-test.inc (lgamma_test_data): Add more tests.
23992         * sysdeps/i386/fpu/libm-test-ulps: Update.
23993         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23995 2013-09-03   Ondřej Bílka  <neleai@seznam.cz>
23997         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
23998         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
23999         Add ifunc.
24000         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
24001         Add strcmp-sse2-unaligned
24002         * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
24004 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
24006         * Versions.def (libc): Add GLIBC_2.19.
24008 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
24010         * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
24011         * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
24013 2013-09-02  Joseph Myers  <joseph@codesourcery.com>
24015         [BZ #14155]
24016         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
24017         intermediate calculations in recurrence.
24018         (__ieee754_ynf): Likewise.
24019         * math/libm-test.inc (jn_test_data): Do not allow spurious
24020         underflow exception.  Add more tests.
24021         (yn_test_data): Add more tests.
24022         * sysdeps/i386/fpu/libm-test-ulps: Update.
24023         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24025 2013-09-02   Ondřej Bílka  <neleai@seznam.cz>
24027         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
24029 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
24031         * csu/init-first.c: Fix then/than typos.
24032         * locale/programs/ld-collate.c: Likewise.
24033         * locale/programs/linereader.h: Likewise.
24034         * manual/charset.texi: Likewise.
24035         * manual/filesys.texi: Likewise.
24036         * manual/stdio.texi: Likewise.
24037         * manual/string.texi: Likewise.
24038         * stdlib/fmtmsg.c: Likewise.
24039         * sysdeps/i386/stpncpy.S: Likewise.
24040         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
24041         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
24042         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
24043         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
24045 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
24047         * elf/dl-open.c: Fix typos.
24048         * iconvdata/gbbig5.c: Likewise.
24049         * iconvdata/iso-2022-jp.c: Likewise.
24050         * iconv/gconv_int.h: Likewise.
24051         * iconv/loop.c: Likewise.
24052         * nis/rpcsvc/nis.h: Likewise.
24053         * resolv/ns_name.c: Likewise.
24054         * stdio-common/vfscanf.c: Likewise.
24055         * streams/stropts.h: Likewise.
24056         * sunrpc/rpc_thread.c: Likewise.
24057         * sysdeps/i386/strpbrk.S: Likewise.
24058         * sysdeps/ieee754/k_standard.c: Likewise.
24059         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
24060         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
24061         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
24062         * sysdeps/mach/hurd/profil.c: Likewise.
24063         * sysdeps/s390/dl-procinfo.h: Likewise.
24064         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
24065         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
24066         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
24067         * sysdeps/x86_64/dl-trampoline.S: Likewise.
24068         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
24070 2013-08-30  Ondřej Bílka  <neleai@seznam.cz>
24072         * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
24073         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
24075 2013-08-29  Ondřej Bílka  <neleai@seznam.cz>
24077         * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
24078         aix specific files.
24079         * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
24080         * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
24081         * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
24082         * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
24083         * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
24084         * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
24085         * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
24086         * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
24088 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
24089             Roland McGrath  <roland@hack.frob.com>
24091         * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
24092         * sysdeps/mach/hurd/bits/errno.h: Regenerate.
24094 2013-08-29  Samuel Thibault  <samuel.thibault@ens-lyon.org>
24096         * sysdeps/mach/hurd/i386/init-first.c (init1): Use
24097         __executable_start symbol instead of _start.
24099 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
24101         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
24102         (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
24103         Move macros to...
24104         * sysdeps/gnu/ldsodefs.h: ... this new file.
24106         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
24107         (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
24108         instead of ELFOSABI_LINUX.
24110         [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
24111         * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
24112         * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
24113         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
24114         Likewise.
24115         * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
24116         * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
24117         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
24118         Likewise.
24119         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
24120         (ibm_extended_long_double): Add ieee_nan member.
24121         * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
24122         (do_test): New function.
24124         * math/basic-test.c (TEST_CONVERT): New macro, renamed from
24125         TEST_TRUNC.
24126         (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
24127         functions, renamed from truncdfsf_test, trunctfsf_test,
24128         trunctfdf_test.
24129         (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
24130         functions.
24131         (do_test): Run all these.
24133 2013-08-29   Ondřej Bílka  <neleai@seznam.cz>
24135         * argp/argp-help.c: Fix typos.
24136         * argp/argp-parse.c: Likewise.
24137         * debug/backtracesyms.c: Likewise.
24138         * elf/elf.h: Likewise.
24139         * malloc/malloc.c: Likewise.
24140         * nis/nis_print.c: Likewise.
24141         * resolv/res_comp.c: Likewise.
24142         * stdlib/stdlib.h: Likewise.
24143         * sunrpc/clnt_tcp.c: Likewise.
24144         * sunrpc/clnt_udp.c: Likewise.
24145         * sunrpc/clnt_unix.c: Likewise.
24146         * sysdeps/unix/bsd/ptsname.c: Likewise.
24147         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
24148         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
24149         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
24150         Likewise.
24151         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
24152         Likewise.
24153         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
24154         Likewise.
24155         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
24157 2013-08-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
24159         * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
24160         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
24162 2013-08-27  Mike Frysinger  <vapier@gentoo.org>
24164         [BZ #15897]
24165         * dlfcn/Makefile (tests): Add bug-dl-leaf.
24166         (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
24167         ($(objpfx)bug-dl-leaf): New rule.
24168         ($(objpfx)bug-dl-leaf.so): Likewise.
24169         ($(objpfx)bug-dl-leaf.out): Likewise.
24170         ($(objpfx)bug-dl-leaf-lib.so): Likewise.
24171         ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
24172         * dlfcn/bug-dl-leaf.c: New test.
24173         * dlfcn/bug-dl-leaf-lib.c: Likewise.
24174         * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
24175         * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
24176         (dlclose): Likewise.
24177         (dlmopen): Likewise.
24179 2013-08-27  Roland McGrath  <roland@hack.frob.com>
24181         * include/netdb.h [!_ISOMAC]:
24182         Don't include <tls.h>.
24183         (h_errno, __libc_h_errno): Move declaration and macros out of
24184         [_LIBC_REENTRANT].
24186         * include/resolv.h [_RESOLV_H_]:
24187         Don't include <tls.h>.
24188         (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
24189         * resolv/res_libc.c: Don't include <tls.h>.
24190         (_res): Use __attribute__ ((nocommon)) in place of
24191         __attribute__ ((section (".bss"))).
24193         * Makefile ($(common-objpfx)linkobj/libc_pic.a):
24194         If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
24196         * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
24198         * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
24199         only under [SIOCGIFCONF && SIOCGIFNETMASK].
24201         * resolv/res_mkquery.c: Include <sys/time.h>.
24203         * inet/ifreq.c: Moved to ...
24204         * sysdeps/unix/ifreq.c: ... here.
24205         * inet/ifreq.c: New file, true stub version.
24207         * socket/sa_len.c: New file.
24208         * socket/Makefile (aux): Add it.
24209         * sysdeps/unix/sysv/linux/Makefile
24210         [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
24211         * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
24212         and #include <socket/sa_len.c>.
24213         * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
24214         HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
24216         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
24217         * bits/socket.h: ... here.
24219         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
24220         Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
24221         (SOCK_MAX, SOCK_TYPE_MASK): New macros.
24223 2013-08-27  Andreas Schwab  <schwab@suse.de>
24225         [BZ #15736]
24226         * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
24227         * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
24228         (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
24229         * string/test-strcasecmp.c (test_main): Run tests in several
24230         locales.
24231         * string/test-strncasecmp.c (test_main): Likewise.
24233         * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
24234         (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
24235         to __strcasecmp_nonascii and __strncasecmp_nonascii.
24236         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
24237         (__strncasecmp_ssse3) [PIC]: Likewise.
24239 2013-08-26  Roland McGrath  <roland@hack.frob.com>
24241         * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
24243         * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
24244         instead of explicitly declaring xdecrypt.
24245         * nis/nss_nis/nis-publickey.c: Likewise.
24247 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
24249         [BZ #15890]
24250         * nscd/aicache.c: Include res_hconf.h.
24251         (addhstaiX): Initialize res_hconf.
24253 2013-08-26  Andreas Schwab  <schwab@suse.de>
24255         * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
24256         ($(objpfx)tst-tls-atexit): Add dependencies here instead.
24258 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
24260         * nscd/aicache.c (addhstaiX): Fix indentation.
24262 2013-08-25  Mike Frysinger  <vapier@gentoo.org>
24264         * configure.ac: Quote $build_pt_chown test.
24265         * configure: Regenerated.
24267 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
24269         [BZ #15532]
24270         * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
24271         * math/s_cexpf.c (__cexpf): Likewise.
24272         * math/s_cexpl.c (__cexpl): Likewise.
24273         * math/libm-test.inc (cexp_test_data): Correct expected return
24274         value for NaN + i0.  Add another test.
24276 2013-08-22  David S. Miller  <davem@davemloft.net>
24278         * po/ca.po: Update Catalan translation from translation project.
24279         * po/uk.po: Add Ukrainian translations from translation project.
24281 2013-08-21  Joseph Myers  <joseph@codesourcery.com>
24283         [BZ #15797]
24284         * math/s_fdim.c (__fdim): Check for infinite arguments if result
24285         is infinite, not alongside NaN test.
24286         * math/s_fdimf.c (__fdimf): Likewise.
24287         * math/s_fdiml.c (__fdiml): Likewise.
24288         * math/libm-test.inc (fdim_test_data): Add more tests.  Test that
24289         errno is unchanged.
24291 2013-08-21   Ondřej Bílka  <neleai@seznam.cz>
24293         * argp/argp-help.c: Fix typos.
24294         * crypt/speeds.c: Likewise.
24295         * csu/check_fds.c: Likewise.
24296         * elf/dl-load.c: Likewise.
24297         * elf/dl-open.c: Likewise.
24298         * elf/reldep3.c: Likewise.
24299         * elf/reldep.c: Likewise.
24300         * elf/sprof.c: Likewise.
24301         * iconv/iconv_charmap.c: Likewise.
24302         * iconv/skeleton.c: Likewise.
24303         * iconv/strtab.c: Likewise.
24304         * io/lockf64.c: Likewise.
24305         * libio/libioP.h: Likewise.
24306         * resolv/gai_notify.c: Likewise.
24307         * resolv/ns_name.c: Likewise.
24308         * resolv/ns_samedomain.c: Likewise.
24309         * resolv/res_send.c: Likewise.
24310         * stdlib/random.c: Likewise.
24311         * sunrpc/rpc/xdr.h: Likewise.
24312         * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
24313         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
24314         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
24315         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
24316         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
24317         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
24318         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
24319         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
24320         * sysdeps/mach/hurd/check_fds.c: Likewise.
24321         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
24322         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
24323         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
24324         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
24325         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
24326         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
24327         * sysdeps/pthread/aio_notify.c: Likewise.
24328         * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
24329         * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
24330         * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
24331         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
24332         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
24334 2013-08-21  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
24336         * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
24337         version if bit_Slow_SSE4_2 is set.
24338         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
24339         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
24341 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24343         [BZ #15867]
24344         * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
24345         trampoline stack frame information.
24346         * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
24347         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
24348         (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
24349         (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
24350         (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
24351         * sysdeps/unix/sysv/linux/powerpc/init-first.c
24352         (_libc_vdso_platform_setup): Initialize the signal trampolines.
24353         * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
24354         sa_flags value.
24355         * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
24356         interrupting a syscall and set with option SA_SIGINFO.
24358 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
24360         [BZ #15531]
24361         * math/s_cproj.c (__cproj): Only return an infinity if one part of
24362         argument is infinite.
24363         * math/s_cprojf.c (__cprojf): Likewise.
24364         * math/s_cprojl.c (__cprojl): Likewise.
24365         * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
24366         * math/libm-test.inc (cproj_test_data): Add more tests.
24368         * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
24370         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
24371         [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
24372         size.  Use __ffs to determine corresponding shift.
24374 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
24375             Roland McGrath  <roland@hack.frob.com>
24377         * Makefile (INSTALL): Remove trailing blank lines from output of
24378         makeinfo.
24380 2013-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
24382         * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
24383         Align 32 bit compat elf_greg to 8 bytes.
24385 2013-08-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
24387         * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
24389 2013-08-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
24391         * string/strcoll_l.c (coll_seq): New structure.
24392         (get_next_seq_cached): New function.
24393         (get_next_seq): New function.
24394         (do_compare): New function.
24395         (STRCOLL): Use GNU style definition.  Simplify implementation
24396         by using get_next_seq, get_next_seq_cached and do_compare.
24398 2013-08-16  Florian Weimer  <fweimer@redhat.com>
24400         [BZ #14699]
24401         CVE-2013-4237
24402         * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
24403         member.
24404         * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
24405         member.
24406         * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
24407         * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
24408         Return delayed error code.  Remove GETDENTS_64BIT_ALIGNED
24409         conditional.
24410         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
24411         GETDENTS_64BIT_ALIGNED.
24412         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
24413         * manual/filesys.texi (Reading/Closing Directory): Document
24414         ENAMETOOLONG return value of readdir_r.  Recommend readdir more
24415         strongly.
24416         * manual/conf.texi (Limits for Files): Add portability note to
24417         NAME_MAX, PATH_MAX.
24418         (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
24420 2013-08-13  Andreas Schwab  <schwab@suse.de>
24422         [BZ #15749]
24423         * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
24424         of fabs.
24425         * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
24426         LDBL_MAX_EXP >= 16384]: Add tests for it.
24428 2013-08-12  David S. Miller  <davem@davemloft.net>
24430         * version.h (RELEASE): Set to "development".
24431         (VERSION): Set to "2.18.90".
24432         * NEWS: Add 2.19 section.
24434 2013-08-03  David S. Miller  <davem@davemloft.net>
24436         * po/ko.po: Update Korean translation from translation project.
24438 2013-08-01  David S. Miller  <davem@davemloft.net>
24440         * manual/contrib.texi: Update entry for Siddhesh Poyarekar.  Add
24441         entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
24442         Bilka.
24444 2013-07-30  David S. Miller  <davem@davemloft.net>
24446         * po/fr.po: Update French translation from translation project.
24448 2013-07-28  David S. Miller  <davem@davemloft.net>
24450         * po/cs.po: Update Czech translation from translation project.
24452         * po/sv.po: Update Swedish translation from translation project.
24454 2013-07-27  David S. Miller  <davem@davemloft.net>
24456         * po/eo.po: Update Esperanto translation from translation project.
24458         * po/vi.po: Update Vietnamese translation from translation project.
24460         * po/de.po: Update German translation from translation project.
24462 2013-07-26  David S. Miller  <davem@davemloft.net>
24464         * po/bg.po: Update Bulgarian translation from translation project.
24466         * po/nl.po: Update Dutch translation from translation project.
24467         * po/pl.po: Update Polish translation from translation project.
24468         * po/ru.po: Update Russian translation from translation project.
24470 2013-07-24  David S. Miller  <davem@davemloft.net>
24472         * po/libc.pot: Update.
24474 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24476         * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
24477         variable page size.
24478         * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
24479         * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
24480         * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
24482 2013-07-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
24484         * sysdeps/s390/fpu/libm-test-ulps: Refresh.
24486 2013-07-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
24487             Andreas Schwab  <schwab@suse.de>
24488             Roland McGrath  <roland@hack.frob.com>
24489             Joseph Myers  <joseph@codesourcery.com>
24490             Carlos O'Donell  <carlos@redhat.com>
24492         [BZ #15755]
24493         * config.h.in: Define HAVE_PT_CHOWN.
24494         * config.make.in (build-pt-chown): New variable.
24495         * configure.in (--enable-pt_chown): New configure option.
24496         * configure: Regenerate.
24497         * login/Makefile: Include Makeconfig.  Build pt_chown only if
24498         build-pt-chown is enabled.
24499         * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
24500         pt_chown to fix pty ownership.
24501         * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
24502         CLOSE_ALL_FDS.
24503         * manual/install.texi (Configuring and compiling): Mention
24504         --enable-pt_chown. Add @findex for grantpt.
24505         * INSTALL: Regenerate.
24507 2013-07-20  David S. Miller  <davem@davemloft.net>
24509         * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
24510         difference between 32-bit and 64-bit.
24512 2013-07-15  Carlos O'Donell  <carlos@redhat.com>
24514         [BZ #15711]
24515         * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
24516         Avoid system header dependency with -ffreestanding.
24517         ($(objpfx)bits/syscall%d): Likewise.
24519 2013-07-13  David S. Miller  <davem@davemloft.net>
24521         * math/libm-test.inc (casin_test_data): Annotate more cases of missing
24522         underflows from atanl/atan2l due to bug 15319.
24523         (casinh_test_data): Likewise.
24525 2013-07-07  David S. Miller  <davem@davemloft.net>
24527         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
24529 2013-07-05  Jeroen Albers  <_jeroen_@yahoo.com>
24531         * sysdeps/i386/fpu/libm-test-ulps: Update.
24532         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24534 2013-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
24536         * configure.in (--enable-lock-elision): Fix message text.
24537         * INSTALL: Regenerate.
24538         * configure: Regenerate.
24540 2013-07-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24542         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
24544 2013-07-03  Andreas Jaeger  <aj@suse.de>
24546         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
24547         define.
24548         (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
24549         (ptrace_peeksiginfo_args): Add.
24550         (__ptrace_peeksiginfo_flags): Add.
24551         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
24552         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
24553         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
24555 2013-07-03  Allan McRae  <allan@archlinux.org>
24557         * sysdeps/i386/fpu/libm-test-ulps: Update.
24559 2013-07-02  David S. Miller  <davem@davemloft.net>
24561         * sysdeps/sparc/fpu/libm-test-ulps: Update.
24563 2013-07-02  Markus Trippelsdorf  <markus@trippelsdorf.de>
24565         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
24567 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
24569         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
24570         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24572 2013-07-02  Andi Kleen <ak@linux.intel.com>
24574         * config.h.in (ENABLE_LOCK_ELISION): Add.
24575         * configure.in (--enable-lock-elision): Add option.
24576         * manual/install.texi: Document --enable lock elision.
24577         * configure: Regenerate
24578         * INSTALL: Regenerate.
24580 2013-07-02  H.J. Lu  <hongjiu.lu@intel.com>
24582         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
24583         SSE4.2 strcasecmp for libc.a.
24584         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
24586 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
24588         [BZ #13304]
24589         * soft-fp/op-common.h (_FP_FMA): New macro.
24590         * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
24591         (_FP_MUL_MEAT_DW_1_imm): Likewise.  Split out of ...
24592         (_FP_MUL_MEAT_1_imm): ... here.
24593         (_FP_MUL_MEAT_DW_1_wide): New macro.  Split out of ...
24594         (_FP_MUL_MEAT_1_wide): ... here.
24595         (_FP_MUL_MEAT_DW_1_hard): Likewise.  Split out of ...
24596         (_FP_MUL_MEAT_1_hard): ... here.
24597         * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
24598         (_FP_MUL_MEAT_DW_2_wide): Likewise.  Split out of ...
24599         (_FP_MUL_MEAT_2_wide): ... here.
24600         (_FP_MUL_MEAT_DW_2_wide_3mul): New macro.  Split out of ...
24601         (_FP_MUL_MEAT_2_wide_3mul): ... here.
24602         (_FP_MUL_MEAT_DW_2_gmp): New macro.  Split out of ...
24603         (_FP_MUL_MEAT_2_gmp): ... here.
24604         * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
24605         (_FP_MUL_MEAT_DW_4_wide): Likewise.  Split out of ...
24606         (_FP_MUL_MEAT_4_wide): ... here.
24607         (_FP_MUL_MEAT_DW_4_gmp): New macro.  Split out of ...
24608         (_FP_MUL_MEAT_4_gmp): ... here.
24609         * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
24610         (_FP_WFRACBITS_DW_S): Likewise.
24611         (_FP_WFRACXBITS_DW_S): Likewise.
24612         (_FP_HIGHBIT_DW_S): Likewise.
24613         (FP_FMA_S): Likewise.
24614         (_FP_FRAC_HIGH_DW_S): Likewise.
24615         * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
24616         (_FP_WFRACBITS_DW_D): Likewise.
24617         (_FP_WFRACXBITS_DW_D): Likewise.
24618         (_FP_HIGHBIT_DW_D): Likewise.
24619         (FP_FMA_D): Likewise.
24620         (_FP_FRAC_HIGH_DW_D): Likewise.
24621         * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
24622         (_FP_WFRACBITS_DW_E): Likewise.
24623         (_FP_WFRACXBITS_DW_E): Likewise.
24624         (_FP_HIGHBIT_DW_E): Likewise.
24625         (FP_FMA_E): Likewise.
24626         (_FP_FRAC_HIGH_DW_E): Likewise.
24627         * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
24628         (_FP_WFRACBITS_DW_Q): Likewise.
24629         (_FP_WFRACXBITS_DW_Q): Likewise.
24630         (_FP_HIGHBIT_DW_Q): Likewise.
24631         (FP_FMA_Q): Likewise.
24632         (_FP_FRAC_HIGH_DW_Q): Likewise.
24633         * soft-fp/fmasf4.c: New file.
24634         * soft-fp/fmadf4.c: Likewise.
24635         * soft-fp/fmatf4.c: Likewise.
24637 2013-06-28  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
24639         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
24640         bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
24641         Silvermont.
24642         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
24643         macro.
24644         (index_Slow_SSE4_2): Likewise.
24645         (index_Prefer_PMINUB_for_stringop): Likewise.
24646         * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
24647         bit_Slow_SSE4_2 is set.
24648         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
24649         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
24651 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24653         * sysdeps/powerpc/Makefile: Add comment about generating an offset to
24654         rtld_global._dl_hwcap2.
24655         * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
24656         POWER8.
24657         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
24658         POWER8 feature descriptions defined in _dl_hwcap2.
24659         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
24660         string handling for POWER8 feature bits.
24661         (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
24662         (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
24663         _dl_powerpc_cap_flags.
24664         (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
24665         * sysdeps/powerpc/rtld-global-offsets.sym
24666         (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
24667         _dl_hwcap2 in the rtld_global_ro structure.
24669 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24671         * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
24672         hardware capabilities in support of AT_HWCAP2.
24673         (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
24674         * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
24675         GLRO(dl_hwcap2).
24676         (_dl_show_auxv): Add support for calling _dl_procinfo to display
24677         AT_HWCAP2.  If a platform doesn't chose to handle displaying AT_HWCAP2
24678         explicitly the unknown a_type display mechanism is used.
24679         * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
24680         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
24681         struct member.
24682         * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
24683         to macro prototype for AT_HWCAP2 support.
24684         * sysdeps/i386/dl-procinfo.h: Likewise.
24685         * sysdeps/s390/dl-procinfo.h: Likewise.
24686         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
24687         macro prototype for AT_HWCAP2 support.  Make WORD unsigned long int
24688         rather than signed int.  Stub in handler for TYPE == AT_HWCAP2 to
24689         return -1 for unknown a_type display fallback.
24690         * sysdeps/sparc/dl-procinfo.h: Likewise.
24691         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
24692         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
24694 2013-06-28  Joseph Myers  <joseph@codesourcery.com>
24696         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
24697         instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
24699 2013-06-28  Pierre Ynard  <linkfanel@yahoo.fr>
24701         [BZ #12492]
24702         * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
24703         mprotect making __stack_prot writable.
24705 2013-06-28  Nathan Froyd  <froydnj@codesourcery.com>
24706             Joseph Myers  <joseph@codesourcery.com>
24708         * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
24709         as being properly aligned.
24711 2013-06-28  Maciej W. Rozycki  <macro@codesourcery.com>
24713         * dlfcn/modstatic5.c: New file.
24714         * dlfcn/tststatic5.c: New file.
24715         * dlfcn/Makefile (tests): Add tststatic5.
24716         (tests-static): Likewise.
24717         (modules-names): Add modstatic5.
24718         (tststatic5-ENV): New variable.
24719         ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
24721         [BZ #15022]
24722         * elf/dl-support.c (_dl_main_map): New variable.
24723         (_dl_ns): Use it to initialize [LM_ID_BASE] element.
24724         (_dl_nns, _dl_load_adds): Set to 1.
24725         (_dl_initial_searchlist): Refer to _dl_main_map.
24726         (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
24727         * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
24728         call to _dl_get_origin.
24729         * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
24730         around call_map.
24731         (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
24732         * dlfcn/modstatic3.c: New file.
24733         * dlfcn/tststatic3.c: New file.
24734         * dlfcn/tststatic4.c: New file.
24735         * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
24736         (tests-static): Likewise.
24737         (modules-names): Add modstatic3.
24738         (tststatic3-ENV, tststatic4-ENV): New variables.
24739         ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
24740         ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
24742 2013-06-26  Joseph Myers  <joseph@codesourcery.com>
24744         * configure.in (CC): Require GCC version 4.4 or later.
24745         * configure: Regenerated.
24746         * manual/install.texi (Tools for Compilation): Update GCC version
24747         requirement.
24748         * INSTALL: Regenerated.
24750 2013-06-26  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
24752         [BZ #15674]
24753         * string/test-memcmp.c (check2): New.
24754         (main): Call check2.
24756         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
24758 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
24760         [BZ #15022]
24761         * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
24762         over to...
24763         (dl_open_worker) [!SHARED]: ... here.
24765 2013-06-26  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24767         * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
24769 2013-06-25  Richard Henderson  <rth@redhat.com>
24771         * locale/programs/locarchive.c: Include <libc-internal.h>
24773 2013-06-25  Joseph Myers  <joseph@codesourcery.com>
24775         * manual/texinfo.tex: Update to version 2013-06-21.17, with
24776         trailing whitespace removed.
24778 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
24780         [BZ #10283]
24781         * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
24782         * locale/programs/locarchive.c: Include libc-mmap.h.
24783         (prepare_address_space): Take two new outputs (the mmap base and len).
24784         Align p to MAP_FIXED_ALIGNMENT.  Set mmap base and len to the right
24785         values.
24786         (create_archive): Declare new mmap base and len values for
24787         prepare_address_space, and store the result in ah.
24788         (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
24789         (enlarge_archive): If ah->mmap_base is not NULL, use that and
24790         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
24791         Declare new mmap base and len values for
24792         prepare_address_space, and store the result in new_ah.
24793         (open_archive): Declare new mmap base and len values for
24794         prepare_address_space, and store the result in ah.
24795         (close_archive): If ah->mmap_base is not NULL, use that and
24796         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
24797         * sysdeps/generic/libc-mmap.h: New file.
24799 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
24801         * include/libc-internal.h (ALIGN_DOWN): New helper macro.
24802         (ALIGN_UP): Likewise.
24803         (PTR_ALIGN_DOWN): Likewise.
24804         (PTR_ALIGN_UP): Likewise.
24806 2013-06-24  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24808         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
24809         entry mapped to PPC_PLATFORM_POWER8.
24810         * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
24811         POWER8.
24812         (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
24813         (_dl_string_platform): Add case for exporting platform position for
24814         POWER8.
24815         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
24816         search path to sysdeps/powerpc/powerpc32/power8 directory.
24817         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
24818         search path to sysdeps/powerpc/powerpc64/power8 directory.
24819         * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
24820         power7 directories.
24821         * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
24822         power7 directories.
24824 2013-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
24826         * INSTALL: Regenerate.
24828         * nscd/connections.c (nscd_init): Fix comment.
24830 2013-06-22  Joseph Myers  <joseph@codesourcery.com>
24832         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
24834         [BZ #15667]
24835         * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
24836         to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
24838 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
24840         * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
24841         DL_DST_REQ_STATIC.
24842         (DL_DST_REQ_STATIC): Remove macro.
24844 2013-06-21  Joseph Myers  <joseph@codesourcery.com>
24846         [BZ #7006]
24847         * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
24848         with a shift of 0 bits.
24850 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
24852         * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
24853         $(tststatic-ENV).
24855 2013-06-21  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
24857         [BZ #15655]
24858         * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
24860 2013-06-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24862         * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
24863         * configure.in (libc_cv_cc_loop_to_function): Check if compiler
24864         accepts -fno-tree-loop-distribute-patterns.
24865         * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
24866         * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
24867         recursive call.
24868         * string/memset.c (memset): Likewise.
24869         * string/test-memmove.c (simple_memmove): Disable loop transformation
24870         to library calls.
24871         * string/test-memset.c (simple_memset): Likewise.
24872         * benchtests/bench-memmove.c (simple_memmove): Likewise.
24873         * benchtests/bench-memset.c (simple_memset): Likewise.
24874         * configure: Regenerated.
24876 2013-06-20  Joseph Myers  <joseph@codesourcery.com>
24878         * math/test-misc.c (main): Ignore fesetround failure when failures
24879         of subsequent rounding tests would be ignored.
24881         [BZ #15654]
24882         * math/fedisblxcpt.c (fedisableexcept): Return 0.
24883         * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
24884         * math/fegetenv.c (__fegetenv): Return 0.
24885         * math/fegetexcept.c (fegetexcept): Return 0.
24886         * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
24887         FE_TONEAREST.
24888         * math/feholdexcpt.c (feholdexcept): Return 0.
24889         * math/fesetenv.c (__fesetenv): Return 0.
24890         * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
24891         argument FE_TONEAREST.
24892         * math/feupdateenv.c (__feupdateenv): Return 0.
24893         * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
24895 2013-06-18  Roland McGrath  <roland@hack.frob.com>
24897         * elf/rtld-Rules (rtld-compile-command.S): New variable.
24898         (rtld-compile-command.s, rtld-compile-command.c): New variables.
24899         ($(objpfx)rtld-%.os rules): Use them.
24901 2013-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24903         * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
24904         fields.
24906 2013-06-17  Roland McGrath  <roland@hack.frob.com>
24908         * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
24909         length of target pattern, then descending length of dependency pattern.
24910         * configure.in (AWK): Require gawk 3.1.2 or newer.
24911         * manual/install.texi (Tools for Compilation): Say that we do.
24912         * configure: Regenerated.
24914         * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
24915         ($(common-objpfx)sysd-rules): Replace shell logic with running ...
24916         * scripts/sysd-rules.awk: ... this new script.
24917         * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
24918         than a glob-style pattern.
24920 2013-06-17  Joseph Myers  <joseph@codesourcery.com>
24922         * math/test-misc.c (main): Do not treat incorrectly rounded
24923         conversions as failure unless ROUNDING_TESTS passes.
24925 2013-06-15  Joseph Myers  <joseph@codesourcery.com>
24927         [BZ #15631]
24928         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
24929         restore exception state around main square root computation, then
24930         check for inexactness explicitly.
24932         * math/libm-test.inc (fma_test_data): Add another test.
24934 2013-06-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
24936         * manual/threads.texi (Non-POSIX Extensions): New document
24937         node.  Document pthread_getattr_default_np and
24938         pthread_setattr_default_np.
24940         * Versions.def (libpthread): Add GLIBC_2.18.
24941         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
24942         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
24943         Likewise.
24944         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
24945         Likewise.
24946         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
24947         Likewise.
24948         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
24949         Likewise.
24950         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
24951         Likewise.
24952         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
24953         Likewise.
24954         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
24955         Likewise.
24956         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
24957         Likewise.
24958         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
24959         Likewise.
24961 2013-06-14  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
24963         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
24964         Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
24966 2013-06-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
24967             H.J. Lu  <hjl.tools@gmail.com>
24969         [BZ #15627]
24970         * sysdeps/x86_64/rtld-memset.c: Remove file.
24971         * sysdeps/x86_64/rtld-memset.S: New file.
24973 2013-06-14  Joseph Myers  <joseph@codesourcery.com>
24975         * stdlib/tst-strtod-round.c: Include <math-tests.h>.
24976         (test_in_one_mode): Take arguments for whether the rounding mode
24977         is supported for each floating-point type.
24978         (do_test): Pass new arguments to test_in_one_mode using
24979         ROUNDING_TESTS.
24981 2013-06-13  Roland McGrath  <roland@hack.frob.com>
24983         * posix/tst-waitid.c (do_test): Distinguish different instances of
24984         stopped/continued in CHECK_SIGCHLD uses.  Insert a delay between
24985         sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
24986         before entering the kernel for waitpid.
24988 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
24990         * NEWS: Fix note on clock function precision.  Text by Roland
24991         McGrath.
24993 2013-06-13  Roland McGrath  <roland@hack.frob.com>
24995         * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
24996         it into place only when and if the sanity check passes.
24998 2013-06-13  Joseph Myers  <joseph@codesourcery.com>
25000         * stdlib/gen-tst-strtod-round.c (round_str): Always generate
25001         output for whether conversion result is exact.  Take argument
25002         indicating whether type is IBM long double.
25003         (round_for_all): Change need_exact field to ibm_ld.
25004         * stdlib/tst-strtod-round.c (struct exactness): New type.
25005         (struct test): Change bool ld_ok field to struct exactness exact.
25006         (TEST): Update all definitions for change to field.
25007         (tests): Regenerate array contents.
25008         (test_in_one_mode): Take pointer to new field instead of old ld_ok
25009         field value.  Check for IBM long double here.
25010         (do_test): Update calls to test_in_one_mode.
25012 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
25014         [BZ #12515]
25015         * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
25016         CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
25018 2013-06-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
25020         [BZ #15605]
25021         * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
25022         generated by the compiler on loop optimizations.
25023         * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
25024         general definitions.
25026 2013-06-12  Joseph Myers  <joseph@codesourcery.com>
25028         * math/bug-nextafter.c: Include <math-tests.h>.
25029         (main): Only test for exceptions if EXCEPTION_TESTS is true for
25030         the relevant type.
25031         * math/bug-nexttoward.c: Include <math-tests.h>.
25032         (main): Only test for exceptions if EXCEPTION_TESTS is true for
25033         the relevant type.
25034         * math/test-misc.c: Include <math-tests.h>.
25035         (main): Only test for exceptions if EXCEPTION_TESTS is true for
25036         the relevant type.
25038 2013-06-12  Andreas Jaeger  <aj@suse.de>
25040         * po/ia.po: Update Interlingua translation from translation
25041         project.
25043 2013-06-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
25045         * include/fenv.h: Include stdbool.h.
25046         (struct rm_ctx): New structure.
25047         * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
25048         Define macro.
25049         (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
25050         (SET_RESTORE_ROUNDF): Likewise.
25051         (SET_RESTORE_ROUNDL): Likewise.
25052         (SET_RESTORE_ROUND_NOEX): Likewise.
25053         (SET_RESTORE_ROUND_NOEXF): Likewise.
25054         (SET_RESTORE_ROUND_NOEXL): Likewise.
25055         (SET_RESTORE_ROUND_53BIT): Likewise.
25056         [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
25057         (libc_feresetround_noexf_ctx): Likewise.
25058         (libc_feresetround_noexl_ctx): Likewise.
25059         (libc_feholdsetround_53bit_ctx): Likewise.
25060         (libc_feresetround_53bit_ctx): Likewise.
25061         * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
25062         (libc_feholdexcept_setround_sse_ctx): New function.
25063         (libc_fesetenv_sse_ctx): Likewise.
25064         (libc_feupdateenv_sse_ctx): Likewise.
25065         (libc_feholdexcept_setround_387_prec_ctx): Likewise.
25066         (libc_feholdexcept_setround_387_ctx): Likewise.
25067         (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
25068         (libc_feholdsetround_387_prec_ctx): Likewise.
25069         (libc_feholdsetround_387_ctx): Likewise.
25070         (libc_feholdsetround_387_53bit_ctx): Likewise.
25071         (libc_feholdsetround_sse_ctx): Likewise.
25072         (libc_feresetround_sse_ctx): Likewise.
25073         (libc_feresetround_387_ctx): Likewise.
25074         (libc_feupdateenv_387_ctx): Likewise.
25075         (libc_feholdexcept_setroundf_ctx): Define macro.
25076         (libc_fesetenvf_ctx): Likewise.
25077         (libc_feupdateenvf_ctx): Likewise.
25078         (libc_feholdsetroundf_ctx): Likewise.
25079         (libc_feresetroundf_ctx): Likewise.
25080         (libc_feholdexcept_setround_ctx): Likewise.
25081         (libc_fesetenv_ctx): Likewise.
25082         (libc_feupdateenv_ctx): Likewise.
25083         (libc_feholdsetround_ctx): Likewise.
25084         (libc_feresetround_ctx): Likewise.
25085         (libc_feholdexcept_setroundl_ctx): Likewise.
25086         (libc_feupdateenvl_ctx): Likewise.
25087         (libc_feholdsetroundl_ctx): Likewise.
25088         (libc_feresetroundl_ctx): Likewise.
25089         [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
25090         (libc_feresetround_53bit_ctx): Likewise.
25092 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
25094         * locale/iso-639.def: Convert to UTF-8.
25096 2013-06-11  Joseph Myers  <joseph@codesourcery.com>
25098         * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
25099         (EXCEPTION_TESTS_double): Likewise.
25100         (EXCEPTION_TESTS_long_double): Likewise.
25101         (EXCEPTION_TESTS): Likewise.
25102         * math/libm-test.inc (test_exceptions): Only test exceptions if
25103         EXCEPTION_TESTS (FLOAT).
25105 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
25107         * benchtests/Makefile (string-bench): Add strcpy_chk and
25108         stpcpy_chk.
25109         * benchtests/bench-stpcpy_chk-ifunc.c: New file.
25110         * benchtests/bench-stpcpy_chk.c: New file.
25111         * benchtests/bench-strcpy_chk-ifunc.c: New file.
25112         * benchtests/bench-strcpy_chk.c: New file.
25113         * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
25114         code.
25115         (do_test): Likewise.
25117 2013-06-11  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
25119         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
25120         ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
25121         * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
25122         with tabs where appropriate.
25123         [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
25124         dl-procinfo.h.
25125         [PPC_PLATFORM_PPC440]: Likewise.
25126         [PPC_PLATFORM_PPC464]: Likewise.
25127         [PPC_PLATFORM_PPC476]: Likewise.
25128         (_dl_string_platform): Add support for detecting ppc405, ppc440,
25129         ppc464, and ppc476 platform strings merging from ports/
25130         dl-procinfo.h.
25132 2013-06-11  Andreas Schwab  <schwab@suse.de>
25134         [BZ #14991]
25135         * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
25136         (from_ucs4_idx): Regenerate.
25137         (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
25138         (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
25139         (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
25140         (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
25141         (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
25142         (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
25143         (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
25144         (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
25145         from FROM_LOOP and TO_LOOP specific macros.
25146         (BODY): Handle combining characters.
25147         * iconvdata/BIG5HKSCS.irreversible: Update.
25148         * iconvdata/BIG5HKSCS.precomposed: New file.
25149         * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
25150         characters.
25151         * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
25153 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
25155         * include/sys/time.h: Fix indentation and add copyright header.
25157         * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
25158         (do_test): Likewise.
25159         * string/test-memchr.c (do_one_test): Likewise.
25160         (do_test): Likewise.
25161         * string/test-memcmp.c (do_one_test): Likewise.
25162         (do_test): Likewise.
25163         * string/test-memcpy.c (do_one_test): Likewise.
25164         (do_test): Likewise.
25165         * string/test-memmem.c (do_one_test): Likewise.
25166         (do_test): Likewise.
25167         (do_random_tests): Likewise.
25168         * string/test-memmove.c (do_one_test): Likewise.
25169         (do_test): Likewise.
25170         * string/test-memset.c (do_one_test): Likewise.
25171         (do_test): Likewise.
25172         * string/test-rawmemchr.c (do_one_test): Likewise.
25173         (do_test): Likewise.
25174         * string/test-strcasecmp.c (do_one_test): Likewise.
25175         (do_test): Likewise.
25176         * string/test-strcasestr.c (do_one_test): Likewise.
25177         (do_test): Likewise.
25178         * string/test-strcat.c (do_one_test): Likewise.
25179         (do_test): Likewise.
25180         * string/test-strchr.c (do_one_test): Likewise.
25181         (do_test): Likewise.
25182         * string/test-strcmp.c (do_one_test): Likewise.
25183         (do_test): Likewise.
25184         * string/test-strcpy.c (do_one_test): Likewise.
25185         (do_test): Likewise.
25186         * string/test-string.h: Likewise.
25187         (test_init): Likewise.
25188         * string/test-strlen.c (do_one_test): Likewise.
25189         (do_test): Likewise.
25190         * string/test-strncasecmp.c (do_one_test): Likewise.
25191         (do_test): Likewise.
25192         * string/test-strncat.c (do_one_test): Likewise.
25193         (do_test): Likewise.
25194         * string/test-strncmp.c (do_one_test): Likewise.
25195         (do_test_limit): Likewise.
25196         (do_test): Likewise.
25197         * string/test-strncpy.c (do_one_test): Likewise.
25198         (do_test): Likewise.
25199         * string/test-strnlen.c (do_one_test): Likewise.
25200         (do_test): Likewise.
25201         * string/test-strpbrk.c (do_one_test): Likewise.
25202         (do_test): Likewise.
25203         * string/test-strrchr.c (do_one_test): Likewise.
25204         (do_test): Likewise.
25205         * string/test-strspn.c (do_one_test): Likewise.
25206         (do_test): Likewise.
25207         * string/test-strstr.c (do_one_test): Likewise.
25208         (do_test): Likewise.
25210         * benchtests/Makefile (string-bench): Add string benchmarks.
25211         * benchtests/bench-bcopy-ifunc.c: New file.
25212         * benchtests/bench-bcopy.c: New file.
25213         * benchtests/bench-bzero-ifunc.c: New file.
25214         * benchtests/bench-bzero.c: New file.
25215         * benchtests/bench-memccpy-ifunc.c: New file.
25216         * benchtests/bench-memccpy.c: New file.
25217         * benchtests/bench-memchr-ifunc.c: New file.
25218         * benchtests/bench-memchr.c: New file.
25219         * benchtests/bench-memcmp-ifunc.c: New file.
25220         * benchtests/bench-memcmp.c: New file.
25221         * benchtests/bench-memmem-ifunc.c: New file.
25222         * benchtests/bench-memmem.c: New file.
25223         * benchtests/bench-memmove-ifunc.c: New file.
25224         * benchtests/bench-memmove.c: New file.
25225         * benchtests/bench-mempcpy-ifunc.c: New file.
25226         * benchtests/bench-mempcpy.c: New file.
25227         * benchtests/bench-memset-ifunc.c: New file.
25228         * benchtests/bench-memset.c: New file.
25229         * benchtests/bench-rawmemchr-ifunc.c: New file.
25230         * benchtests/bench-rawmemchr.c: New file.
25231         * benchtests/bench-stpcpy-ifunc.c: New file.
25232         * benchtests/bench-stpcpy.c: New file.
25233         * benchtests/bench-stpncpy-ifunc.c: New file.
25234         * benchtests/bench-stpncpy.c: New file.
25235         * benchtests/bench-strcasecmp-ifunc.c: New file.
25236         * benchtests/bench-strcasecmp.c: New file.
25237         * benchtests/bench-strcasestr-ifunc.c: New file.
25238         * benchtests/bench-strcasestr.c: New file.
25239         * benchtests/bench-strcat-ifunc.c: New file.
25240         * benchtests/bench-strcat.c: New file.
25241         * benchtests/bench-strchr-ifunc.c: New file.
25242         * benchtests/bench-strchr.c: New file.
25243         * benchtests/bench-strchrnul-ifunc.c: New file.
25244         * benchtests/bench-strchrnul.c: New file.
25245         * benchtests/bench-strcmp-ifunc.c: New file.
25246         * benchtests/bench-strcmp.c: New file.
25247         * benchtests/bench-strcpy-ifunc.c: New file.
25248         * benchtests/bench-strcpy.c: New file.
25249         * benchtests/bench-strcspn-ifunc.c: New file.
25250         * benchtests/bench-strcspn.c: New file.
25251         * benchtests/bench-strlen-ifunc.c: New file.
25252         * benchtests/bench-strlen.c: New file.
25253         * benchtests/bench-strncasecmp-ifunc.c: New file.
25254         * benchtests/bench-strncasecmp.c: New file.
25255         * benchtests/bench-strncat-ifunc.c: New file.
25256         * benchtests/bench-strncat.c: New file.
25257         * benchtests/bench-strncmp-ifunc.c: New file.
25258         * benchtests/bench-strncmp.c: New file.
25259         * benchtests/bench-strncpy-ifunc.c: New file.
25260         * benchtests/bench-strncpy.c: New file.
25261         * benchtests/bench-strnlen-ifunc.c: New file.
25262         * benchtests/bench-strnlen.c: New file.
25263         * benchtests/bench-strpbrk-ifunc.c: New file.
25264         * benchtests/bench-strpbrk.c: New file.
25265         * benchtests/bench-strrchr-ifunc.c: New file.
25266         * benchtests/bench-strrchr.c: New file.
25267         * benchtests/bench-strspn-ifunc.c: New file.
25268         * benchtests/bench-strspn.c: New file.
25269         * benchtests/bench-strstr-ifunc.c: New file.
25270         * benchtests/bench-strstr.c: New file.
25272         * benchtests/Makefile: Disable parallel execution of targets.
25273         (string-bench): Add memcpy.
25274         (benchset): New variable to store a list of benchmark sets.
25275         (bench-func): Renamed from bench.
25276         (bench-set): New target.
25277         (bench): Depend on bench-func and bench-set.
25278         * benchtests/README: Add section on benchmark sets.
25279         * benchtests/bench-memcpy-ifunc.c: New file.
25280         * benchtests/bench-memcpy.c: New file.
25281         * benchtests/bench-string.h: New file.
25283 2013-06-11  Andreas Schwab  <schwab@suse.de>
25285         [BZ #15577]
25286         * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
25287         * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
25288         values in the triple.
25289         * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
25290         terminator in the group key.
25292 2013-06-11  Andreas Jaeger  <aj@suse.de>
25294         * po/zh_TW.po: Update Chinese (traditional) translation from
25295         translation project.
25297 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
25299         * include/time.h (__clock_gettime): Add libc_hidden_proto.
25300         * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
25301         __clock_getcpuclockid.  Add weak_alias and libc_hidden_def.
25302         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
25303         (clock_getcpuclockid): Likewise.
25304         * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
25305         Add weak_alias and libc_hidden_def.
25306         * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
25307         * rt/clock_gettime.c (clock_gettime): Rename to
25308         __clock_gettime.  Add weak_alias and libc_hidden_def.
25309         * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
25310         * rt/clock_nanosleep.c (clock_nanosleep): Rename to
25311         __clock_nanosleep.  Add weak_alias and libc_hidden_def.
25312         * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
25313         * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
25314         Likewise.
25315         * rt/clock_settime.c (clock_settime): Rename to
25316         __clock_settime.  Add weak_alias and libc_hidden_def.
25317         * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
25319 2013-06-10  Joseph Myers  <joseph@codesourcery.com>
25321         * mach/err_boot.sub: Remove trailing whitespace.
25322         * mach/err_ipc.sub: Likewise.
25323         * mach/err_mach.sub: Likewise.
25325         * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
25326         (ROUNDING_TESTS_double): Likewise.
25327         (ROUNDING_TESTS_long_double): Likewise.
25328         (ROUNDING_TESTS): Likewise.
25329         * math/libm-test.inc: Include <math-tests.h>.
25330         (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
25331         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
25332         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
25333         (IF_ROUND_INIT_FE_UPWARD): Likewise.
25335 2013-06-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
25337         * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
25338         of assigning.
25340 2013-06-08  Joseph Myers  <joseph@codesourcery.com>
25342         * sysdeps/gnu/errlist.awk: Do not generate space at end of
25343         otherwise empty TRANS lines.
25344         * sysdeps/gnu/errlist.c: Regenerated.
25346         * catgets/gencat.c (error_print): Use (void) in function
25347         definition.
25348         * crypt/crypt_util.c (__init_des): Likewise.
25349         * crypt/speeds.c (Stop): Likewise.
25350         (main): Likewise.
25351         * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
25352         * inet/ruserpass.c (token): Likewise.
25353         * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
25354         * intl/localealias.c (extend_alias_table): Likewise.
25355         * intl/plural-exp.c (init_germanic_plural): Likewise.
25356         * libio/fcloseall.c (__fcloseall): Likewise.
25357         * libio/genops.c (_IO_flush_all): Likewise.
25358         (_IO_flush_all_linebuffered): Likewise.
25359         (_IO_cleanup): Likewise.
25360         (_IO_iter_begin): Likewise.
25361         (_IO_iter_end): Likewise.
25362         (_IO_list_lock): Likewise.
25363         (_IO_list_unlock): Likewise.
25364         (_IO_list_resetlock): Likewise.
25365         * libio/getchar.c (getchar): Likewise.
25366         * libio/getchar_u.c (getchar_unlocked): Likewise.
25367         * libio/getwchar.c (getwchar): Likewise.
25368         * libio/getwchar_u.c (getwchar_unlocked): Likewise.
25369         * libio/oldstdfiles.c (_IO_check_libio): Likewise.
25370         * login/getpt.c (__getpt): Likewise.
25371         * login/tst-utmp.c (main): Likewise.
25372         * malloc/hooks.c (__malloc_check_init): Likewise.
25373         * malloc/malloc.c (__malloc_stats): Likewise.
25374         * malloc/mtrace.c (tr_break): Likewise.
25375         (mtrace): Likewise.
25376         (muntrace): Likewise.
25377         * misc/fstab.c (endfsent): Likewise.
25378         * misc/getclktck.c (__getclktck): Likewise.
25379         * misc/getdtsz.c (__getdtablesize): Likewise.
25380         * misc/gethostid.c (gethostid): Likewise.
25381         * misc/getpagesize.c (__getpagesize): Likewise.
25382         * misc/getsysstats.c (__get_nprocs_conf): Likewise.
25383         (__get_nprocs): Likewise.
25384         (__get_phys_pages): Likewise.
25385         (__get_avphys_pages): Likewise.
25386         * misc/getttyent.c (getttyent): Likewise.
25387         (setttyent): Likewise.
25388         (endttyent): Likewise.
25389         * misc/getusershell.c (getusershell): Likewise.
25390         (endusershell): Likewise.
25391         (setusershell): Likewise.
25392         (initshells): Likewise.
25393         * misc/hsearch.c (__hdestroy): Likewise.
25394         * misc/sync.c (sync): Likewise.
25395         * misc/syslog.c (closelog_internal): Likewise.
25396         (closelog): Likewise.
25397         * misc/ttyslot.c (ttyslot): Likewise.
25398         * misc/vhangup.c (vhangup): Likewise.
25399         * posix/fork.c (__fork): Likewise.
25400         * posix/getegid.c (__getegid): Likewise.
25401         * posix/geteuid.c (__geteuid): Likewise.
25402         * posix/getgid.c (__getgid): Likewise.
25403         * posix/getpid.c (__getpid): Likewise.
25404         * posix/getppid.c (__getppid): Likewise.
25405         * posix/getuid.c (__getuid): Likewise.
25406         * posix/pause.c (pause): Likewise.
25407         * posix/setpgrp.c (setpgrp): Likewise.
25408         * posix/setsid.c (__setsid): Likewise.
25409         * posix/test-vfork.c (noop): Likewise.
25410         * resolv/gethnamaddr.c (_endhtent): Likewise.
25411         (_gethtent): Likewise.
25412         (ht_endhostent): Likewise.
25413         (gethostent): Likewise.
25414         (dns_service): Likewise.
25415         * stdlib/drand48.c (drand48): Likewise.
25416         * stdlib/lrand48.c (lrand48): Likewise.
25417         * stdlib/mrand48.c (mrand48): Likewise.
25418         * stdlib/rand.c (rand): Likewise.
25419         * stdlib/random.c (__random): Likewise.
25420         * stdlib/setenv.c (clearenv): Likewise.
25421         * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
25422         * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
25423         * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
25424         * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
25425         (__get_nprocs): Likewise.
25426         (__get_phys_pages): Likewise.
25427         (__get_avphys_pages): Likewise.
25428         * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
25429         * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
25430         * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
25431         * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
25432         * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
25433         * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
25434         * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
25435         * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
25436         * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
25437         * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
25438         * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
25439         * sysdeps/mach/hurd/sync.c (sync): Likewise.
25440         * sysdeps/posix/clock.c (clock): Likewise.
25441         * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
25442         * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
25443         * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
25444         * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
25445         * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
25446         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
25447         (__get_nprocs_conf): Likewise.
25448         (__get_phys_pages): Likewise.
25449         (__get_avphys_pages): Likewise.
25450         * time/clock.c (clock): Likewise.
25451         * time/tzset.c (__tzname_max): Likewise.
25453 2013-06-07  Joseph Myers  <joseph@codesourcery.com>
25455         * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
25456         (__bswap_32): Do not use "register".
25457         * crypt/crypt.c (_ufc_doit_r): Likewise.
25458         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
25459         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
25460         * gmon/gmon.c (__monstartup): Likewise.
25461         * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
25462         * hurd/hurdmalloc.c (more_memory): Likewise.
25463         (malloc): Likewise.
25464         (free): Likewise.
25465         (realloc): Likewise.
25466         (malloc_fork_prepare): Likewise.
25467         (malloc_fork_parent): Likewise.
25468         (malloc_fork_child): Likewise.
25469         * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
25470         (_svcauth_des): Likewise.
25471         * inet/inet_lnaof.c (inet_lnaof): Likewise.
25472         * inet/inet_net.c (inet_network): Likewise.
25473         * inet/inet_netof.c (inet_netof): Likewise.
25474         * inet/rcmd.c (__validuser2_sa): Likewise.
25475         * io/fts.c (fts_open): Likewise.
25476         (fts_load): Likewise.
25477         (fts_close): Likewise.
25478         (fts_read): Likewise.
25479         (fts_children): Likewise.
25480         (fts_build): Likewise.
25481         (fts_stat): Likewise.
25482         (fts_sort): Likewise.
25483         (fts_alloc): Likewise.
25484         (fts_lfree): Likewise.
25485         * libio/fileops.c (_IO_new_file_xsputn): Likewise.
25486         (_IO_file_xsgetn): Likewise.
25487         (_IO_file_xsgetn_mmap): Likewise.
25488         * libio/iofopncook.c (_IO_cookie_read): Likewise.
25489         (_IO_cookie_write): Likewise.
25490         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
25491         * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
25492         * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
25493         * malloc/obstack.c (_obstack_begin): Likewise.
25494         (_obstack_begin_1): Likewise.
25495         (_obstack_newchunk): Likewise.
25496         (_obstack_allocated_p): Likewise.
25497         (obstack_free): Likewise.
25498         (_obstack_memory_used): Likewise.
25499         * misc/getttyent.c (getttynam): Likewise.
25500         (getttyent): Likewise.
25501         (skip): Likewise.
25502         (value): Likewise.
25503         * misc/getusershell.c (initshells): Likewise.
25504         * misc/syslog.c (__vsyslog_chk): Likewise.
25505         * misc/ttyslot.c (ttyslot): Likewise.
25506         * nis/nis_hash.c (__nis_hash): Likewise.
25507         * posix/fnmatch_loop.c (FCT): Likewise.
25508         * posix/getconf.c (print_all): Likewise.
25509         (main): Likewise.
25510         * posix/getopt.c (exchange): Likewise.
25511         * posix/glob.c (globfree): Likewise.
25512         (prefix_array): Likewise.
25513         (__glob_pattern_type): Likewise.
25514         * resolv/arpa/nameser.h (NS_GET16): Likewise.
25515         (NS_GET32): Likewise.
25516         (NS_PUT16): Likewise.
25517         (NS_PUT32): Likewise.
25518         * resolv/gethnamaddr.c (getanswer): Likewise.
25519         (gethostbyname2): Likewise.
25520         (gethostbyaddr): Likewise.
25521         (_gethtent): Likewise.
25522         (_gethtbyname2): Likewise.
25523         (_gethtbyaddr): Likewise.
25524         * resolv/ns_print.c (dst_s_get_int16): Likewise.
25525         * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
25526         * resolv/res_init.c (__res_vinit): Likewise.
25527         (net_mask): Likewise.
25528         * resolv/res_mkquery.c (outchar): Likewise.
25529         (PRINT): Likewise.
25530         * stdio-common/printf_fp.c (outchar): Likewise.
25531         (PRINT): Likewise.
25532         * stdio-common/printf_fphex.c (outchar): Likewise.
25533         (PRINT): Likewise.
25534         * stdio-common/printf_size.c (outchar): Likewise.
25535         (PRINT): Likewise.
25536         * stdio-common/test_rdwr.c (main): Likewise.
25537         * stdio-common/tfformat.c (matches): Likewise.
25538         * stdio-common/vfprintf.c (outchar): Likewise.
25539         (printf_unknown): Likewise.
25540         (buffered_vfprintf): Likewise.
25541         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
25542         * stdio-common/xbug.c (AppendToBuffer): Likewise.
25543         (ReadFile): Likewise.
25544         * stdlib/qsort.c (SWAP): Likewise.
25545         (_quicksort): Likewise.
25546         * stdlib/setenv.c (__add_to_environ): Likewise.
25547         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
25548         * stdlib/strtol_l.c (__strtol_l): Likewise.
25549         * stdlib/tst-strtod.c (main): Likewise.
25550         * stdlib/tst-strtol.c (main): Likewise.
25551         * stdlib/tst-strtoll.c (main): Likewise.
25552         * string/bits/string2.h (__strcmp_cc): Likewise.
25553         (__strcmp_cg): Likewise.
25554         (__strcspn_c1): Likewise.
25555         (__strcspn_c2): Likewise.
25556         (__strcspn_c3): Likewise.
25557         (__strspn_c1): Likewise.
25558         (__strspn_c2): Likewise.
25559         (__strspn_c3): Likewise.
25560         (__strsep_1c): Likewise.
25561         (__strsep_2c): Likewise.
25562         (__strsep_3c): Likewise.
25563         * string/memccpy.c (__memccpy): Likewise.
25564         * string/stpcpy.c (__stpcpy): Likewise.
25565         * string/strcmp.c (strcmp): Likewise.
25566         * string/strrchr.c (strrchr): Likewise.
25567         * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
25568         Likewise.
25569         * sysdeps/mach/hurd/getcwd.c
25570         (_hurd_canonicalize_directory_name_internal): Likewise.
25571         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
25572         * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
25573         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
25574         * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
25575         Likewise, in both definitions.
25576         * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
25577         definitions.
25578         [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
25579         64] (__bswap_64): Likewise.
25580         * time/test_time.c (main): Likewise.
25581         * time/tzfile.c (__tzfile_read): Likewise.
25582         (__tzfile_compute): Likewise.
25583         * time/tzset.c (__tzset_parse_tz): Likewise.
25584         (tzset_internal): Likewise.
25585         (compute_change): Likewise.
25586         * wcsmbs/wcscat.c (__wcscat): Likewise.
25587         * wcsmbs/wcschr.c (wcschr): Likewise.
25588         * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
25589         * wcsmbs/wcscspn.c (wcscspn): Likewise.
25590         * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
25591         * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
25592         * wcsmbs/wcsspn.c (wcsspn): Likewise.
25593         * wcsmbs/wcsstr.c (wcsstr): Likewise.
25594         * wcsmbs/wmemchr.c (wmemchr): Likewise.
25595         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
25596         * wcsmbs/wmemset.c (wmemset): Likewise.
25598 2013-06-06  Joseph Myers  <joseph@codesourcery.com>
25600         * scripts/config.guess: Update to version 2013-05-16.
25601         * scripts/config.sub: Update to version 2013-04-24.
25602         * scripts/install-sh: Update to version 2011-11-20.07.
25603         * scripts/mkinstalldirs: Update to version 2009-04-28.21.
25604         * scripts/move-if-change: Update to version 2012-01-06 07:23.
25606 2013-06-06   Ondřej Bílka  <neleai@seznam.cz>
25608         * debug/fgetws_u_chk.c: Fix leading whitespaces.
25609         * elf/sln.c: Likewise.
25610         * hurd/hurd/ioctl.h: Likewise.
25611         * hurd/hurdmalloc.c: Likewise.
25612         * hurd/xattr.c: Likewise.
25613         * include/shlib-compat.h: Likewise.
25614         * inet/ruserpass.c: Likewise.
25615         * libio/iofgets_u.c: Likewise.
25616         * libio/iofgetws_u.c: Likewise.
25617         * locale/programs/ld-identification.c: Likewise.
25618         * locale/programs/ld-time.c: Likewise.
25619         * mach/msg-destroy.c: Likewise.
25620         * nss/nss_files/files-netgrp.c: Likewise.
25621         * resolv/res_data.c: Likewise.
25622         * soft-fp/op-1.h: Likewise.
25623         * soft-fp/op-2.h: Likewise.
25624         * soft-fp/op-4.h: Likewise.
25625         * soft-fp/op-common.h: Likewise.
25626         * stdio-common/printf_fphex.c: Likewise.
25627         * stdlib/strtod_l.c: Likewise.
25628         * sunrpc/rpc/clnt.h: Likewise.
25629         * sysdeps/generic/framestate.c: Likewise.
25630         * sysdeps/i386/bsd-_setjmp.S: Likewise.
25631         * sysdeps/i386/bsd-setjmp.S: Likewise.
25632         * sysdeps/i386/__longjmp.S: Likewise.
25633         * sysdeps/i386/setjmp.S: Likewise.
25634         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
25635         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
25636         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
25637         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
25638         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
25639         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
25640         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
25641         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
25642         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
25643         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
25644         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
25645         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
25646         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
25647         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
25648         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
25649         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
25650         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
25651         * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
25652         * sysdeps/ieee754/support.c: Likewise.
25653         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
25654         * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
25655         * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
25656         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
25657         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
25658         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
25659         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
25660         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
25661         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
25662         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
25663         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
25664         * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
25665         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
25666         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
25667         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
25668         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
25669         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
25670         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
25672 2013-06-05  Ondřej Bílka  <neleai@seznam.cz>
25674         * posix/transbug.c: Remove executable mode.
25676 2013-06-05  Joseph Myers  <joseph@codesourcery.com>
25678         * crypt/speeds.c: Remove trailing whitespace.
25679         * dlfcn/default.c: Likewise.
25680         * elf/ifuncdep2.c: Likewise.
25681         * elf/ifuncmain1.c: Likewise.
25682         * elf/ifuncmain1vis.c: Likewise.
25683         * elf/testobj.h: Likewise.
25684         * elf/tst-stackguard1.c: Likewise.
25685         * gmon/sys/gmon.h: Likewise.
25686         * hurd/hurdmsg.c: Likewise.
25687         * hurd/new-fd.c: Likewise.
25688         * hurd/ports-get.c: Likewise.
25689         * iconvdata/ibm1008_420.c: Likewise.
25690         * inet/tst-getni1.c: Likewise.
25691         * inet/tst-getni2.c: Likewise.
25692         * libio/ioungetc.c: Likewise.
25693         * libio/wfiledoalloc.c: Likewise.
25694         * manual/libm-err-tab.pl: Likewise.
25695         * math/w_dremf.c: Likewise.
25696         * misc/ftruncate.c: Likewise.
25697         * posix/bug-glob2.c: Likewise.
25698         * posix/tst-pcre.c: Likewise.
25699         * posix/wait4.c: Likewise.
25700         * resolv/README: Likewise.
25701         * resolv/res_debug.h: Likewise.
25702         * resolv/tst-inet_ntop.c: Likewise.
25703         * setjmp/bug269-setjmp.c: Likewise.
25704         * soft-fp/extended.h: Likewise.
25705         * soft-fp/op-1.h: Likewise.
25706         * soft-fp/op-2.h: Likewise.
25707         * soft-fp/op-4.h: Likewise.
25708         * soft-fp/op-8.h: Likewise.
25709         * soft-fp/testit.c: Likewise.
25710         * stdio-common/bug16.c: Likewise.
25711         * stdlib/random.c: Likewise.
25712         * sunrpc/rpcsvc/rquota.x: Likewise.
25713         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
25714         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
25715         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
25716         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
25717         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
25718         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
25719         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
25720         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
25721         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
25722         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
25723         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
25724         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
25725         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
25726         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
25727         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
25728         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
25729         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
25730         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
25731         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
25732         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
25733         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
25734         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
25735         * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
25736         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
25737         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
25738         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
25739         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
25740         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
25741         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
25742         * sysdeps/ieee754/s_lib_version.c: Likewise.
25743         * sysdeps/mach/hurd/check_fds.c: Likewise.
25744         * sysdeps/mach/hurd/getsockname.c: Likewise.
25745         * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
25746         * sysdeps/mach/hurd/recvfrom.c: Likewise.
25747         * sysdeps/powerpc/bits/link.h: Likewise.
25748         * sysdeps/powerpc/dl-procinfo.c: Likewise.
25749         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
25750         * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
25751         * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
25752         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
25753         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
25754         * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
25755         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
25756         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
25757         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
25758         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
25759         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
25760         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
25761         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
25762         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
25763         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
25764         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
25765         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
25766         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
25767         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
25768         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
25769         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
25770         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
25771         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
25772         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
25773         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
25774         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
25775         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
25776         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
25777         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
25778         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
25779         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
25780         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
25781         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
25782         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
25783         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
25784         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
25785         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
25786         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
25787         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
25788         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
25789         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
25790         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
25791         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
25792         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
25793         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
25794         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
25795         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
25796         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
25797         * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
25798         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
25799         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
25800         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
25801         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
25802         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
25803         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
25804         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
25805         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
25806         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
25807         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
25808         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
25809         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
25810         * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
25811         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
25812         * sysdeps/powerpc/sysdep.h: Likewise.
25813         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
25814         * sysdeps/s390/s390-64/sub_n.S: Likewise.
25815         * sysdeps/sh/dl-trampoline.S: Likewise.
25816         * sysdeps/sh/memset.S: Likewise.
25817         * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
25818         * sysdeps/sh/strlen.S: Likewise.
25819         * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
25820         * sysdeps/sparc/sparc32/dotmul.S: Likewise.
25821         * sysdeps/sparc/sparc32/memcpy.S: Likewise.
25822         * sysdeps/sparc/sparc32/rem.S: Likewise.
25823         * sysdeps/sparc/sparc32/sdiv.S: Likewise.
25824         * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
25825         * sysdeps/sparc/sparc32/strchr.S: Likewise.
25826         * sysdeps/sparc/sparc32/udiv.S: Likewise.
25827         * sysdeps/sparc/sparc32/urem.S: Likewise.
25828         * sysdeps/sparc/sparc64/add_n.S: Likewise.
25829         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
25830         * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
25831         * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
25832         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
25833         * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
25834         * sysdeps/sparc/sparc64/strncmp.S: Likewise.
25835         * sysdeps/sparc/sparc64/strncpy.S: Likewise.
25836         * sysdeps/unix/bsd/times.c: Likewise.
25837         * sysdeps/unix/sysv/linux/a.out.h: Likewise.
25838         * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
25839         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
25840         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
25841         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
25842         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
25843         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
25844         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
25845         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
25846         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
25847         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
25848         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
25849         * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
25850         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
25851         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
25852         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
25853         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
25854         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
25855         * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
25856         * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
25857         * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
25858         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
25859         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
25860         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
25861         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
25862         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
25863         * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
25864         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
25865         * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
25866         * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
25867         * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
25868         * sysdeps/x86_64/strcspn.S: Likewise.
25870 2013-06-05  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
25872         * locale/C-translit.h: Revert #include <stdint.h> because this is a
25873         generated file.  Regenerate properly from gen-translit.pl.
25874         * locale/gen-translit.pl: Add #include <stdint.h>.  This generates
25875         locale/C-translit.h.
25877 2013-06-05  Andreas Schwab  <schwab@suse.de>
25879         [BZ #15100]
25880         * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
25881         week as 6 instead of -1.
25882         * time/tst-strptime.c (day_tests): Add test case.
25884 2013-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
25886         * sysdeps/generic/math_private.h
25887         (libc_feholdexcept_setround_53bit): Replace with
25888         libc_feholdsetround_53bit.
25889         (libc_feupdateenv_53bit): Replace with
25890         libc_feresetround_53bit.
25891         (SET_RESTORE_ROUND_53BIT): Adjust.
25893 2013-06-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
25895         * string/test-strchrnul.c: Add copyright header.
25897         * posix/tst-getaddrinfo4.c: Increase test timeout.
25899 2013-06-03  Carlos O'Donell  <carlos@redhat.com>
25901         [BZ #15536]
25902         * math/libm-test.inc (MAX_EXP): Remove
25903         (MIN_EXP): Define.
25904         (ulp): Use MIN_EXP - MANT_DIG.
25905         (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
25907 2013-05-31  Carlos O'Donell  <carlos@redhat.com>
25909         * po/be.po: Revert last change.
25910         * po/zh_CN.po: Likewise.
25911         * po/header.pot: Likewise.
25913 2013-05-31  Joseph Myers  <joseph@codesourcery.com>
25915         * Makefile ($(common-objpfx)linkobj/libc.so): Define
25916         link-libc-deps to empty as target-specific variable.
25917         * Makerules (link-libc-args): New variable.
25918         (libc-for-link): Likewise.
25919         (link-libc-deps): Likewise.
25920         (lib%.so): Depend on $(link-libc-deps).  Link with
25921         $(link-libc-args).
25922         (build-module): Link with $(link-libc-args).
25923         (build-module-asneeded): Likewise.
25924         (build-module-helper-objlist): Filter out $(link-libc-deps) from
25925         list of objects.
25926         ($(common-objpfx)libc.so): Define link-libc-deps to empty as
25927         target-specific variable.
25928         ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
25929         $(link-libc-deps) instead of libc.so and libc_nonshared.a.
25930         * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
25931         libc.
25932         * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
25933         libc and ld.so.
25934         ($(objpfx)libpcprofile.so): Likewise.
25935         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
25936         libc_nonshared.a.
25937         ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
25938         * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
25939         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
25940         $(link-libc-deps).
25941         ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
25942         * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
25943         * login/Makefile ($(objpfx)libutil.so): Likewise.
25944         * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
25945         * math/Makefile ($(objpfx)libm.so): Likewise.
25946         * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
25947         $(objpfx)libnsl.so): Define libc-for-link as target-specific
25948         variable instead of depending directly on libc.
25949         * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
25950         ($(objpfx)/libnss_test1.so): Change dependencies on libc to
25951         $(link-libc-deps).
25952         * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
25953         libc.
25954         [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
25955         ($(objpfx)libnss_dns.so): Remove dependencies on libc.
25956         ($(objpfx)libanl.so): Likewise.
25957         * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
25958         ld.so.
25959         * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
25960         $(link-libc-deps).
25961         * sysdeps/i386/fpu/Makefile: Remove file.
25962         * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
25963         ($(objpfx)libm.so): Remove dependency on ld.so.
25965 2013-05-30  Patsy Franklin  <pfrankli@redhat.com>
25967         [BZ # 15553]
25968         * nis/yp_xdr.c (XDRMAXNAME): Define.
25969         (XDRMAXRECORD): Define.
25970         (xdr_domainname): Use XDRMAXNAME.
25971         (xdr_mapname): Likewise.
25972         (xdr_peername): Likewise.
25973         (xdr_keydat): Use XDRMAXRECORD.
25974         (xdr_valdat): Likewise.
25976 2013-05-30  Jeff Law  <law@redhat.com>
25978         [BZ #14256]
25979         * manual/errno.texi (ESTALE): Update to account for more than
25980         just NFS file systems.
25981         * sysdeps/gnu/errlist.c: Regenerated.
25983 2013-05-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
25985         [BZ #15465]
25986         * elf/Makefile (tests): Add tst-null-argv.
25987         (modules-names):  Add tst-null-argv-lib.
25988         ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
25989         (tst-null-argv-ENV): Set environment for tst-null-argv.
25990         * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
25991         (RTLD_PROGNAME): New macro.
25992         * elf/tst-null-argv.c: New test case.
25993         * elf/tst-null-argv-lib.c: Library for test case.
25994         * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
25995         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
25996         * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
25997         * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
25998         * elf/dl-init.c (call_init): Likewise.
25999         (_dl_init): Likewise.
26000         * elf/dl-load.c (print_search_path): Likewise.
26001         (_dl_map_object): Likewise.
26002         * elf/dl-lookup.c (do_lookup_x): Likewise.
26003         (add_dependency): Likewise.
26004         (_dl_lookup_symbol_x): Likewise.
26005         (_dl_debug_bindings): Likewise.
26006         * elf/dl-open.c (_dl_show_scope): Likewise.
26007         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
26008         * elf/dl-version.c (match_symbol): Likewise.
26009         (_dl_check_map_versions): Likewise.
26010         * elf/rtld.c (dl_main): Likewise.
26011         (print_unresolved): Use RTLD_PROGNAME.
26012         (print_missing_version): Likewise.
26013         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
26014         (elf_machine_rela): Likewise.
26015         * sysdeps/powerpc/powerpc32/dl-machine.c
26016         (__process_machine_rela): Likewise.
26017         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
26018         Likewise.
26019         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
26020         Likewise.
26021         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
26022         Likewise.
26023         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
26024         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
26025         Likewise.
26026         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
26027         Likewise.
26028         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
26030 2013-05-28  Carlos O'Donell  <carlos@redhat.com>
26032         * po/be.po: Add descriptive title.
26033         * po/zh_CN.po: Likewise.
26034         * po/header.pot: Likewise.
26036 2013-05-28  Mike Frysinger  <vapier@gentoo.org>
26038         * locale/programs/locarchive.c (create_archive): Inlucde fname in
26039         error message.
26040         (enlarge_archive): Likewise.
26042 2013-05-28  Ben North  <ben@redfrontdoor.org>
26044         * manual/arith.texi (frexp): It is the magnitude of the return
26045         value which lies in [0.5, 1), not the return value itself.
26047 2013-05-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26049         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26051 2013-05-26  Thomas Schwinge  <thomas@codesourcery.com>
26053         * stdio-common/bug26.c (main): Correct fscanf template.
26055         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
26056         declare _dl_skip_args.
26058         * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
26059         Don't declare.
26061         * manual/platform.texi: Add missing @end deftypefun.
26063 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
26065         [BZ #15529]
26066         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
26067         bit of mantissa of 2^16382.
26068         * math/libm-test.inc (hypot_test_data): Add more tests.
26070         * math/libm-test.inc: Add drem and pow10 to list of tested
26071         functions.
26072         (pow10_test): New function.
26073         (drem_test): Likewise.
26074         (drem_test_tonearest): Likewise.
26075         (drem_test_towardzero): Likewise.
26076         (drem_test_downward): Likewise.
26077         (drem_test_upward): Likewise.
26078         (main): Call the new functions.
26080         * math/libm-test.inc (finite_test_data): Remove.
26081         (finite_test): Run tests from isfinite_test_data.
26082         (gamma_test_data): Remove.
26083         (gamma_test): Run tests from lgamma_test_data.
26084         * sysdeps/i386/fpu/libm-test-ulps: Update.
26085         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26087 2013-05-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26089         * manual/platform.texi: Add PowerPC PPR function set documentation.
26090         * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
26091         implementation.
26093 2013-05-24  Carlos O'Donell  <carlos@redhat.com>
26095         * math/libm-test.inc (MAX_EXP): Define.
26096         (ULPDIFF): Define.
26097         (ulp): New function.
26098         (check_float_internal): Use ULPDIFF.
26099         (cpow_test): Disable failing test.
26100         (check_ulp): Test ulp() implemetnation.
26101         (main): Call check_ulp before starting tests.
26103 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
26105         * math/gen-libm-test.pl (generate_testfile): Do not handle
26106         START_DATA and END_DATA.
26107         * math/libm-test.inc (acos_test_data): Do not use START_DATA and
26108         END_DATA.
26109         (acos_tonearest_test_data): Likewise.
26110         (acos_towardzero_test_data): Likewise.
26111         (acos_downward_test_data): Likewise.
26112         (acos_upward_test_data): Likewise.
26113         (acosh_test_data): Likewise.
26114         (asin_test_data): Likewise.
26115         (asin_tonearest_test_data): Likewise.
26116         (asin_towardzero_test_data): Likewise.
26117         (asin_downward_test_data): Likewise.
26118         (asin_upward_test_data): Likewise.
26119         (asinh_test_data): Likewise.
26120         (atan_test_data): Likewise.
26121         (atanh_test_data): Likewise.
26122         (atan2_test_data): Likewise.
26123         (cabs_test_data): Likewise.
26124         (cacos_test_data): Likewise.
26125         (cacosh_test_data): Likewise.
26126         (carg_test_data): Likewise.
26127         (casin_test_data): Likewise.
26128         (casinh_test_data): Likewise.
26129         (catan_test_data): Likewise.
26130         (catanh_test_data): Likewise.
26131         (cbrt_test_data): Likewise.
26132         (ccos_test_data): Likewise.
26133         (ccosh_test_data): Likewise.
26134         (ceil_test_data): Likewise.
26135         (cexp_test_data): Likewise.
26136         (cimag_test_data): Likewise.
26137         (clog_test_data): Likewise.
26138         (clog10_test_data): Likewise.
26139         (conj_test_data): Likewise.
26140         (copysign_test_data): Likewise.
26141         (cos_test_data): Likewise.
26142         (cos_tonearest_test_data): Likewise.
26143         (cos_towardzero_test_data): Likewise.
26144         (cos_downward_test_data): Likewise.
26145         (cos_upward_test_data): Likewise.
26146         (cosh_test_data): Likewise.
26147         (cosh_tonearest_test_data): Likewise.
26148         (cosh_towardzero_test_data): Likewise.
26149         (cosh_downward_test_data): Likewise.
26150         (cosh_upward_test_data): Likewise.
26151         (cpow_test_data): Likewise.
26152         (cproj_test_data): Likewise.
26153         (creal_test_data): Likewise.
26154         (csin_test_data): Likewise.
26155         (csinh_test_data): Likewise.
26156         (csqrt_test_data): Likewise.
26157         (ctan_test_data): Likewise.
26158         (ctan_tonearest_test_data): Likewise.
26159         (ctan_towardzero_test_data): Likewise.
26160         (ctan_downward_test_data): Likewise.
26161         (ctan_upward_test_data): Likewise.
26162         (ctanh_test_data): Likewise.
26163         (ctanh_tonearest_test_data): Likewise.
26164         (ctanh_towardzero_test_data): Likewise.
26165         (ctanh_downward_test_data): Likewise.
26166         (ctanh_upward_test_data): Likewise.
26167         (erf_test_data): Likewise.
26168         (erfc_test_data): Likewise.
26169         (exp_test_data): Likewise.
26170         (exp_tonearest_test_data): Likewise.
26171         (exp_towardzero_test_data): Likewise.
26172         (exp_downward_test_data): Likewise.
26173         (exp_upward_test_data): Likewise.
26174         (exp10_test_data): Likewise.
26175         (exp2_test_data): Likewise.
26176         (expm1_test_data): Likewise.
26177         (fabs_test_data): Likewise.
26178         (fdim_test_data): Likewise.
26179         (finite_test_data): Likewise.
26180         (floor_test_data): Likewise.
26181         (fma_test_data): Likewise.
26182         (fma_towardzero_test_data): Likewise.
26183         (fma_downward_test_data): Likewise.
26184         (fma_upward_test_data): Likewise.
26185         (fmax_test_data): Likewise.
26186         (fmin_test_data): Likewise.
26187         (fmod_test_data): Likewise.
26188         (fpclassify_test_data): Likewise.
26189         (frexp_test_data): Likewise.
26190         (gamma_test_data): Likewise.
26191         (hypot_test_data): Likewise.
26192         (ilogb_test_data): Likewise.
26193         (isfinite_test_data): Likewise.
26194         (isgreater_test_data): Likewise.
26195         (isgreaterequal_test_data): Likewise.
26196         (isinf_test_data): Likewise.
26197         (isless_test_data): Likewise.
26198         (islessequal_test_data): Likewise.
26199         (islessgreater_test_data): Likewise.
26200         (isnan_test_data): Likewise.
26201         (isnormal_test_data): Likewise.
26202         (issignaling_test_data): Likewise.
26203         (isunordered_test_data): Likewise.
26204         (j0_test_data): Likewise.
26205         (j1_test_data): Likewise.
26206         (jn_test_data): Likewise.
26207         (ldexp_test_data): Likewise.
26208         (lgamma_test_data): Likewise.
26209         (lrint_test_data): Likewise.
26210         (lrint_tonearest_test_data): Likewise.
26211         (lrint_towardzero_test_data): Likewise.
26212         (lrint_downward_test_data): Likewise.
26213         (lrint_upward_test_data): Likewise.
26214         (llrint_test_data): Likewise.
26215         (llrint_tonearest_test_data): Likewise.
26216         (llrint_towardzero_test_data): Likewise.
26217         (llrint_downward_test_data): Likewise.
26218         (llrint_upward_test_data): Likewise.
26219         (log_test_data): Likewise.
26220         (log10_test_data): Likewise.
26221         (log1p_test_data): Likewise.
26222         (log2_test_data): Likewise.
26223         (logb_test_data): Likewise.
26224         (logb_downward_test_data): Likewise.
26225         (lround_test_data): Likewise.
26226         (llround_test_data): Likewise.
26227         (modf_test_data): Likewise.
26228         (nearbyint_test_data): Likewise.
26229         (nextafter_test_data): Likewise.
26230         (nexttoward_test_data): Likewise.
26231         (pow_test_data): Likewise.
26232         (pow_tonearest_test_data): Likewise.
26233         (pow_towardzero_test_data): Likewise.
26234         (pow_downward_test_data): Likewise.
26235         (pow_upward_test_data): Likewise.
26236         (remainder_test_data): Likewise.
26237         (remainder_tonearest_test_data): Likewise.
26238         (remainder_towardzero_test_data): Likewise.
26239         (remainder_downward_test_data): Likewise.
26240         (remainder_upward_test_data): Likewise.
26241         (remquo_test_data): Likewise.
26242         (rint_test_data): Likewise.
26243         (rint_tonearest_test_data): Likewise.
26244         (rint_towardzero_test_data): Likewise.
26245         (rint_downward_test_data): Likewise.
26246         (rint_upward_test_data): Likewise.
26247         (round_test_data): Likewise.
26248         (scalb_test_data): Likewise.
26249         (scalbn_test_data): Likewise.
26250         (scalbln_test_data): Likewise.
26251         (signbit_test_data): Likewise.
26252         (sin_test_data): Likewise.
26253         (sin_tonearest_test_data): Likewise.
26254         (sin_towardzero_test_data): Likewise.
26255         (sin_downward_test_data): Likewise.
26256         (sin_upward_test_data): Likewise.
26257         (sincos_test_data): Likewise.
26258         (sinh_test_data): Likewise.
26259         (sinh_tonearest_test_data): Likewise.
26260         (sinh_towardzero_test_data): Likewise.
26261         (sinh_downward_test_data): Likewise.
26262         (sinh_upward_test_data): Likewise.
26263         (sqrt_test_data): Likewise.
26264         (tan_test_data): Likewise.
26265         (tan_tonearest_test_data): Likewise.
26266         (tan_towardzero_test_data): Likewise.
26267         (tan_downward_test_data): Likewise.
26268         (tan_upward_test_data): Likewise.
26269         (tanh_test_data): Likewise.
26270         (tgamma_test_data): Likewise.
26271         (trunc_test_data): Likewise.
26272         (y0_test_data): Likewise.
26273         (y1_test_data): Likewise.
26274         (yn_test_data): Likewise.
26275         (significand_test_data): Likewise.
26277         * math/gen-libm-test.pl (@functions): Remove variable.
26278         (generate_testfile): Don't handle START and END lines.
26279         * math/libm-test.inc (START): New macro.
26280         (END): Likewise.
26281         (END_COMPLEX): Likewise.
26282         (acos_test): Use END macro without arguments.
26283         (acos_test_tonearest): Likewise.
26284         (acos_test_towardzero): Likewise.
26285         (acos_test_downward): Likewise.
26286         (acos_test_upward): Likewise.
26287         (acosh_test): Likewise.
26288         (asin_test): Likewise.
26289         (asin_test_tonearest): Likewise.
26290         (asin_test_towardzero): Likewise.
26291         (asin_test_downward): Likewise.
26292         (asin_test_upward): Likewise.
26293         (asinh_test): Likewise.
26294         (atan_test): Likewise.
26295         (atanh_test): Likewise.
26296         (atan2_test): Likewise.
26297         (cabs_test): Likewise.
26298         (cacos_test): Use END_COMPLEX macro without arguments.
26299         (cacosh_test): Likewise.
26300         (carg_test): Use END macro without arguments.
26301         (casin_test): Use END_COMPLEX macro without arguments.
26302         (casinh_test): Likewise.
26303         (catan_test): Likewise.
26304         (catanh_test): Likewise.
26305         (cbrt_test): Use END macro without arguments.
26306         (ccos_test): Use END_COMPLEX macro without arguments.
26307         (ccosh_test): Likewise.
26308         (ceil_test): Use END macro without arguments.
26309         (cexp_test): Use END_COMPLEX macro without arguments.
26310         (cimag_test): Use END macro without arguments.
26311         (clog_test): Use END_COMPLEX macro without arguments.
26312         (clog10_test): Likewise.
26313         (conj_test): Likewise.
26314         (copysign_test): Use END macro without arguments.
26315         (cos_test): Likewise.
26316         (cos_test_tonearest): Likewise.
26317         (cos_test_towardzero): Likewise.
26318         (cos_test_downward): Likewise.
26319         (cos_test_upward): Likewise.
26320         (cosh_test): Likewise.
26321         (cosh_test_tonearest): Likewise.
26322         (cosh_test_towardzero): Likewise.
26323         (cosh_test_downward): Likewise.
26324         (cosh_test_upward): Likewise.
26325         (cpow_test): Use END_COMPLEX macro without arguments.
26326         (cproj_test): Likewise.
26327         (creal_test): Use END macro without arguments.
26328         (csin_test): Use END_COMPLEX macro without arguments.
26329         (csinh_test): Likewise.
26330         (csqrt_test): Likewise.
26331         (ctan_test): Likewise.
26332         (ctan_test_tonearest): Likewise.
26333         (ctan_test_towardzero): Likewise.
26334         (ctan_test_downward): Likewise.
26335         (ctan_test_upward): Likewise.
26336         (ctanh_test): Likewise.
26337         (ctanh_test_tonearest): Likewise.
26338         (ctanh_test_towardzero): Likewise.
26339         (ctanh_test_downward): Likewise.
26340         (ctanh_test_upward): Likewise.
26341         (erf_test): Use END macro without arguments.
26342         (erfc_test): Likewise.
26343         (exp_test): Likewise.
26344         (exp_test_tonearest): Likewise.
26345         (exp_test_towardzero): Likewise.
26346         (exp_test_downward): Likewise.
26347         (exp_test_upward): Likewise.
26348         (exp10_test): Likewise.
26349         (exp2_test): Likewise.
26350         (expm1_test): Likewise.
26351         (fabs_test): Likewise.
26352         (fdim_test): Likewise.
26353         (finite_test): Likewise.
26354         (floor_test): Likewise.
26355         (fma_test): Likewise.
26356         (fma_test_towardzero): Likewise.
26357         (fma_test_downward): Likewise.
26358         (fma_test_upward): Likewise.
26359         (fmax_test): Likewise.
26360         (fmin_test): Likewise.
26361         (fmod_test): Likewise.
26362         (fpclassify_test): Likewise.
26363         (frexp_test): Likewise.
26364         (gamma_test): Likewise.
26365         (hypot_test): Likewise.
26366         (ilogb_test): Likewise.
26367         (isfinite_test): Likewise.
26368         (isgreater_test): Likewise.
26369         (isgreaterequal_test): Likewise.
26370         (isinf_test): Likewise.
26371         (isless_test): Likewise.
26372         (islessequal_test): Likewise.
26373         (islessgreater_test): Likewise.
26374         (isnan_test): Likewise.
26375         (isnormal_test): Likewise.
26376         (issignaling_test): Likewise.
26377         (isunordered_test): Likewise.
26378         (j0_test): Likewise.
26379         (j1_test): Likewise.
26380         (jn_test): Likewise.
26381         (ldexp_test): Likewise.
26382         (lgamma_test): Likewise.
26383         (lrint_test): Likewise.
26384         (lrint_test_tonearest): Likewise.
26385         (lrint_test_towardzero): Likewise.
26386         (lrint_test_downward): Likewise.
26387         (lrint_test_upward): Likewise.
26388         (llrint_test): Likewise.
26389         (llrint_test_tonearest): Likewise.
26390         (llrint_test_towardzero): Likewise.
26391         (llrint_test_downward): Likewise.
26392         (llrint_test_upward): Likewise.
26393         (log_test): Likewise.
26394         (log10_test): Likewise.
26395         (log1p_test): Likewise.
26396         (log2_test): Likewise.
26397         (logb_test): Likewise.
26398         (logb_test_downward): Likewise.
26399         (lround_test): Likewise.
26400         (llround_test): Likewise.
26401         (modf_test): Likewise.
26402         (nearbyint_test): Likewise.
26403         (nextafter_test): Likewise.
26404         (nexttoward_test): Likewise.
26405         (pow_test): Likewise.
26406         (pow_test_tonearest): Likewise.
26407         (pow_test_towardzero): Likewise.
26408         (pow_test_downward): Likewise.
26409         (pow_test_upward): Likewise.
26410         (remainder_test): Likewise.
26411         (remainder_test_tonearest): Likewise.
26412         (remainder_test_towardzero): Likewise.
26413         (remainder_test_downward): Likewise.
26414         (remainder_test_upward): Likewise.
26415         (remquo_test): Likewise.
26416         (rint_test): Likewise.
26417         (rint_test_tonearest): Likewise.
26418         (rint_test_towardzero): Likewise.
26419         (rint_test_downward): Likewise.
26420         (rint_test_upward): Likewise.
26421         (round_test): Likewise.
26422         (scalb_test): Likewise.
26423         (scalbn_test): Likewise.
26424         (scalbln_test): Likewise.
26425         (signbit_test): Likewise.
26426         (sin_test): Likewise.
26427         (sin_test_tonearest): Likewise.
26428         (sin_test_towardzero): Likewise.
26429         (sin_test_downward): Likewise.
26430         (sin_test_upward): Likewise.
26431         (sincos_test): Likewise.
26432         (sinh_test): Likewise.
26433         (sinh_test_tonearest): Likewise.
26434         (sinh_test_towardzero): Likewise.
26435         (sinh_test_downward): Likewise.
26436         (sinh_test_upward): Likewise.
26437         (sqrt_test): Likewise.
26438         (tan_test): Likewise.
26439         (tan_test_tonearest): Likewise.
26440         (tan_test_towardzero): Likewise.
26441         (tan_test_downward): Likewise.
26442         (tan_test_upward): Likewise.
26443         (tanh_test): Likewise.
26444         (tgamma_test): Likewise.
26445         (trunc_test): Likewise.
26446         (y0_test): Likewise.
26447         (y1_test): Likewise.
26448         (yn_test): Likewise.
26449         (significand_test): Likewise.
26451 2013-05-24  Ondřej Bílka  <neleai@seznam.cz>
26453         [BZ #15381]
26454         * libio/genops.c (_IO_no_init): Initialize wide struct info.
26456 2013-05-23  Edjunior Machado  <emachado@linux.vnet.ibm.com>
26458         [BZ #14894]
26459         * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
26460         __ppc_mdoio and __ppc_mdoom.
26461         * manual/platform.texi: Document new functions __ppc_yield,
26462         __ppc_mdoio and __ppc_mdoom.
26464 2013-05-22  Carlos O'Donell  <carlos@redhat.com>
26466         * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
26467         (main): Mention "tls" pseudo-hwcap is legacy.
26468         * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
26470 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
26472         * math/gen-libm-test.pl (parse_args): Output only string of
26473         arguments as text for test name, not full call or descriptions of
26474         tests for extra outputs.
26475         (generate_testfile): Do not pass function name to parse_args.
26476         Generate this_func variable from START.
26477         * math/libm-test.inc (struct test_f_f_data): Rename test_name
26478         field to arg_str.
26479         (struct test_ff_f_data): Likewise.
26480         (test_ff_f_data_nexttoward): Likewise.
26481         (struct test_fi_f_data): Likewise.
26482         (struct test_fl_f_data): Likewise.
26483         (struct test_if_f_data): Likewise.
26484         (struct test_fff_f_data): Likewise.
26485         (struct test_c_f_data): Likewise.
26486         (struct test_f_f1_data): Likewise.  Remove field extra_name.
26487         (struct test_fF_f1_data): Likewise.
26488         (struct test_ffI_f1_data): Likewise.
26489         (struct test_c_c_data): Rename test_name field to arg_str.
26490         (struct test_cc_c_data): Likewise.
26491         (struct test_f_i_data): Likewise.
26492         (struct test_ff_i_data): Likewise.
26493         (struct test_f_l_data): Likewise.
26494         (struct test_f_L_data): Likewise.
26495         (struct test_fFF_11_data): Likewise.  Remove fields extra1_name
26496         and extra2_name.
26497         (COMMON_TEST_SETUP): New macro.
26498         (EXTRA_OUTPUT_TEST_SETUP): Likewise.
26499         (COMMON_TEST_CLEANUP): Likewise.
26500         (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
26501         (RUN_TEST_f_f): Take argument string.  Call new setup and cleanup
26502         macros.
26503         (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
26504         (RUN_TEST_2_f): Take argument string.  Call new setup and cleanup
26505         macros.
26506         (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
26507         (RUN_TEST_fff_f): Take argument string.  Call new setup and
26508         cleanup macros.
26509         (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
26510         (RUN_TEST_c_f): Take argument string.  Call new setup and cleanup
26511         macros.
26512         (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
26513         (RUN_TEST_f_f1): Take argument string.  Call new setup and cleanup
26514         macros.
26515         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
26516         (RUN_TEST_fF_f1): Take argument string.  Call new setup and
26517         cleanup macros.
26518         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
26519         (RUN_TEST_fI_f1): Take argument string.  Call new setup and
26520         cleanup macros.
26521         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
26522         (RUN_TEST_ffI_f1): Take argument string.  Call new setup and
26523         cleanup macros.
26524         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
26525         (RUN_TEST_c_c): Take argument string.  Call new setup and cleanup
26526         macros.
26527         (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
26528         (RUN_TEST_cc_c): Take argument string.  Call new setup and cleanup
26529         macros.
26530         (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
26531         (RUN_TEST_f_i): Take argument string.  Call new setup and cleanup
26532         macros.
26533         (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
26534         (RUN_TEST_f_i_tg): Take argument string.  Call new setup and
26535         cleanup macros.
26536         (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
26537         (RUN_TEST_ff_i_tg): Take argument string.  Call new setup and
26538         cleanup macros.
26539         (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
26540         (RUN_TEST_f_b): Take argument string.  Call new setup and cleanup
26541         macros.
26542         (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
26543         (RUN_TEST_f_b_tg): Take argument string.  Call new setup and
26544         cleanup macros.
26545         (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
26546         (RUN_TEST_f_l): Take argument string.  Call new setup and cleanup
26547         macros.
26548         (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
26549         (RUN_TEST_f_L): Take argument string.  Call new setup and cleanup
26550         macros.
26551         (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
26552         (RUN_TEST_fFF_11): Take argument string.  Call new setup and
26553         cleanup macros.
26554         (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
26556 2013-05-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
26558         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
26559         to _sifields.sigfault.
26560         (si_addr_lsb): Define new macro.
26561         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
26562         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
26563         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
26565 2013-05-03  Carlos O'Donell  <carlos at redhat.com>
26567         [BZ #15441]
26568         * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
26569         returns -1.
26570         (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
26571         null return -1.
26572         * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
26573         loading the domain.
26575 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
26577         * math/gen-libm-test.pl (parse_args): Do not include expected
26578         result in test name.
26579         * sysdeps/i386/fpu/libm-test-ulps: Update test names.
26580         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
26581         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
26582         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
26583         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
26584         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26586 2013-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
26588         * benchtests/Makefile: Sort function entries.
26590         * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
26591         tanh, asinh, acosh, atanh.
26592         * benchtests/acos-inputs: New file.
26593         * benchtests/acosh-inputs: New file.
26594         * benchtests/asin-inputs: New file.
26595         * benchtests/asinh-inputs: New file.
26596         * benchtests/atanh-inputs: New file.
26597         * benchtests/cosh-inputs: New file.
26598         * benchtests/log-inputs: New file.
26599         * benchtests/sinh-inputs: New file.
26600         * benchtests/tanh-inputs: New file.
26602 2013-05-21  Dmitry V. Levin  <ldv@altlinux.org>
26604         [BZ #15339]
26605         * posix/tst-getaddrinfo4.c: New test.
26606         * posix/Makefile (tests): Add it.
26608 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
26610         [BZ #15339]
26611         * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
26612         when no services were used.
26613         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
26614         Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
26616 2013-05-21  Andreas Schwab  <schwab@suse.de>
26618         [BZ #15014]
26619         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
26620         [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
26621         successful.
26622         * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
26623         redundant variable declarations and reallocation of buffer when
26624         parsing as IPv6 address.  Always set NSS status when called from
26625         reentrant functions.  Use NETDB_INTERNAL instead of TRY_AGAIN when
26626         buffer too small.  Correct computation of needed size.
26627         * nss/Makefile (tests): Add test-digits-dots.
26628         * nss/test-digits-dots.c: New test.
26630 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
26632         * benchtests/Makefile: Remove instructions for adding
26633         benchmark tests.
26634         * benchtests/README: New file to explain how to execute and
26635         enhance the benchmark tests.
26637 2013-05-21  Andreas Schwab  <schwab@suse.de>
26639         [BZ #15493]
26640         * setjmp/Makefile (tests): Add tst-sigsetjmp.
26641         * setjmp/tst-sigsetjmp.c: New test.
26643 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
26645         * sysdeps/x86_64/memset.S (memset): New implementation.
26646         (__bzero): Likewise.
26647         (__memset_tail): New function.
26649 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
26651         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
26652         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
26653         __memcpy_sse2_unaligned ifunc selection.
26654         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
26655         Add memcpy-sse2-unaligned.S.
26656         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
26657         Add: __memcpy_sse2_unaligned.
26659 2013-05-19  Joseph Myers  <joseph@codesourcery.com>
26661         [BZ #15490]
26662         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
26663         math_force_eval before restoring floating-point envrionment.
26664         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
26665         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
26666         Likewise.
26667         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
26668         <math_private.h>.
26669         (__nearbyintl): Use math_force_eval before restoring
26670         floating-point environment.
26671         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
26673         * math/gen-libm-test.pl (special_functions): Remove.
26674         (parse_args): Don't handle TEST_extra.  Handle functions with no
26675         return value.
26676         * math/libm-test.inc (struct test_sincos_data): Replace with
26677         struct test_fFF_11_data.
26678         (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
26679         (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
26680         (sincos_test_data): Change element type to struct
26681         test_fFF_11_data.  Use TEST_fFF_11 instead of TEST_extra.
26682         (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
26683         RUN_TEST_LOOP_sincos.
26684         * math/README.libm-test: Don't mention special handling of
26685         individual functions.
26686         * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
26687         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
26688         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
26689         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
26690         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
26691         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26693         * math/gen-libm-test.pl (get_variable): Remove function.
26694         (parse_args): Don't show pointer parameters to call in test
26695         names.  Use "extra output N" in test names for extra outputs
26696         rather than naming variables.
26698 2013-05-18  Joseph Myers  <joseph@codesourcery.com>
26700         [BZ #15488]
26701         * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
26702         __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
26703         * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
26704         double tests.
26705         * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
26706         disable.
26707         (do_test) [NO_LONG_DOUBLE]: Do not disable call to
26708         check_long_double.
26710         * math/gen-libm-test.pl (@tests): Remove variable.
26711         ($count): Likewise.
26712         (new_test): Remove function.
26713         (show_exceptions): New function.
26714         (special_functions): Use show_exceptions instead of new_test.
26715         (parse_args): Likewise.
26716         (generate_testfile): Pass only function name in generated call to
26717         print_max_error or print_complex_max_error.
26718         (get_ulps): Do not handle complex tests specially.
26719         (output_test): Rename to ...
26720         (get_all_ulps_for_test): ... this.  Return a string rather than
26721         printing to a file.  Require ulps to be present.
26722         (output_ulps): Generate arrays rather than #defines.
26723         * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
26724         (struct ulp_data): New type.
26725         (BUILD_COMPLEX_ULP): Remove macro.
26726         (compare_ulp_data): New function.
26727         (find_ulps): Likewise.
26728         (find_test_ulps): Likewise.
26729         (find_function_ulps): Likewise.
26730         (find_complex_function_ulps): Likewise.
26731         (print_max_error): Determine allowed ulps using
26732         find_function_ulps.
26733         (print_complex_max_error): Determine allowed ulps using
26734         find_complex_function_ulps.
26735         (check_float_internal): Determine max ulps using find_test_ulps.
26736         (check_float): Do not take max_ulp parameter.  Update call to
26737         check_float_internal.
26738         (check_complex): Likewise.
26739         (check_int): Do not take max_ulp parameter.
26740         (check_long): Likewise.
26741         (check_bool): Likewise.
26742         (check_longlong): Likewise.
26743         (struct test_f_f_data): Remove max_ulp field.
26744         (struct test_ff_f_data): Likewise.
26745         (struct test_ff_f_data_nexttoward): Likewise.
26746         (struct test_fi_f_data): Likewise.
26747         (struct test_fl_f_data): Likewise.
26748         (struct test_if_f_data): Likewise.
26749         (struct test_fff_f_data): Likewise.
26750         (struct test_c_f_data): Likewise.
26751         (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
26752         (struct test_fF_f1_data): Likewise.
26753         (struct test_ffI_f1_data): Likewise.
26754         (struct test_c_c_data): Remove max_ulp field.
26755         (struct test_cc_c_data): Likewise.
26756         (struct test_f_i_data): Likewise.
26757         (struct test_ff_i_data): Likewise.
26758         (struct test_f_l_data): Likewise.
26759         (struct test_f_L_data): Likewise.
26760         (struct test_sincos_data): Likewise.
26761         (RUN_TEST_f_f): Do not handle ulps.
26762         (RUN_TEST_LOOP_f_f): Likewise.
26763         (RUN_TEST_2_f): Likewise.
26764         (RUN_TEST_LOOP_2_f): Likewise.
26765         (RUN_TEST_fff_f): Likewise.
26766         (RUN_TEST_LOOP_fff_f): Likewise.
26767         (RUN_TEST_c_f): Likewise.
26768         (RUN_TEST_LOOP_c_f): Likewise.
26769         (RUN_TEST_f_f1): Likewise.
26770         (RUN_TEST_LOOP_f_f1): Likewise.
26771         (RUN_TEST_fF_f1): Likewise.
26772         (RUN_TEST_LOOP_fF_f1): Likewise.
26773         (RUN_TEST_fI_f1): Likewise.
26774         (RUN_TEST_LOOP_fI_f1): Likewise.
26775         (RUN_TEST_ffI_f1): Likewise.
26776         (RUN_TEST_LOOP_ffI_f1): Likewise.
26777         (RUN_TEST_c_c): Likewise.
26778         (RUN_TEST_LOOP_c_c): Likewise.
26779         (RUN_TEST_cc_c): Likewise.
26780         (RUN_TEST_LOOP_cc_c): Likewise.
26781         (RUN_TEST_f_i): Likewise.
26782         (RUN_TEST_LOOP_f_i): Likewise.
26783         (RUN_TEST_f_i_tg): Likewise.
26784         (RUN_TEST_LOOP_f_i_tg): Likewise.
26785         (RUN_TEST_ff_i_tg): Likewise.
26786         (RUN_TEST_LOOP_ff_i_tg): Likewise.
26787         (RUN_TEST_f_b): Likewise.
26788         (RUN_TEST_LOOP_f_b): Likewise.
26789         (RUN_TEST_f_b_tg): Likewise.
26790         (RUN_TEST_LOOP_f_b_tg): Likewise.
26791         (RUN_TEST_f_l): Likewise.
26792         (RUN_TEST_LOOP_f_l): Likewise.
26793         (RUN_TEST_f_L): Likewise.
26794         (RUN_TEST_LOOP_f_L): Likewise.
26795         (RUN_TEST_sincos): Likewise.
26796         (RUN_TEST_LOOP_sincos): Likewise.
26798 2013-05-17  Joseph Myers  <joseph@codesourcery.com>
26800         [BZ #15480]
26801         [BZ #15485]
26802         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
26803         main case of finite arguments, set rounding mode to FE_TONEAREST
26804         and discard exceptions.
26805         * math/libm-test.inc (remainder_test_data): Disallow "inexact"
26806         exceptions.
26807         (remainder_tonearest_test_data): New variable.
26808         (remainder_test_tonearest): New function.
26809         (remainder_towardzero_test_data): New variable.
26810         (remainder_test_towardzero): New function.
26811         (remainder_downward_test_data): New variable.
26812         (remainder_test_downward): New function.
26813         (remainder_upward_test_data): New variable.
26814         (remainder_test_upward): New function.
26815         (main): Call the new test functions.
26817         * math/libm-test.inc (struct test_f_f1_data): Remove field
26818         extra_init.
26819         (struct test_fF_f1_data): Likewise.
26820         (struct test_ffI_f1_data): Likewise.
26821         (RUN_TEST_f_f1): Remove argument EXTRA_INIT.  Initialize EXTRA_VAR
26822         based on value of EXTRA_EXPECTED.
26823         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
26824         (RUN_TEST_fF_f1): Remove argument EXTRA_INIT.  Initialize
26825         EXTRA_VAR based on value of EXTRA_EXPECTED.
26826         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
26827         (RUN_TEST_fI_f1): Remove argument EXTRA_INIT.  Initialize
26828         EXTRA_VAR based on value of EXTRA_EXPECTED.
26829         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
26830         (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT.  Initialize
26831         EXTRA_VAR based on value of EXTRA_EXPECTED.
26832         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
26833         * math/gen-libm-test.pl (parse_args): Don't output initializers
26834         for extra output values.
26836         * math/libm-test.inc (check_int): Expect result to be exactly
26837         equal to expected value and do not handle ulps.
26838         (check_long): Likewise.
26839         (check_longlong): Likewise.
26841         * math/libm-test.inc (ceil_test_data): Test for "inexact"
26842         exceptions.
26843         (cimag_test_data): Likewise.
26844         (conj_test_data): Likewise.
26845         (copysign_test_data): Likewise.
26846         (cproj_test_data): Likewise.
26847         (creal_test_data): Likewise.
26848         (fabs_test_data): Likewise.
26849         (fdim_test_data): Likewise.
26850         (finite_test_data): Likewise.
26851         (floor_test_data): Likewise.
26852         (fmax_test_data): Likewise.
26853         (fmin_test_data): Likewise.
26854         (fmod_test_data): Likewise.
26855         (fpclassify_test_data): Likewise.
26856         (frexp_test_data): Likewise.
26857         (ilogb_test_data): Likewise.
26858         (isfinite_test_data): Likewise.
26859         (isgreater_test_data): Likewise.
26860         (isgreaterequal_test_data): Likewise.
26861         (isinf_test_data): Likewise.
26862         (isless_test_data): Likewise.
26863         (islessequal_test_data): Likewise.
26864         (islessgreater_test_data): Likewise.
26865         (isnan_test_data): Likewise.
26866         (isnormal_test_data): Likewise.
26867         (issignaling_test_data): Likewise.
26868         (isunordered_test_data): Likewise.
26869         (ldexp_test_data): Likewise.
26870         (lrint_test_data): Likewise.
26871         (lrint_test_data) [TEST_FLOAT]: Disable one test.
26872         (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
26873         (lrint_tonearest_test_data): Test for "inexact" exceptions.
26874         (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
26875         (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
26876         (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
26877         test input.
26878         (lrint_towardzero_test_data): Test for "inexact" exceptions.
26879         (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
26880         (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
26881         (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
26882         that test input.
26883         (lrint_downward_test_data): Test for "inexact" exceptions.
26884         (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
26885         (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
26886         (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
26887         test input.
26888         (lrint_upward_test_data): Test for "inexact" exceptions.
26889         (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
26890         test input.
26891         (llrint_test_data): Test for "inexact" exceptions.
26892         (llrint_test_data) [TEST_FLOAT]: Disable one test.
26893         (llrint_tonearest_test_data): Test for "inexact" exceptions.
26894         (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
26895         (llrint_towardzero_test_data): Test for "inexact" exceptions.
26896         (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
26897         (llrint_downward_test_data): Test for "inexact" exceptions.
26898         (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
26899         (llrint_upward_test_data): Test for "inexact" exceptions.
26900         (logb_test_data): Likewise.
26901         (logb_downward_test_data): Likewise.
26902         (nextafter_test_data): Likewise.
26903         (nexttoward_test_data): Likewise.
26904         (remainder_test_data): Likewise.
26905         (remquo_test_data): Likewise.
26906         (scalbn_test_data): Likewise.
26907         (scalbln_test_data): Likewise.
26908         (signbit_test_data): Likewise.
26909         (sqrt_test_data): Likewise.
26910         (significand_test_data): Likewise.
26912 2013-05-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
26914         [BZ #15424]
26915         * benchtests/bench-modf.c (struct args): Mark arg0 as
26916         volatile.
26917         * scripts/bench.pl: Mark members of struct args as volatile.
26919 2013-05-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26921         [BZ # 15497]
26922         * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
26923         negative infinity on POWER6 or lower.
26924         * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
26926 2013-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
26928         [BZ #15442]
26929         * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
26930         (_FP_FRAC_SNANP_SEMIRAW): Likewise.
26931         (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
26932         (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
26933         (_FP_SETQNAN): New macro.
26934         (_FP_SETQNAN_SEMIRAW): Likewise.
26935         (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
26936         (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
26937         (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
26938         (FP_EXTEND): Use _FP_FRAC_SNANP.
26939         (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
26940         * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
26941         into account.
26942         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
26943         New macro.
26944         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
26945         Likewise.
26947 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
26949         * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
26950         with DIVIDE_BY_ZERO_EXCEPTION.
26951         (gamma_test_data): Likewise.
26952         (lgamma_test_data): Likewise.
26953         (log_test_data): Likewise.
26954         (log10_test_data): Likewise.
26955         (log2_test_data): Likewise.
26956         (tgamma_test_data): Likewise.
26958         * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
26959         (acos_test_tonearest): Likewise.
26960         (acos_test_towardzero): Likewise.
26961         (acos_test_downward): Likewise.
26962         (acos_test_upward): Likewise.
26963         (acosh_test): Likewise.
26964         (asin_test): Likewise.
26965         (asin_test_tonearest): Likewise.
26966         (asin_test_towardzero): Likewise.
26967         (asin_test_downward): Likewise.
26968         (asin_test_upward): Likewise.
26969         (asinh_test): Likewise.
26970         (atan_test): Likewise.
26971         (atanh_test): Likewise.
26972         (atan2_test): Likewise.
26973         (cabs_test): Likewise.
26974         (cacos_test): Likewise.
26975         (cacosh_test): Likewise.
26976         (casin_test): Likewise.
26977         (casinh_test): Likewise.
26978         (catan_test): Likewise.
26979         (catanh_test): Likewise.
26980         (cbrt_test): Likewise.
26981         (ccos_test): Likewise.
26982         (ccosh_test): Likewise.
26983         (cexp_test): Likewise.
26984         (clog_test): Likewise.
26985         (clog10_test): Likewise.
26986         (cos_test): Likewise.
26987         (cos_test_tonearest): Likewise.
26988         (cos_test_towardzero): Likewise.
26989         (cos_test_downward): Likewise.
26990         (cos_test_upward): Likewise.
26991         (cosh_test): Likewise.
26992         (cosh_test_tonearest): Likewise.
26993         (cosh_test_towardzero): Likewise.
26994         (cosh_test_downward): Likewise.
26995         (cosh_test_upward): Likewise.
26996         (cpow_test): Likewise.
26997         (csin_test): Likewise.
26998         (csinh_test): Likewise.
26999         (csqrt_test): Likewise.
27000         (ctan_test): Likewise.
27001         (ctan_test_tonearest): Likewise.
27002         (ctan_test_towardzero): Likewise.
27003         (ctan_test_downward): Likewise.
27004         (ctan_test_upward): Likewise.
27005         (ctanh_test): Likewise.
27006         (ctanh_test_tonearest): Likewise.
27007         (ctanh_test_towardzero): Likewise.
27008         (ctanh_test_downward): Likewise.
27009         (ctanh_test_upward): Likewise.
27010         (erf_test): Likewise.
27011         (erfc_test): Likewise.
27012         (exp_test): Likewise.
27013         (exp_test_tonearest): Likewise.
27014         (exp_test_towardzero): Likewise.
27015         (exp_test_downward): Likewise.
27016         (exp_test_upward): Likewise.
27017         (exp10_test): Likewise.
27018         (exp2_test): Likewise.
27019         (expm1_test): Likewise.
27020         (fmod_test): Likewise.
27021         (gamma_test): Likewise.
27022         (hypot_test): Likewise.
27023         (j0_test): Likewise.
27024         (j1_test): Likewise.
27025         (jn_test): Likewise.
27026         (lgamma_test): Likewise.
27027         (log_test): Likewise.
27028         (log10_test): Likewise.
27029         (log1p_test): Likewise.
27030         (log2_test): Likewise.
27031         (logb_test_downward): Likewise.
27032         (pow_test): Likewise.
27033         (pow_test_tonearest): Likewise.
27034         (pow_test_towardzero): Likewise.
27035         (pow_test_downward): Likewise.
27036         (pow_test_upward): Likewise.
27037         (remainder_test): Likewise.
27038         (remquo_test): Likewise.
27039         (sin_test): Likewise.
27040         (sin_test_tonearest): Likewise.
27041         (sin_test_towardzero): Likewise.
27042         (sin_test_downward): Likewise.
27043         (sin_test_upward): Likewise.
27044         (sincos_test): Likewise.
27045         (sinh_test): Likewise.
27046         (sinh_test_tonearest): Likewise.
27047         (sinh_test_towardzero): Likewise.
27048         (sinh_test_downward): Likewise.
27049         (sinh_test_upward): Likewise.
27050         (sqrt_test): Likewise.
27051         (tan_test): Likewise.
27052         (tan_test_tonearest): Likewise.
27053         (tan_test_towardzero): Likewise.
27054         (tan_test_downward): Likewise.
27055         (tan_test_upward): Likewise.
27056         (tanh_test): Likewise.
27057         (tgamma_test): Likewise.
27058         (y0_test): Likewise.
27059         (y1_test): Likewise.
27060         (yn_test): Likewise.
27062         * math/gen-libm-test.pl (adjust_arg): Remove function.
27063         (special_function): Remove argument $in_func.  Only handle
27064         generating output for tables of tests, not inside functions.
27065         (parse_args): Likewise.
27066         (generate_testfile): Remove variable $in_func.  Update call to
27067         parse_args.
27068         * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
27069         (MINUS_ZERO_INIT): Rename macro to minus_zero.
27070         (PLUS_INFTY_INIT): Rename macro to plus_infty.
27071         (MINUS_INFTY_INIT): Rename macro to minus_infty.
27072         (QNAN_VALUE_INIT): Rename macro to qnan_value.
27073         (MAX_VALUE_INIT): Rename macro to max_value.
27074         (MIN_VALUE_INIT): Rename macro to min_value.
27075         (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
27076         (plus_zero): Remove variable.
27077         (minus_zero): Likewise.
27078         (plus_infty): Likewise.
27079         (minus_infty): Likewise.
27080         (qnan_value): Likewise.
27081         (max_value): Likewise.
27082         (min_value): Likewise.
27083         (min_subnorm_value): Likewise.
27085 2013-05-16  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
27087         * crypt/sha512-block.c: Add missing #include <stdint.h> due to
27088         uint64_t or uint32_t usage.
27089         * crypt/sha256-block.c: Likewise.
27090         * crypt/sha256-crypt.c: Likewise.
27091         * crypt/sha256.c: Likewise.
27092         * crypt/sha512-block.c: Likewise.
27093         * crypt/sha512-crypt.c: Likewise.
27094         * crypt/sha512.c: Likewise.
27095         * debug/backtrace-tst.c: Likewise.
27096         * debug/pcprofiledump.c: Likewise.
27097         * elf/cache.c: Likewise.
27098         * elf/dl-cache.c: Likewise.
27099         * elf/dl-misc.c: Likewise.
27100         * elf/dl-profile.c: Likewise.
27101         * elf/dl-support.c: Likewise.
27102         * elf/ldconfig.c: Likewise.
27103         * elf/sprof.c: Likewise.
27104         * iconv/dummy-repertoire.c: Likewise.
27105         * iconv/iconv_charmap.c: Likewise.
27106         * iconv/skeleton.c: Likewise.
27107         * iconvdata/8bit-generic.c: Likewise.
27108         * iconvdata/cp737.h: Likewise.
27109         * iconvdata/cp775.h: Likewise.
27110         * iconvdata/ibm1008.h: Likewise.
27111         * iconvdata/ibm1025.h: Likewise.
27112         * iconvdata/ibm1046.h: Likewise.
27113         * iconvdata/ibm1097.h: Likewise.
27114         * iconvdata/ibm1112.h: Likewise.
27115         * iconvdata/ibm1122.h: Likewise.
27116         * iconvdata/ibm1123.h: Likewise.
27117         * iconvdata/ibm1124.h: Likewise.
27118         * iconvdata/ibm1129.h: Likewise.
27119         * iconvdata/ibm1130.h: Likewise.
27120         * iconvdata/ibm1132.h: Likewise.
27121         * iconvdata/ibm1133.h: Likewise.
27122         * iconvdata/ibm1137.h: Likewise.
27123         * iconvdata/ibm1140.h: Likewise.
27124         * iconvdata/ibm1141.h: Likewise.
27125         * iconvdata/ibm1142.h: Likewise.
27126         * iconvdata/ibm1143.h: Likewise.
27127         * iconvdata/ibm1144.h: Likewise.
27128         * iconvdata/ibm1145.h: Likewise.
27129         * iconvdata/ibm1146.h: Likewise.
27130         * iconvdata/ibm1147.h: Likewise.
27131         * iconvdata/ibm1148.h: Likewise.
27132         * iconvdata/ibm1149.h: Likewise.
27133         * iconvdata/ibm1153.h: Likewise.
27134         * iconvdata/ibm1154.h: Likewise.
27135         * iconvdata/ibm1155.h: Likewise.
27136         * iconvdata/ibm1156.h: Likewise.
27137         * iconvdata/ibm1157.h: Likewise.
27138         * iconvdata/ibm1158.h: Likewise.
27139         * iconvdata/ibm1160.h: Likewise.
27140         * iconvdata/ibm1161.h: Likewise.
27141         * iconvdata/ibm1162.h: Likewise.
27142         * iconvdata/ibm1163.h: Likewise.
27143         * iconvdata/ibm1164.h: Likewise.
27144         * iconvdata/ibm1166.h: Likewise.
27145         * iconvdata/ibm1167.h: Likewise.
27146         * iconvdata/ibm12712.h: Likewise.
27147         * iconvdata/ibm1390.h: Likewise.
27148         * iconvdata/ibm1399.h: Likewise.
27149         * iconvdata/ibm16804.h: Likewise.
27150         * iconvdata/ibm4517.h: Likewise.
27151         * iconvdata/ibm4899.h: Likewise.
27152         * iconvdata/ibm4909.h: Likewise.
27153         * iconvdata/ibm4971.h: Likewise.
27154         * iconvdata/ibm5347.h: Likewise.
27155         * iconvdata/ibm803.h: Likewise.
27156         * iconvdata/ibm856.h: Likewise.
27157         * iconvdata/ibm901.h: Likewise.
27158         * iconvdata/ibm902.h: Likewise.
27159         * iconvdata/ibm9030.h: Likewise.
27160         * iconvdata/ibm9066.h: Likewise.
27161         * iconvdata/ibm921.h: Likewise.
27162         * iconvdata/ibm922.h: Likewise.
27163         * iconvdata/ibm9448.h: Likewise.
27164         * iconvdata/isiri-3342.h: Likewise.
27165         * iconvdata/jis0201.h: Likewise.
27166         * include/link.h: Likewise.
27167         * include/netdb.h: Likewise.
27168         * inet/check_native.c: Likewise.
27169         * inet/check_pf.c: Likewise.
27170         * inet/getipv4sourcefilter.c: Likewise.
27171         * inet/getnameinfo.c: Likewise.
27172         * inet/getsourcefilter.c: Likewise.
27173         * inet/htonl.c: Likewise.
27174         * inet/setipv4sourcefilter.c: Likewise.
27175         * inet/setsourcefilter.c: Likewise.
27176         * inet/test-inet6_opt.c: Likewise.
27177         * inet/tst-network.c: Likewise.
27178         * locale/C-collate.c: Likewise.
27179         * locale/C-ctype.c: Likewise.
27180         * locale/C-time.c: Likewise.
27181         * locale/C-translit.h: Likewise.
27182         * locale/loadarchive.c: Likewise.
27183         * locale/programs/3level.h: Likewise.
27184         * locale/programs/charmap.c: Likewise.
27185         * locale/programs/charmap.h: Likewise.
27186         * locale/programs/ld-address.c: Likewise.
27187         * locale/programs/ld-collate.c: Likewise.
27188         * locale/programs/ld-ctype.c: Likewise.
27189         * locale/programs/ld-identification.c: Likewise.
27190         * locale/programs/ld-measurement.c: Likewise.
27191         * locale/programs/ld-messages.c: Likewise.
27192         * locale/programs/ld-monetary.c: Likewise.
27193         * locale/programs/ld-name.c: Likewise.
27194         * locale/programs/ld-numeric.c: Likewise.
27195         * locale/programs/ld-paper.c: Likewise.
27196         * locale/programs/ld-telephone.c: Likewise.
27197         * locale/programs/ld-time.c: Likewise.
27198         * locale/programs/linereader.c: Likewise.
27199         * locale/programs/locale.c: Likewise.
27200         * locale/programs/locarchive.c: Likewise.
27201         * locale/programs/locfile.h: Likewise.
27202         * locale/programs/repertoire.c: Likewise.
27203         * locale/programs/simple-hash.c: Likewise.
27204         * locale/programs/simple-hash.h: Likewise.
27205         * malloc/memusage.c: Likewise.
27206         * malloc/memusagestat.c: Likewise.
27207         * nis/nis_defaults.c: Likewise.
27208         * nis/nis_hash.c: Likewise.
27209         * nis/nis_print.c: Likewise.
27210         * nis/nis_xdr.c: Likewise.
27211         * nscd/connections.c: Likewise.
27212         * nscd/hstcache.c: Likewise.
27213         * nscd/nscd_gethst_r.c: Likewise.
27214         * nscd/nscd_getserv_r.c: Likewise.
27215         * nscd/nscd_helper.c: Likewise.
27216         * nscd/servicescache.c: Likewise.
27217         * nss/makedb.c: Likewise.
27218         * nss/nss_db/db-XXX.c: Likewise.
27219         * nss/nss_db/db-initgroups.c: Likewise.
27220         * nss/nss_db/db-netgrp.c: Likewise.
27221         * nss/nss_files/files-network.c: Likewise.
27222         * nss/nss_files/files-parse.c: Likewise.
27223         * posix/bug-regex5.c: Likewise.
27224         * posix/fnmatch_loop.c: Likewise.
27225         * posix/regcomp.c: Likewise.
27226         * posix/regexec.c: Likewise.
27227         * posix/tst-rfc3484-2.c: Likewise.
27228         * posix/tst-rfc3484-3.c: Likewise.
27229         * posix/tst-rfc3484.c: Likewise.
27230         * resolv/nss_dns/dns-canon.c: Likewise.
27231         * resolv/nss_dns/dns-network.c: Likewise.
27232         * resolv/res_init.c: Likewise.
27233         * resolv/res_mkquery.c: Likewise.
27234         * resolv/tst-aton.c: Likewise.
27235         * stdlib/cxa_atexit.c: Likewise.
27236         * stdlib/cxa_finalize.c: Likewise.
27237         * stdlib/gen-fpioconst.c: Likewise.
27238         * stdlib/strtol_l.c: Likewise.
27239         * string/tst-endian.c: Likewise.
27240         * sunrpc/auth_des.c: Likewise.
27241         * sunrpc/clnt_udp.c: Likewise.
27242         * sunrpc/rtime.c: Likewise.
27243         * sunrpc/svcauth_des.c: Likewise.
27244         * sunrpc/xdr.c: Likewise.
27245         * sunrpc/xdr_intXX_t.c: Likewise.
27246         * sunrpc/xdr_rec.c: Likewise.
27247         * sysdeps/generic/ldconfig.h: Likewise.
27248         * sysdeps/generic/ldsodefs.h: Likewise.
27249         * sysdeps/generic/memusage.h: Likewise.
27250         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
27251         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
27252         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
27253         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
27254         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
27255         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
27256         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
27257         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
27258         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
27259         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
27260         * sysdeps/posix/getaddrinfo.c: Likewise.
27261         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
27262         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
27263         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
27264         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
27265         * sysdeps/powerpc/test-gettimebase.c: Likewise.
27266         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
27267         * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
27268         * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
27269         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
27270         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
27271         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
27272         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
27273         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
27274         * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
27275         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
27276         * sysdeps/x86_64/dl-tls.h: Likewise.
27277         * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
27278         * time/alt_digit.c: Likewise.
27279         * time/era.c: Likewise.
27280         * wcsmbs/tst-c16c32-1.c: Likewise.
27282 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
27284         * math/libm-test.inc (struct test_sincos_data): New type.
27285         (RUN_TEST_LOOP_sincos): New macro.
27286         (sincos_test_data): New variable.
27287         (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
27289 2013-05-16  Richard Henderson  <rth@redhat.com>
27291         * math/atest-exp2.c (LIMB64): New macro.
27292         (CONSTSZ): New macro.
27293         (mp_exp1, mp_exp_m1, mp_log2): New variables.
27294         (hexdig): Move ...
27295         (print_mpn_fp): ... to function scope.
27296         (read_mpn_hex): Remove.
27297         (get_log2): Remove.
27298         (exp2_mpn): Use mp_log2.
27299         (main): Use mp_exp1.
27301 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
27303         * math/libm-test.inc: Remove comment about not testing "inexact"
27304         exceptions.
27305         (INEXACT_EXCEPTION): New macro.
27306         (NO_INEXACT_EXCEPTION): Likewise.
27307         (INVALID_EXCEPTION_OK): Update value.
27308         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
27309         (OVERFLOW_EXCEPTION_OK): Likewise.
27310         (UNDERFLOW_EXCEPTION_OK): Likewise.
27311         (IGNORE_ZERO_INF_SIGN): Likewise.
27312         (ERRNO_UNCHANGED): Likewise.
27313         (ERRNO_EDOM): Likewise.
27314         (ERRNO_ERANGE): Likewise.
27315         (test_exceptions): Handle testing "inexact" exceptions.
27316         (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
27317         (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
27318         (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
27319         (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
27320         INEXACT_EXCEPTION.
27321         (rint_towardzero_test_data): Likewise.
27322         (rint_downward_test_data): Likewise.
27323         (rint_upward_test_data): Likewise.
27325         * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
27326         with OVERFLOW_EXCEPTION.
27327         (exp10_test_data): Likewise.
27328         (exp2_test_data): Likewise.
27329         (expm1_test_data): Likewise.
27330         (lgamma_test_data): Likewise.
27331         (pow_test_data): Likewise.
27332         (tgamma_test_data): Likewise.
27333         (yn_test_data): Remove duplicate test of overflow.
27335         * math/libm-test.inc (struct test_cc_c_data): New type.
27336         (RUN_TEST_LOOP_cc_c): New macro.
27337         (cpow_test_data): New variable.
27338         (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
27340         * math/libm-test.inc (struct test_f_L_data): New type.
27341         (RUN_TEST_LOOP_f_L): New macro.
27342         (llrint_test_data): New variable.
27343         (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
27344         (llrint_tonearest_test_data): New variable.
27345         (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
27346         (llrint_towardzero_test_data): New variable.
27347         (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
27348         (llrint_downward_test_data): New variable.
27349         (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
27350         (llrint_upward_test_data): New variable.
27351         (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
27352         (llround_test_data): New variable.
27353         (llround_test): Run tests with RUN_TEST_LOOP_f_L.
27355 2013-05-13  Peter Collingbourne  <pcc@google.com>
27357         * math/atest-exp2.c (get_log2): Remove const attribute.
27359 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
27361         * math/libm-test.inc (struct test_f_l_data): New type.
27362         (RUN_TEST_LOOP_f_l): New macro.
27363         (lrint_test_data): New variable.
27364         (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
27365         (lrint_tonearest_test_data): New variable.
27366         (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
27367         (lrint_towardzero_test_data): New variable.
27368         (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
27369         (lrint_downward_test_data): New variable.
27370         (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
27371         (lrint_upward_test_data): New variable.
27372         (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
27373         (lround_test_data): New variable.
27374         (lround_test): Run tests with RUN_TEST_LOOP_f_l.
27376 2013-05-15  Peter Collingbourne  <pcc@google.com>
27378         * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
27379         (EXTRACT_WORDS64) Use where appropriate.
27380         (INSERT_WORDS64) Likewise.
27382         * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
27383         constraints with x constraints.
27384         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
27386         * malloc/obstack.c (_obstack_compat): Add initializer.
27388 2013-05-15  Edjunior Machado  <emachado@linux.vnet.ibm.com>
27390         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
27391         si_trapno and add si_addr_lsb to _sifields.sigfault.
27392         (si_trapno): Remove macro.
27393         (si_addr_lsb): Define new macro.
27394         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
27396 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
27398         * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
27399         instead of TEST_f_l.
27400         (llrint_test_tonearest): Likewise.
27401         (llrint_test_towardzero): Likewise.
27402         (llrint_test_downward): Likewise.
27403         (llrint_test_upward): Likewise.
27404         (llround_test): Likewise.
27406         * math/libm-test.inc (struct test_f_i_data): Add comment.
27407         (RUN_TEST_LOOP_f_b): New macro.
27408         (RUN_TEST_LOOP_f_b_tg): Likewise.
27409         (finite_test_data): New variable.
27410         (finite_test): Run tests with RUN_TEST_LOOP_f_b.
27411         (isfinite_test_data): New variable.
27412         (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27413         (isinf_test_data): New variable.
27414         (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27415         (isnan_test_data): New variable.
27416         (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27417         (isnormal_test_data): New variable.
27418         (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27419         (issignaling_test_data): New variable.
27420         (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27421         (signbit_test_data): New variable.
27422         (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27424         * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
27425         with INVALID_EXCEPTION.
27426         (acosh_test_data): Likewise.
27427         (asin_test_data): Likewise.
27428         (atanh_test_data): Likewise.
27429         (fmod_test_data): Likewise.
27430         (log_test_data): Likewise.
27431         (log10_test_data): Likewise.
27432         (log2_test_data): Likewise.
27433         (pow_test_data): Likewise.
27434         (sqrt_test_data): Likewise.
27435         (y0_test_data): Likewise.
27436         (y1_test_data): Likewise.
27437         (yn_test_data): Likewise.
27439         * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
27440         function contents.
27442         * math/libm-test.inc (struct test_ff_i_data): New type.
27443         (RUN_TEST_LOOP_ff_i_tg): New macro.
27444         (isgreater_test_data): New variable.
27445         (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27446         (isgreaterequal_test_data): New variable.
27447         (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27448         (isless_test_data): New variable.
27449         (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27450         (islessequal_test_data): New variable.
27451         (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27452         (islessgreater_test_data): New variable.
27453         (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27454         (isunordered_test_data): New variable.
27455         (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27457 2013-05-14  David S. Miller  <davem@davemloft.net>
27459         * sysdeps/sparc/fpu/libm-test-ulps: Update.
27461 2013-05-14  Joseph Myers  <joseph@codesourcery.com>
27463         * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
27465         * math/libm-test.inc (struct test_fF_f1_data): Change type of
27466         extra_test to int.
27467         (struct test_f_i_data): Change type of max_ulp to int.
27469         * math/libm-test.inc (test_ffI_f1_data): New type.
27470         (RUN_TEST_LOOP_ffI_f1): New macro.
27471         (remquo_test_data): New variable.
27472         (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
27474         * setjmp/tst-setjmp-fp.c: New file.
27475         * setjmp/Makefile (tests): Add tst-setjmp-fp.
27476         (link-libm): New variable.
27477         ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
27479         * math/libm-test.inc (struct test_f_i_data): New type.
27480         (RUN_TEST_LOOP_f_i): New macro.
27481         (RUN_TEST_LOOP_f_i_tg): Likewise.
27482         (fpclassify_test_data): New variable.
27483         (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
27484         (ilogb_test_data): New variable.
27485         (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
27487         * math/libm-test.inc (scalbln_test): Correct function name in END
27488         call.
27490         * math/libm-test.inc (struct test_f_f1_data): Add comment.
27491         (RUN_TEST_LOOP_fI_f1): New macro.
27492         (frexp_test_data): New variable.
27493         (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
27495         * math/libm-test.inc (struct test_fF_f1_data): New type.
27496         (RUN_TEST_LOOP_fF_f1): New macro.
27497         (modf_test_data): New variable.
27498         (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
27500         * math/libm-test.inc (struct test_f_f1_data): New type.
27501         (RUN_TEST_LOOP_f_f1): New macro.
27502         (gamma_test_data): New variable.
27503         (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
27504         (lgamma_test_data): New variable.
27505         (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
27507 2013-05-13  Carlos O'Donell  <carlos@redhat.com>
27509         * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
27510         * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
27511         (main): Comment "tls" pseudo-hwcap.
27513 2013-05-13  Joseph Myers  <joseph@codesourcery.com>
27515         * math/libm-test.inc (struct test_fl_f_data): New type.
27516         (RUN_TEST_LOOP_fl_f): New variable.
27517         (scalbln_test_data): New variable.
27518         (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
27520         * math/libm-test.inc (struct test_fi_f_data): New type.
27521         (RUN_TEST_LOOP_fi_f): New macro.
27522         (ldexp_test_data): New variable.
27523         (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
27524         (scalbn_test_data): New variable.
27525         (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
27527         * math/libm-test.inc (struct test_c_f_data): New type.
27528         (RUN_TEST_LOOP_c_f): New macro.
27529         (cabs_test_data): New variable.
27530         (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
27531         (carg_test_data): New variable.
27532         (carg_test): Run tests with RUN_TEST_LOOP_c_f.
27533         (cimag_test_data): New variable.
27534         (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
27535         (creal_test_data): New variable.
27536         (creal_test): Run tests with RUN_TEST_LOOP_c_f.
27538         * math/libm-test.inc (struct test_if_f_data): New type.
27539         (RUN_TEST_LOOP_if_f): New macro.
27540         (jn_test_data): New variable.
27541         (jn_test): Run tests with RUN_TEST_LOOP_if_f.
27542         (yn_test_data): New variable.
27543         (yn_test): Run tests with RUN_TEST_LOOP_if_f.
27545         * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
27547 2013-05-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27549         * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
27550         (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
27552 2013-05-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
27554         * benchtests/Makefile (CPPFLAGS-nonlib): Add
27555         -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
27556         (bench-deps): Add bench-timing.h.
27557         * benchtests-bench-skeleton.c: Include bench-timing.h.
27558         (main): Use TIMING_* macros instead of clock_gettime.
27559         * benchtests/bench-timing.h: New file.
27561         [BZ #14582]
27562         * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
27563         Renamed from _LIB_VERSION.
27564         (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
27566 2013-05-12  Joseph Myers  <joseph@codesourcery.com>
27568         * math/libm-test.inc (struct test_fff_f_data): New type.
27569         (RUN_TEST_LOOP_fff_f): New macro.
27570         (fma_test_data): New variable.
27571         (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
27572         (fma_towardzero_test_data): New variable.
27573         (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
27574         (fma_downward_test_data): New variable.
27575         (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
27576         (fma_upward_test_data): New variable.
27577         (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
27579         * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
27580         (struct test_c_c_data): New type.
27581         (RUN_TEST_LOOP_c_c): New macro.
27582         (cacos_test_data): New variable.
27583         (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
27584         (cacosh_test_data): New variable.
27585         (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
27586         (casin_test_data): New variable.
27587         (casin_test): Run tests with RUN_TEST_LOOP_c_c.
27588         (casinh_test_data): New variable.
27589         (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
27590         (catan_test_data): New variable.
27591         (catan_test): Run tests with RUN_TEST_LOOP_c_c.
27592         (catanh_test_data): New variable.
27593         (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
27594         (ccos_test_data): New variable.
27595         (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
27596         (ccosh_test_data): New variable.
27597         (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
27598         (cexp_test_data): New variable.
27599         (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
27600         (clog_test_data): New variable.
27601         (clog_test): Run tests with RUN_TEST_LOOP_c_c.
27602         (clog10_test_data): New variable.
27603         (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
27604         (conj_test_data): New variable.
27605         (conj_test): Run tests with RUN_TEST_LOOP_c_c.
27606         (cproj_test_data): New variable.
27607         (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
27608         (csin_test_data): New variable.
27609         (csin_test): Run tests with RUN_TEST_LOOP_c_c.
27610         (csinh_test_data): New variable.
27611         (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
27612         (csqrt_test_data): New variable.
27613         (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
27614         (ctan_test_data): New variable.
27615         (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
27616         (ctan_tonearest_test_data): New variable.
27617         (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
27618         (ctan_towardzero_test_data): New variable.
27619         (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
27620         (ctan_downward_test_data): New variable.
27621         (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
27622         (ctan_upward_test_data): New variable.
27623         (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
27624         (ctanh_test_data): New variable.
27625         (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
27626         (ctanh_tonearest_test_data): New variable.
27627         (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
27628         (ctanh_towardzero_test_data): New variable.
27629         (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
27630         (ctanh_downward_test_data): New variable.
27631         (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
27632         (ctanh_upward_test_data): New variable.
27633         (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
27634         * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
27635         of BUILD_COMPLEX.
27637         * math/libm-test.inc (struct test_ff_f_data): New type.
27638         (struct test_ff_f_data_nexttoward): Likewise.
27639         (RUN_TEST_LOOP_2_f): New macro.
27640         (RUN_TEST_LOOP_ff_f): Likewise.
27641         (atan2_test_data): New variable.
27642         (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
27643         (copysign_test_data): New variable.
27644         (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
27645         (fdim_test_data): New variable.
27646         (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
27647         (fmax_test_data): New variable.
27648         (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
27649         (fmin_test_data): New variable.
27650         (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
27651         (fmod_test_data): New variable.
27652         (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
27653         (hypot_test_data): New variable.
27654         (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
27655         (nextafter_test_data): New variable.
27656         (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
27657         (nexttoward_test_data): New variable.
27658         (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
27659         (pow_test_data): New variable.
27660         (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
27661         (pow_tonearest_test_data): New variable.
27662         (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
27663         (pow_towardzero_test_data): New variable.
27664         (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
27665         (pow_downward_test_data): New variable.
27666         (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
27667         (pow_upward_test_data): New variable.
27668         (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
27669         (remainder_test_data): New variable.
27670         (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
27671         (scalb_test_data): New variable.
27672         (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
27673         * sysdeps/i386/fpu/libm-test-ulps: Update.
27675 2013-05-11  Joseph Myers  <joseph@codesourcery.com>
27677         * math/libm-test.inc (fma_test): Use max_value instead of local
27678         variable fltmax.
27679         (nextafter_test): Likewise.
27681         * math/libm-test.inc (acos_towardzero_test_data): New variable.
27682         (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27683         (acos_downward_test_data): New variable.
27684         (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27685         (acos_upward_test_data): New variable.
27686         (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27687         (acosh_test_data): New variable.
27688         (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
27689         (asin_test_data): New variable.
27690         (asin_test): Run tests with RUN_TEST_LOOP_f_f.
27691         (asin_tonearest_test_data): New variable.
27692         (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27693         (asin_towardzero_test_data): New variable.
27694         (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27695         (asin_downward_test_data): New variable.
27696         (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27697         (asin_upward_test_data): New variable.
27698         (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27699         (asinh_test_data): New variable.
27700         (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
27701         (atan_test_data): New variable.
27702         (atan_test): Run tests with RUN_TEST_LOOP_f_f.
27703         (atanh_test_data): New variable.
27704         (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
27705         (cbrt_test_data): New variable.
27706         (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
27707         (ceil_test_data): New variable.
27708         (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
27709         (cos_test_data): New variable.
27710         (cos_test): Run tests with RUN_TEST_LOOP_f_f.
27711         (cos_tonearest_test_data): New variable.
27712         (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27713         (cos_towardzero_test_data): New variable.
27714         (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27715         (cos_downward_test_data): New variable.
27716         (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27717         (cos_upward_test_data): New variable.
27718         (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27719         (cosh_test_data): New variable.
27720         (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
27721         (cosh_tonearest_test_data): New variable.
27722         (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27723         (cosh_towardzero_test_data): New variable.
27724         (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27725         (cosh_downward_test_data): New variable.
27726         (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27727         (cosh_upward_test_data): New variable.
27728         (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27729         (erf_test_data): New variable.
27730         (erf_test): Run tests with RUN_TEST_LOOP_f_f.
27731         (erfc_test_data): New variable.
27732         (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
27733         (exp_test_data): New variable.
27734         (exp_test): Run tests with RUN_TEST_LOOP_f_f.
27735         (exp_tonearest_test_data): New variable.
27736         (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27737         (exp_towardzero_test_data): New variable.
27738         (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27739         (exp_downward_test_data): New variable.
27740         (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27741         (exp_upward_test_data): New variable.
27742         (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27743         (exp10_test_data): New variable.
27744         (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
27745         (exp2_test_data): New variable.
27746         (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
27747         (expm1_test_data): New variable.
27748         (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
27749         (fabs_test_data): New variable.
27750         (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
27751         (floor_test_data): New variable.
27752         (floor_test): Run tests with RUN_TEST_LOOP_f_f.
27753         (j0_test_data): New variable.
27754         (j0_test): Run tests with RUN_TEST_LOOP_f_f.
27755         (j1_test_data): New variable.
27756         (j1_test): Run tests with RUN_TEST_LOOP_f_f.
27757         (log_test_data): New variable.
27758         (log_test): Run tests with RUN_TEST_LOOP_f_f.
27759         (log10_test_data): New variable.
27760         (log10_test): Run tests with RUN_TEST_LOOP_f_f.
27761         (log1p_test_data): New variable.
27762         (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
27763         (log2_test_data): New variable.
27764         (log2_test): Run tests with RUN_TEST_LOOP_f_f.
27765         (logb_test_data): New variable.
27766         (logb_test): Run tests with RUN_TEST_LOOP_f_f.
27767         (logb_downward_test_data): New variable.
27768         (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27769         (nearbyint_test_data): New variable.
27770         (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
27771         (rint_test_data): New variable.
27772         (rint_test): Run tests with RUN_TEST_LOOP_f_f.
27773         (rint_tonearest_test_data): New variable.
27774         (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27775         (rint_towardzero_test_data): New variable.
27776         (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27777         (rint_downward_test_data): New variable.
27778         (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27779         (rint_upward_test_data): New variable.
27780         (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27781         (round_test_data): New variable.
27782         (round_test): Run tests with RUN_TEST_LOOP_f_f.
27783         (sin_test_data): New variable.
27784         (sin_test): Run tests with RUN_TEST_LOOP_f_f.
27785         (sin_tonearest_test_data): New variable.
27786         (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27787         (sin_towardzero_test_data): New variable.
27788         (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27789         (sin_downward_test_data): New variable.
27790         (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27791         (sin_upward_test_data): New variable.
27792         (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27793         (sinh_test_data): New variable.
27794         (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
27795         (sinh_tonearest_test_data): New variable.
27796         (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27797         (sinh_towardzero_test_data): New variable.
27798         (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27799         (sinh_downward_test_data): New variable.
27800         (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27801         (sinh_upward_test_data): New variable.
27802         (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27803         (sqrt_test_data): New variable.
27804         (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
27805         (tan_test_data): New variable.
27806         (tan_test): Run tests with RUN_TEST_LOOP_f_f.
27807         (tan_tonearest_test_data): New variable.
27808         (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27809         (tan_towardzero_test_data): New variable.
27810         (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27811         (tan_downward_test_data): New variable.
27812         (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27813         (tan_upward_test_data): New variable.
27814         (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27815         (tanh_test_data): New variable.
27816         (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
27817         (tgamma_test_data): New variable.
27818         (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
27819         (trunc_test_data): New variable.
27820         (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
27821         (y0_test_data): New variable.
27822         (y0_test): Run tests with RUN_TEST_LOOP_f_f.
27823         (y1_test_data): New variable.
27824         (y1_test): Run tests with RUN_TEST_LOOP_f_f.
27825         (significand_test_data): New variable.
27826         (significand_test): Run tests with RUN_TEST_LOOP_f_f.
27828 2013-05-10  Christian Grönke  <cgr_bugs@sysgo.com>
27830         [BZ #12387]
27831         * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
27833 2013-05-10  Pino Toscano  <toscano.pino@tiscali.it>
27835         * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
27837 2013-05-10  Andreas Jaeger  <aj@suse.de>
27839         [BZ #15448]
27840         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
27841         (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
27843 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
27845         * math/gen-libm-test.pl (adjust_arg): New function.
27846         (special_functions): Handle generating output in both functions
27847         and arrays.
27848         (parse_args): Likewise.
27849         (generate_testfile): Handle START_DATA and END_DATA.  Pass extra
27850         $in_func argument to parse_args.
27851         * math/libm-test.inc (struct test_f_f_data): New type.
27852         (IF_ROUND_INIT_): New macro.
27853         (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
27854         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
27855         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
27856         (IF_ROUND_INIT_FE_UPWARD): Likewise.
27857         (ROUND_RESTORE_): Likewise.
27858         (ROUND_RESTORE_FE_DOWNWARD): Likewise.
27859         (ROUND_RESTORE_FE_TONEAREST): Likewise.
27860         (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
27861         (ROUND_RESTORE_FE_UPWARD): Likewise.
27862         (RUN_TEST_LOOP_f_f): New macro.
27863         (acos_test_data): New variable.
27864         (acos_test): Run tests with RUN_TEST_LOOP_f_f.
27865         (acos_tonearest_test_data): New variable.
27866         (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27868 2013-05-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
27870         * benchtests/bench-skeleton.c (startup): Fix coding style.
27872 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
27874         [BZ #6809]
27875         * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
27876         negative infinity argument.
27877         * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
27878         negative infinity argument.
27879         * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
27880         negative infinity argument.
27881         * math/libm-test.inc (tgamma_test): Expect errno to be set for
27882         domain errors.
27884 2013-05-10  Florian Weimer  <fweimer@redhat.com>
27886         * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
27887         * iconv/iconv_charmap.c (charmap_conversion): Likewise.
27888         * iconv/iconv_prog.c (main): Likewise.
27889         * locale/programs/charmap-dir.c (charmap_readdir)
27890         (fopen_uncompressed): Likewise.
27891         * locale/programs/locfile.c (siblings_uncached)
27892         (write_locale_data): Use lstat64 instead of lstat.
27893         * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
27894         stat.
27896 2013-05-10  Andreas Jaeger  <aj@suse.de>
27898         [BZ #15395]
27899         * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
27900         localization.
27901         Include <locale.h>.
27903 2013-05-09  Carlos O'Donell  <carlos@redhat.com>
27905         * elf/dl-close.c (_dl_close_worker): Add comments.
27907 2013-05-09  Joseph Myers  <joseph@codesourcery.com>
27909         [BZ #15359]
27910         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
27911         high part of pi/2.
27912         (__ieee754_rem_pio2l): Update comments.
27914         [BZ #15429]
27915         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
27916         high part of pi/2.
27917         (__ieee754_rem_pio2l): Update comments.
27919         * math/libm-test.inc (M_SQRT_2_2): Remove macro.
27920         (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
27922         * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
27923         M_PI_4l.
27925         * math/libm-test.inc (M_PI_34l): Define using decimal constant.
27926         (M_PI_34_LOG10El): Likewise.
27927         (M_PI2_LOG10El): Likewise.
27928         (M_PI4_LOG10El): Likewise.
27929         (M_PI_LOG10El): Likewise.
27931 2013-05-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27933         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
27935 2013-05-08  Joseph Myers  <joseph@codesourcery.com>
27937         * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
27938         (MINUS_ZERO_INIT): Likewise.
27939         (PLUS_INFTY_INIT): Likewise.
27940         (MINUS_INFTY_INIT): Likewise.
27941         (QNAN_VALUE_INIT): Likewise.
27942         (MAX_VALUE_INIT): Likewise.
27943         (MIN_VALUE_INIT): Likewise.
27944         (MIN_SUBNORM_VALUE_INIT): Likewise.
27945         (plus_zero): Initialize with PLUS_ZERO_INIT.
27946         (minus_zero): Initialize with MINUS_ZERO_INIT.
27947         (plus_infty): Initialize with PLUS_INFTY_INIT.
27948         (minus_infty): Initialize with MINUS_INFTY_INIT.
27949         (qnan_value): Initialize with QNAN_VALUE_INIT.
27950         (max_value): Initialize with MAX_VALUE_INIT.
27951         (min_value): Initialize with MIN_VALUE_INIT.
27952         (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
27954         * math/libm-test.inc (RUN_TEST_if_f): New macro.
27955         (jn_test): Use TEST_if_f instead of TEST_ff_f.
27956         (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
27957         (yn_test): Use TEST_if_f instead of TEST_ff_f.
27959         * math/libm-test.inc (RUN_TEST_f_f): New macro.
27960         (RUN_TEST_2_f): Likewise.
27961         (RUN_TEST_ff_f): Likewise.
27962         (RUN_TEST_fi_f): Likewise.
27963         (RUN_TEST_fl_f): Likewise.
27964         (RUN_TEST_fff_f): Likewise.
27965         (RUN_TEST_c_f): Likewise.
27966         (RUN_TEST_f_f1): Likewise.
27967         (RUN_TEST_fF_f1): Likewise.
27968         (RUN_TEST_fI_f1): Likewise.
27969         (RUN_TEST_ffI_f1): Likewise.
27970         (RUN_TEST_c_c): Likewise.
27971         (RUN_TEST_cc_c): Likewise.
27972         (RUN_TEST_f_i): Likewise.
27973         (RUN_TEST_f_i_tg): Likewise.
27974         (RUN_TEST_ff_i_tg): Likewise.
27975         (RUN_TEST_f_b): Likewise.
27976         (RUN_TEST_f_b_tg): Likewise.
27977         (RUN_TEST_f_l): Likewise.
27978         (RUN_TEST_f_L): Likewise.
27979         (RUN_TEST_sincos): Likewise.
27980         * math/gen-libm-test.pl (new_test): Take new argument to indicate
27981         whether to show exceptions.  Do not include ");\n" in return
27982         value.
27983         (special_functions): Output call to RUN_TEST_sincos instead of
27984         check_float calls.  Update calls to new_test.
27985         (parse_args): Output call to single RUN_TEST_* macro instead of
27986         check_* calls and other assignments.  Update calls to new_test.
27988         [BZ #2546]
27989         [BZ #2560]
27990         [BZ #5159]
27991         [BZ #15426]
27992         * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
27993         input to result for tgamma overflow.
27994         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
27995         (gamma_coeff): New variable.
27996         (NCOEFF): New macro.
27997         (gamma_positive): New function.
27998         (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
27999         underflow here.  Use gamma_positive instead of exp (lgamma) for
28000         other arguments.
28001         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
28002         (gamma_coeff): New variable.
28003         (NCOEFF): New macro.
28004         (gammaf_positive): New function.
28005         (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
28006         underflow here.  Use gamma_positive instead of exp (lgamma) for
28007         other arguments.
28008         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
28009         (gamma_coeff): New variable.
28010         (NCOEFF): New macro.
28011         (gammal_positive): New function.
28012         (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
28013         underflow here.  Use gamma_positive instead of exp (lgamma) for
28014         other arguments.
28015         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
28016         (gamma_coeff): New variable.
28017         (NCOEFF): New macro.
28018         (gammal_positive): New function.
28019         (__ieee754_gammal_r): Handle positive infinity, overflow and
28020         underflow here.  Handle NaN the same as positive infinity.  Remove
28021         check x < 0xffffffff for negative integers.  Use gamma_positive
28022         instead of exp (lgamma) for other arguments.
28023         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
28024         (gamma_coeff): New variable.
28025         (NCOEFF): New macro.
28026         (gammal_positive): New function.
28027         * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
28028         * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
28029         * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
28030         * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
28031         * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
28032         * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
28033         * sysdeps/generic/math_private.h (__gamma_productf): New
28034         prototype.
28035         (__gamma_product): Likewise.
28036         (__gamma_productl): Likewise.
28037         * math/Makefile (libm-calls): Add gamma_product.
28038         * math/libm-test.inc (tgamma_test): Add more tests.
28039         * sysdeps/i386/fpu/libm-test-ulps: Update.
28040         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28042 2013-05-08  Ondřej Bílka  <neleai@seznam.cz>
28044         * benchtests/bench-skeleton.c (main): Preheat CPU.
28046 2013-05-07  Aurelien Jarno <aurelien@aurel32.net>
28048         * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
28050 2013-05-07  Roland McGrath  <roland@hack.frob.com>
28052         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
28053         and _dl_skip_args_internal.
28055 2013-05-07  Carlos O'Donell  <carlos@redhat.com>
28057         * manual/message.texi (Message Translation): Talk about users.
28058         Message to key mapping impacts design.
28060 2013-05-06  Roland McGrath  <roland@hack.frob.com>
28062         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
28064         * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
28066         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
28067         * sysdeps/wordsize-64/glob64.c: ... here.
28069         * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
28070         (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
28071         New macros.
28073         * debug/getlogin_r_chk.c: Moved to ...
28074         * login/getlogin_r_chk.c: ... here.
28075         * debug/Makefile (routines): Move getlogin_r_chk to ...
28076         * login/Makefile (routines): ... here.
28077         * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
28078         * login/Versions (libc: GLIBC_2.4): ... here.
28080         * io/poll.c (__poll): Renamed from poll.
28081         Add libc_hidden_def.
28082         (poll): Define as weak alias.
28084         * debug/ptsname_r_chk.c: Moved to ...
28085         * login/ptsname_r_chk.c: ... here.
28086         * debug/Makefile (routines): Move ptsname_r_chk to ...
28087         * login/Makefile (routines): ... here.
28088         * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
28089         * login/Versions (libc: GLIBC_2.4): ... here.
28091         * posix/getlogin.c: Moved to ...
28092         * login/getlogin.c: ... here.
28093         * posix/getlogin_r.c: Moved to ...
28094         * login/getlogin_r.c: ... here.
28095         * posix/getlogin_r.c: Moved to ...
28096         * login/getlogin_r.c: ... here.
28097         * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
28098         * login/Makefile (routines): ... here.
28099         * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
28100         * login/Versions (libc: GLIBC_2.0): ... here.
28102         * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
28103         (setrlimit): Define as weak alias.
28105         * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
28106         Call __ names for open, ftruncate, and close.
28107         For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
28108         (truncate): Define as weak alias.
28110 2013-05-06  Joseph Myers  <joseph@codesourcery.com>
28112         * math/gen-libm-test.pl (parse_args): Initialize x before each
28113         test of frexp, modf and remquo.
28115         * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
28116         test signgam value.
28118 2013-05-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28120         [BZ #15418]
28121         [BZ #15419]
28122         * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
28123         internal tests.
28124         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
28126 2013-05-06  Roland McGrath  <roland@hack.frob.com>
28128         * elf/dl-writev.h: New file.
28129         * elf/dl-misc.c: Include it.
28130         (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
28131         * sysdeps/unix/sysv/linux/dl-writev.h: New file.
28133 2013-05-04  Joseph Myers  <joseph@codesourcery.com>
28135         * math/libm-test.inc (noXFails): Remove variable.
28136         (noXPasses): Likewise.
28137         (BUILD_COMPLEX_INT): Remove macro.
28138         (print_screen): Remove xfail argument.
28139         (print_screen_max_error): Likewise.
28140         (update_stats): Likewise.
28141         (print_max_error): Likewise.  Update calls to other affected
28142         functions.
28143         (print_complex_max_error): Likewise.
28144         (test_single_exception): Update calls to print_screen.
28145         (test_single_errno): Likewise.
28146         (check_float_internal): Remove xfail argument.  Update calls to
28147         other affected functions.
28148         (check_float): Likewise.
28149         (check_complex): Likewise.
28150         (check_int): Likewise.
28151         (check_long): Likewise.
28152         (check_bool): Likewise.
28153         (check_longlong): Likewise.
28154         (main): Don't print noXFails and noXPasses.
28155         * math/gen-libm-test.pl (top level): Don't mention expected
28156         failure handling in comment.
28157         (new_test): Don't handle expected failures.
28158         (parse_args): Don't mention expected failure handling in comment.
28159         (generate_testfile): Don't handle expected failures.
28160         (parse_ulps): Likewise.
28161         (print_ulps_file): Likewise.
28162         (get_failure): Remove function.
28163         (output_test): Don't handle expected failures.
28164         * make/README.libm-test: Don't mention expected failure handling.
28166         * math/libm-test.inc (plus_zero): Make const.  Add initializer.
28167         (minus_zero): Likewise.
28168         (plus_infty): Likewise.
28169         (minus_infty): Likewise.
28170         (qnan_value): Likewise.
28171         (max_value): Likewise.
28172         (min_value): Likewise.
28173         (min_subnorm_value): Likewise.
28174         (initialize): Do not initialize those variables dynamically.
28176 2013-05-03  Roland McGrath  <roland@hack.frob.com>
28178         * io/open.c (__open_2): Moved to ...
28179         * io/open_2.c: ... this new file.
28180         * io/open64.c (__open64_2): Moved to ...
28181         * io/open64_2.c: ... this new file.
28182         * io/openat.c (__openat_2): Moved to ...
28183         * io/openat_2.c: ... this new file.
28184         * io/openat64.c (__openat64_2): Moved to ...
28185         * io/openat64_2.c: ... this new file.
28186         * io/Makefile (routines): Add them.
28187         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
28188         * sysdeps/unix/sysv/linux/open_2.c: File removed.
28189         * sysdeps/unix/sysv/linux/open64_2.c: File removed.
28190         * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
28191         * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
28192         * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
28193         (__openat64): Add hidden_ver.
28194         * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
28195         * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
28197         * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
28198         Separately conditionalize setting of GLRO(dl_sysinfo) so
28199         that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
28200         as well, but the actual setting is only under [NEED_DL_SYSINFO].
28202 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28204         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
28205         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
28206         definition.
28207         (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
28208         * sysdeps/unix/sysv/linux/powerpc/init-first.c
28209         (_libc_vdso_platform_setup): Add __vdso_time initialization.
28210         * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
28211         for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
28213 2013-05-03  Joseph Myers  <joseph@codesourcery.com>
28215         * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
28216         test signgam value.
28218         * math/libm-test.inc (hypot_test): Do not use
28219         IGNORE_ZERO_INF_SIGN.
28221 2013-05-03  Andreas Jaeger  <aj@suse.de>
28223         * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
28224         Linux 3.9.
28225         * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
28226         (PF_MAX): Adjust for VSOCK change.
28228 2013-05-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28230         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28232 2013-05-02  Carlos O'Donell  <carlos@redhat.com>
28234         [BZ #15264]
28235         * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
28236         * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
28237         * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
28239 2013-05-02  David S. Miller  <davem@davemloft.net>
28241         * sysdeps/sparc/fpu/libm-test-ulps: Update.
28243 2013-05-01  Ondřej Bílka  <neleai@seznam.cz>
28245         * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
28247 2013-05-01  Roland McGrath  <roland@hack.frob.com>
28249         * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
28251 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
28253         [BZ #14952]
28254         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
28255         [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
28256         Use __attribute__ ((__gnu_inline__)).
28257         [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
28258         Don't use __attribute__ ((__gnu_inline__)).
28260 2013-05-01  Joseph Myers  <joseph@codesourcery.com>
28262         [BZ #15423]
28263         * math/s_catan.c (__catan): Handle small real or imaginary part of
28264         input specially to avoid spurious underflow.
28265         * math/s_catanf.c (__catanf): Likewise.
28266         * math/s_catanh.c (__catanh): Likewise.
28267         * math/s_catanhf.c (__catanhf): Likewise.
28268         * math/s_catanhl.c (__catanhl): Likewise.
28269         * math/s_catanl.c (__catanl): Likewise.
28270         * math/libm-test.inc (catan_test): Add more tests.
28271         (catanh_test): Likewise.
28272         * sysdeps/i386/fpu/libm-test-ulps: Update.
28273         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28275 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28277         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28279 2013-04-30  Joseph Myers  <joseph@codesourcery.com>
28281         [BZ #15416]
28282         * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
28283         accurately for denominator in atan2.
28284         * math/s_catanf.c (__catanf): Likewise.
28285         * math/s_catanh.c (__catanh): Likewise.
28286         * math/s_catanhf.c (__catanhf): Likewise.
28287         * math/s_catanhl.c (__catanhl): Likewise.
28288         * math/s_catanl.c (__catanl): Likewise.
28289         * math/libm-test.inc (catan_test): Add more tests.
28290         (catanh_test): Likewise.
28291         * sysdeps/i386/fpu/libm-test-ulps: Update.
28292         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28294 2013-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
28296         * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
28298         * benchtests/Makefile (bench): Remove slow benchmarks.
28299         * benchtests/atan-inputs: Add slow benchmark inputs.
28300         * benchtests/bench-modf.c (NUM_VARIANTS): Define.
28301         (BENCH_FUNC): Accept variant offset.
28302         (VARIANT): Define.
28303         * benchtests/bench-skeleton.c (main): Run benchmark for each
28304         variant.
28305         * benchtests/cos-inputs: Add slow benchmark inputs.
28306         * benchtests/exp-inputs: Likewise.
28307         * benchtests/pow-inputs: Likewise.
28308         * benchtests/sin-inputs: Likewise.
28309         * benchtests/slowatan-inputs: Remove.
28310         * benchtests/slowatan.c: Remove.
28311         * benchtests/slowcos-inputs: Remove.
28312         * benchtests/slowcos.c: Remove.
28313         * benchtests/slowexp-inputs: Remove.
28314         * benchtests/slowexp.c: Remove.
28315         * benchtests/slowpow-inputs: Remove.
28316         * benchtests/slowpow.c: Remove.
28317         * benchtests/slowsin-inputs: Remove.
28318         * benchtests/slowsin.c: Remove.
28319         * benchtests/slowtan-inputs: Remove.
28320         * benchtests/slowtan.c: Remove.
28321         * benchtests/tan-inputs: Add slow benchmark inputs.
28322         * scripts/bench.pl: Parse comments and directives.
28324         * benchtests/Makefile: Remove *-ITER.  Define BENCH_DURATION
28325         in CPPFLAGS.
28326         ($(objpfx)bench-%.c): Remove *-ITER.
28327         * benchtests/bench-modf.c: Remove definition of ITER.
28328         * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
28329         (main): Loop for DURATION seconds instead of fixed number of
28330         iterations.
28331         * scripts/bench.pl: Don't expect iterations in parameters.
28333 2013-04-29  Roland McGrath  <roland@hack.frob.com>
28335         * io/fchdir.c (__fchdir): Renamed from fchdir.
28336         (fchdir): Define as weak alias.
28338 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
28340         * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
28341         (ERRNO_EDOM): Likewise.
28342         (ERRNO_ERANGE): Likewise.
28343         (noErrnoTests): New variable.
28344         (init_max_error): Set errno to 0.
28345         (test_single_errno): New function.
28346         (test_errno): Likewise.
28347         (check_float_internal): Call test_errno.  Set errno to 0.
28348         (check_complex): Refer to errno tests in comment.
28349         (check_int): Call test_errno.  Set errno to 0.
28350         (check_long): Likewise.
28351         (check_bool): Likewise.
28352         (check_longlong): Likewise.
28353         (cos_test): Use ERRNO_* flags for errno tests instead of
28354         check_int.
28355         (expm1_test): Likewise.
28356         (fmod_test): Likewise.
28357         (ilogb_test): Likewise.
28358         (lgamma_test): Likewise.
28359         (pow_test): Likewise.
28360         (remainder_test): Likewise.
28361         (sin_test): Likewise.
28362         (tan_test): Likewise.
28363         (yn_test): Likewise.
28364         (initialize): Set errno to 0.
28365         (main): Print number of errno tests.
28366         * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
28368 2013-04-29  Andreas Jaeger  <aj@suse.de>
28370         [BZ #15084]
28371         * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
28372         and RES_USEVC.
28374         [BZ #15085]
28375         * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
28376         * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
28377         unimplemented.
28379         [BZ #15380]
28380         * stdlib/random.c (__initstate): Return NULL if
28381         __initstate fails.
28383         [BZ #15086]
28384         * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
28385         RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
28386         RES_SNGLKUPREOP.
28388 2013-04-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28390         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28392 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
28394         * math/libm-test.inc (cacos_test): Add missing semicolons at ends
28395         of individual tests.
28396         (casin_test): Likewise.
28397         (casinh_test): Likewise.
28399 2013-04-27  Joseph Myers  <joseph@codesourcery.com>
28401         [BZ #15409]
28402         * math/s_catan.c (__catan): Handle arguments with large real or
28403         imaginary part separately without squaring.
28404         * math/s_catanf.c (__catanf): Likewise.
28405         * math/s_catanh.c (__catanh): Likewise.
28406         * math/s_catanhf.c (__catanhf): Likewise.
28407         * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
28408         and redefine.
28409         (__catanhl): Handle arguments with large real or imaginary part
28410         separately without squaring.
28411         * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
28412         and redefine.
28413         (__catanl): Handle arguments with large real or imaginary part
28414         separately without squaring.
28415         * math/libm-test.inc (catan_test): Add more tests.
28416         (catanh_test): Likewise.
28417         * sysdeps/i386/fpu/libm-test-ulps: Update.
28418         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28420 2013-04-27  Andreas Jaeger  <aj@suse.de>
28422         [BZ #15007]
28423         * stdlib/stdlib.h: Update guards for qecvt.
28424         * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
28425         <stdlib.h>.
28427 2013-04-27  Allan McRae  <allan@archlinux.org>
28429         * sysdeps/i386/fpu/libm-test-ulps: Update.
28431 2013-04-26  Joseph Myers  <joseph@codesourcery.com>
28433         [BZ #15406]
28434         * math/s_catan.c: Include <float.h>.
28435         (__catan): Ensure underflow exception occurs for underflowed
28436         result.
28437         * math/s_catanf.c: Include <float.h>.
28438         (__catanf): Ensure underflow exception occurs for underflowed
28439         result.
28440         * math/s_catanh.c: Include <float.h>.
28441         (__catanh): Ensure underflow exception occurs for underflowed
28442         result.
28443         * math/s_catanhf.c: Include <float.h>.
28444         (__catanhf): Ensure underflow exception occurs for underflowed
28445         result.
28446         * math/s_catanhl.c: Include <float.h>.
28447         (__catanhl): Ensure underflow exception occurs for underflowed
28448         result.
28449         * math/s_catanl.c: Include <float.h>.
28450         (__catanl): Ensure underflow exception occurs for underflowed
28451         result.
28452         * math/libm-test.inc (catan_test): Add more tests.
28453         (catanh_test): Likewise.
28455         [BZ #15405]
28456         * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
28457         underflowed result.
28458         * math/s_ccoshf.c (__ccoshf): Likewise.
28459         * math/s_ccoshl.c (__ccoshl): Likewise.
28460         * math/s_csin.c (__csin): Likewise.
28461         * math/s_csinf.c (__csinf): Likewise.
28462         * math/s_csinh.c (__csinh): Likewise.
28463         * math/s_csinhf.c (__csinhf): Likewise.
28464         * math/s_csinhl.c (__csinhl): Likewise.
28465         * math/s_csinl.c (__csinl): Likewise.
28466         * math/libm-test.inc (ccos_test): Add more tests.
28467         (ccosh_test): Likewise.
28468         (csin_test): Likewise.
28469         (csinh_test): Likewise.
28471 2013-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28473         * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
28474         * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
28475         * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
28476         * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
28477         * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
28478         powerpc/power5+/fpu folders.
28479         * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
28482 2013-04-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
28484         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
28486 2013-04-25  Joseph Myers  <joseph@codesourcery.com>
28488         * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
28489         additions to variable.
28490         [$(config-machine) = x86_64] (modules-names): Likewise.
28491         ($(objpfx)tst-audit3): Remove dependency.
28492         ($(objpfx)tst-audit3.out): Likewise.
28493         ($(objpfx)tst-audit4): Likewise.
28494         ($(objpfx)tst-audit4.out): Likewise.
28495         ($(objpfx)tst-audit5): Likewise.
28496         ($(objpfx)tst-audit5.out): Likewise.
28497         ($(objpfx)tst-audit6): Likewise.
28498         ($(objpfx)tst-audit6.out): Likewise.
28499         ($(objpfx)tst-audit7): Likewise.
28500         ($(objpfx)tst-audit7.out): Likewise.
28501         (tst-audit3-ENV): Remove variable.
28502         (tst-audit4-ENV): Likewise.
28503         (tst-audit5-ENV): Likewise.
28504         (tst-audit6-ENV): Likewise.
28505         (tst-audit7-ENV): Likewise.
28506         [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
28507         [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
28508         addition to variable.
28509         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
28510         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
28511         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
28512         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
28513         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
28514         * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
28515         tst-audit3, tst-audit4 and tst-audit5.
28516         [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
28517         tst-audit6 and tst-audit7.
28518         [$(subdir) = elf] (modules-names): Add audit modules for those
28519         tests.
28520         [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
28521         [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
28522         [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
28523         [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
28524         [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
28525         [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
28526         [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
28527         [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
28528         [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
28529         [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
28530         [$(subdir) = elf] (tst-audit3-ENV): New variable.
28531         [$(subdir) = elf] (tst-audit4-ENV): Likewise.
28532         [$(subdir) = elf] (tst-audit5-ENV): Likewise.
28533         [$(subdir) = elf] (tst-audit6-ENV): Likewise.
28534         [$(subdir) = elf] (tst-audit7-ENV): Likewise.
28535         [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
28536         Likewise.
28537         [$(subdir) = elf && $(config-cflags-avx) = yes]
28538         (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
28539         [$(subdir) = elf && $(config-cflags-avx) = yes]
28540         (CFLAGS-tst-auditmod4a.c): Likewise.
28541         [$(subdir) = elf && $(config-cflags-avx) = yes]
28542         (CFLAGS-tst-auditmod4b.c): Likewise.
28543         [$(subdir) = elf && $(config-cflags-avx) = yes]
28544         (CFLAGS-tst-auditmod6b.c): Likewise.
28545         [$(subdir) = elf && $(config-cflags-avx) = yes]
28546         (CFLAGS-tst-auditmod6c.c): Likewise.
28547         [$(subdir) = elf && $(config-cflags-avx) = yes]
28548         (CFLAGS-tst-auditmod7b.c): Likewise.
28549         * elf/tst-audit3.c: Move to ...
28550         * sysdeps/x86_64/tst-audit3.c: ... here.
28551         * elf/tst-audit4.c: Move to ...
28552         * sysdeps/x86_64/tst-audit4.c: ... here.
28553         * elf/tst-audit5.c: Move to ...
28554         * sysdeps/x86_64/tst-audit5.c: ... here.
28555         * elf/tst-audit6.c: Move to ...
28556         * sysdeps/x86_64/tst-audit6.c: ... here.
28557         * elf/tst-audit7.c: Move to ...
28558         * sysdeps/x86_64/tst-audit7.c: ... here.
28559         * elf/tst-auditmod3a.c: Move to ...
28560         * sysdeps/x86_64/tst-auditmod3a.c: ... here.
28561         * elf/tst-auditmod3b.c: Move to ...
28562         * sysdeps/x86_64/tst-auditmod3b.c: ... here.
28563         * elf/tst-auditmod4a.c: Move to ...
28564         * sysdeps/x86_64/tst-auditmod4a.c: ... here.
28565         * elf/tst-auditmod4b.c: Move to ...
28566         * sysdeps/x86_64/tst-auditmod4b.c: ... here.
28567         * elf/tst-auditmod5a.c: Move to ...
28568         * sysdeps/x86_64/tst-auditmod5a.c: ... here.
28569         * elf/tst-auditmod5b.c: Move to ...
28570         * sysdeps/x86_64/tst-auditmod5b.c: ... here.
28571         * elf/tst-auditmod6a.c: Move to ...
28572         * sysdeps/x86_64/tst-auditmod6a.c: ... here.
28573         * elf/tst-auditmod6b.c: Move to ...
28574         * sysdeps/x86_64/tst-auditmod6b.c: ... here.
28575         * elf/tst-auditmod6c.c: Move to ...
28576         * sysdeps/x86_64/tst-auditmod6c.c: ... here.
28577         * elf/tst-auditmod7a.c: Move to ...
28578         * sysdeps/x86_64/tst-auditmod7a.c: ... here.
28579         * elf/tst-auditmod7b.c: Move to ...
28580         * sysdeps/x86_64/tst-auditmod7b.c: ... here.
28582 2013-04-25  Paul Pluzhnikov  <ppluzhnikov@google.com>
28584         [BZ #15366]
28585         * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
28586         define unconditionally.
28587         * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
28588         define unconditionally.
28589         (INT8_C, INT16_C, etc.): Likewise.
28591 2013-04-25  Maciej W. Rozycki  <macro@codesourcery.com>
28593         * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
28594         __ehdr_start with hidden visibility.
28596         * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
28598 2013-04-24  Carlos O'Donell  <carlos@redhat.com>
28600         * math/libm-test.inc (cos_test): Use accurate hex constants.
28601         (sincost_test): Likewise.
28603 2013-04-24  Joseph Myers  <joseph@codesourcery.com>
28605         * math/libm-test.inc (catan_test): Add more tests.
28606         (catanh_test): Likewise.
28608         * math/s_catanf.c (__catanf): Use suffixed floating-point
28609         constants.
28610         * math/s_catanhf.c (__catanhf): Likewise.
28611         * math/s_catanhl.c (__catanhl): Likewise.
28612         * math/s_catanl.c (__catanl): Likewise.
28614         [BZ #15394]
28615         * math/s_catan.c (__catan): Calculate imaginary part of result
28616         with log1p not log unless computing log of number close to 0.
28617         * math/s_catanf.c (__catanf): Likewise.
28618         * math/s_catanl.c (__catanl): Likewise.
28619         * math/s_catanh.c (__catanh): Calculate real part of result with
28620         log1p not log unless computing log of number close to 0.
28621         * math/s_catanhf.c (__catanhf): Likewise.
28622         * math/s_catanhl.c (__catanhl): Likewise.
28623         * math/libm-test.inc (catan_test): Add more tests.
28624         (catanh_test): Likewise.
28625         * sysdeps/i386/fpu/libm-test-ulps: Update.
28626         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28628 2013-04-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
28630         * benchtests/Makefile: Mention files in which fast and slow
28631         paths of math functions are implemented.
28633 2013-04-23  Roland McGrath  <roland@hack.frob.com>
28635         * sysdeps/posix/timespec_get.c: New file.
28637 2013-04-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28639         * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
28640         POWER.
28641         * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
28642         for POWER.
28643         * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
28644         powerpc/power5/fpu folders.
28645         * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
28646         * benchtests/Makefile: Add modf testcase.
28647         * benchtests/bench-modf.c: New file: Benchmark test for mo
28649 2013-04-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
28651         [BZ #14888]
28652         * time/Makefile (tests): Add tst-strptime-whitespace.
28653         * time/strptime_l.c (get_number): Use ISSPACE.
28654         (__strptime_internal): Likewise.
28655         * time/tst-strptime-whitespace.c: New test case.
28657 2013-04-23  Andreas Schwab  <schwab@linux-m68k.org>
28659         * nss/nss_files/files-init.c (TF): Don't initialize flexible array
28660         member.
28661         (_nss_files_init): Set it here.
28663 2013-04-23  Heiko Carstens  <heiko.carstens@de.ibm.com>
28665         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
28666         f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
28667         unsigned.
28669 2013-04-22  Jan-Benedict Glaw  <jbglaw@getslash.de>
28671         * nss/getent.c (shadow_keys): Call endspent, not endpwent.
28673 2013-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
28675         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
28676         size just once.
28678 2013-04-21  David S. Miller  <davem@davemloft.net>
28680         * po/ru.po: Update Russion translation from translation project.
28682 2013-04-17  Adam Conrad  <adconrad@0c3.net>
28684         * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
28685         and setfsgid.
28687 2013-04-17  Carlos O'Donell  <carlos@redhat.com>
28689         * configure.in: Remove i386 configure warning. Remove i386 case.
28690         * configure: Regenerate.
28691         * sysdeps/i386/configure.in: Raise error if config_machine is i386.
28692         Add example to error message.
28693         * sysdeps/i386/configure: Regenerate.
28695 2013-04-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
28697         * benchtests/Makefile (bench): Add cos, tan, slowcos and
28698         slowtan.
28699         * benchtests/cos-inputs: New file.
28700         * benchtests/slowcos-inputs: New file.
28701         * benchtests/slowcos.c: New file.
28702         * benchtests/slowtan-inputs: New file.
28703         * benchtests/slowtan.c: New file.
28704         * benchtests/tan-inputs: New file.
28706 2013-04-16  Roland McGrath  <roland@hack.frob.com>
28708         * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
28709         considered kosher.
28711 2013-04-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
28713         * benchtests/Makefile: Include cppflags-iterator.mk to add
28714         -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
28716         * Makefile.in (bench-clean): New target.
28717         * benchtests/Makefile (bench-clean): Likewise.
28719 2013-04-16  David Holsgrove  <david.holsgrove@xilinx.com>
28721         * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
28723 2013-04-15  Thomas Schwinge  <thomas@codesourcery.com>
28725         * stdio-common/tstdiomisc.c: Fix coding-style violation.
28727 2013-04-15  Andreas Schwab  <schwab@suse.de>
28729         * nscd/grpcache.c (cache_addgr): Properly check for short write.
28730         * nscd/initgrcache.c (addinitgroupsX): Likewise.
28731         * nscd/pwdcache.c (cache_addpw): Likewise.
28732         * nscd/servicescache.c (cache_addserv): Likewise.  Don't write
28733         more than recsize.
28735 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
28737         * benchtests/Makefile (bench): Write all output to
28738         bench-out.tmp together.
28740 2013-04-15  Andreas Schwab  <schwab@suse.de>
28742         * nscd/nscd.c (main): Don't fork again after closing files.
28744 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
28746         * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
28748         * benchtests/Rules (bench-deps): Collect dependencies into a
28749         single variable.  Add Makefile to dependencies.
28750         ($(objpfx)bench-%.c): Depend on bench-deps.
28752 2013-04-12  Roland McGrath  <roland@hack.frob.com>
28753             Xavier Roche  <roche+kml2@exalead.com>
28755         [BZ #15361]
28756         * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
28757         just that it's a file descriptor.
28758         * manual/llio.texi (Synchronizing AIO Operations): Update description
28759         for EBADF error from aio_fsync.
28761 2013-04-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
28763         * Rules (bench): Move target definition...
28764         * benchtests/Makefile: ... here.
28766 2013-04-11  Carlos O'Donell  <carlos@redhat.com>
28768         * math/libm-test.inc (cos_test): Fix PI/2 test.
28769         (sincos_test): Likewise.
28770         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
28771         * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
28773 2013-04-11  Andreas Schwab  <schwab@suse.de>
28775         [BZ #13988]
28776         * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
28777         accept exponent character only when digits were seen.
28778         * stdio-common/Makefile (tests): Add bug26.
28779         * stdio-common/bug26.c: New file.
28781         [BZ #14293]
28782         * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
28783         non-freeable.
28785 2013-04-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
28787         * Makeconfig (rtld-prefix): Define built linker prefix.
28788         * Rules (run-bench): Use it.
28789         * math/Makefile (run-regen-ulps): Likewise.
28791         * Rules (bench): Remove eval.
28793 2013-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
28794             Roland McGrath  <roland@hack.frob.com>
28795             Ondrej Bilka  <neleai@seznam.cz>
28797         [BZ #15346]
28798         * time/getdate.c: Include ctype.h and alloca.h.
28799         (__getdate_r): Trim leading and trailing spaces of input.
28800         * time/tst-getdate.c (tests): Add tests with leading and
28801         trailing spaces.
28803 2013-04-08  Roland McGrath  <roland@hack.frob.com>
28805         [BZ #14280]
28806         * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
28807         when computing value.
28809 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
28811         * math/README.libm-test (How can I generate "libm-test-ulps"?):
28812         Use testrun.sh to run libm tests.
28814         [BZ #15309]
28815         * elf/dl-open.c (dl_open_worker): memset all of seen array.
28817 2013-04-06  Marko Myllynen  <myllynen@redhat.com>
28819         [BZ #15264]
28820         * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
28822 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
28824         * Makefile.in (regen-ulps): New target.
28825         * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
28826         [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
28827         [ifneq (no,$(PERL)] (regen-ulps): New target.
28828         [ifeq (no,$(PERL)] (regen-ulps): New target.
28829         * math/libm-test.inc (ulps_file_name): Define.
28830         (output_dir): New variable.
28831         (options): Add "output-dir" option.
28832         (parse_opt): Handle 'o' case.
28833         (main): If output_dir is non-NULL use it as a prefix
28834         otherwise use "".
28835         * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
28837 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
28839         [BZ #10060, #10062]
28840         * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
28841         * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
28842         fail configure if __sync_val_compare_and_swap is not inlined.
28843         * sysdeps/i386/configure: Regenerate.
28844         * configure.in: Build for i686 when configured for i386.
28845         * configure: Regenerate.
28846         * README: Remove i386 reference.
28848 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
28850         * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
28851         * sysdeps/s390/s390-64/sysdep.h: Likewise.
28853 2013-04-05  Thomas Schwinge  <thomas@codesourcery.com>
28855         * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
28856         (lmsnanval): New variables.
28857         (F): Add conversion tests.
28858         * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
28859         * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
28861         * stdio-common/tstdiomisc.c (F): Properly collect individual
28862         tests' results.
28864         [BZ #14686, #15336]
28865         * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
28866         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
28867         Instead, use input NaN values or generate a qNaN by arithmetic
28868         operation.  Also fix bugs to comply with the standard.
28869         * math/libm-test.inc (remainder_test): Add more tests.
28871         [BZ #15335, #15342]
28872         * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
28873         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
28874         input NaN values or generate a qNaN by arithmetic operation.
28876         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
28877         unreachable code.
28879         * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
28880         definitions.
28882 2013-04-03  Joseph Myers  <joseph@codesourcery.com>
28884         [BZ #14478]
28885         * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
28886         underflowed result.
28887         * math/s_cexpf.c (__cexpf): Likewise.
28888         * math/s_cexpl.c (__cexpl): Likewise.
28889         * math/libm-test.inc (cexp_test): Add more tests.
28891 2013-04-03  Andreas Schwab  <schwab@suse.de>
28893         [BZ #15330]
28894         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
28895         order arrays from heap if bigger than alloca cutoff.
28897 2013-04-03  Thomas Schwinge  <thomas@codesourcery.com>
28899         * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
28900         (SNAN_TESTS_double): Refer to GCC PR56831.
28901         * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
28902         GCC PR56828.
28904 2013-04-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
28906         * Rules (bench): Move bench.out after the run is complete.
28908         * Rules (bench): Echo currently running benchmark.
28910         * benchtests/Makefile (bench): Add atan and slowatan.
28911         * benchtests/atan-inputs: New file.
28912         * benchtests/slowatan-inputs: New file.
28913         * benchtests/slowatan.c: New file.
28915         * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
28916         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
28917         its value.
28919         [BZ #15305]
28920         * sysdeps/unix/sysv/linux/kernel-features.h
28921         [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
28922         __ASSUME_XFS_RESTRICTED_CHOWN.
28923         * sysdeps/unix/sysv/linux/pathconf.c
28924         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
28925         Save and restore errno.
28927 2013-04-02  Joseph Myers  <joseph@codesourcery.com>
28929         [BZ #15327]
28930         * math/s_cacosh.c (__cacosh): Implement for finite nonzero
28931         arguments using __kernel_casinh.
28932         * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
28933         arguments using __kernel_casinhf.
28934         * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
28935         arguments using __kernel_casinhl.
28936         * math/libm-test.inc (cacosh_test): Add more tests.
28937         * sysdeps/i386/fpu/libm-test-ulps: Update.
28938         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28940 2013-04-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
28942         * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
28943         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
28945         * bench/Makefile (bench): Add sin and slowsin.
28946         * benchtests/sin-inputs: New file.
28947         * benchtests/slowsin-inputs: New file.
28948         * benchtests/slowsin.c: New file.
28950         * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
28951         (bench): Add slowexp and slowpow.
28952         (exp-ITER): Increase iterations.
28953         (pow-ITER): Likewise.
28954         * benchtests/exp-inputs: Change input.
28955         * benchtests/pow-inputs: Likewise.
28956         * benchtests/slowexp-inputs: New file.
28957         * benchtests/slowexp.c: New file.
28958         * benchtests/slowpow-inputs: New file.
28959         * benchtests/slowpow.c: New file.
28961 2013-04-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28963         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
28964         instructions.
28965         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
28966         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
28967         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
28968         * benchtests/Makefile: Add rint benchtest.
28969         * benchtests/rint-inputs: Input for rint benchtest.
28971 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
28973         * Versions.def (libm): Add GLIBC_2.18.
28974         * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
28975         hidden libm prototypes.
28976         [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
28977         * math/Makefile (libm-calls): Add s_issignaling.
28978         * math/Versions (libm: GLIBC_2.18): Add __issignaling,
28979         __issignalingf, __issignalingl.  Adjust all libm.abilist files.
28980         * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
28981         declaration.
28982         * math/math.h [__USE_GNU] (issignaling): New macro.
28983         * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
28984         * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
28985         * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
28986         * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
28987         * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
28988         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
28989         * manual/arith.texi (issignaling): New section.
28990         * manual/libm-err-tab.pl (@all_functions): Update comment.
28991         * math/gen-libm-test.pl (parse_args): Apply special handling for
28992         issignaling.
28993         * math/libm-test.inc (print_float, issignaling_test): New
28994         functions.
28995         (check_float_internal): Add issignaling checks.
28996         * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
28997         default definition.
28998         * sysdeps/powerpc/math-tests.h: New file.
28999         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
29000         tests.
29001         * math/test-snan.c (TEST_FUNC): Likewise.
29003 2013-03-30  David S. Miller  <davem@davemloft.net>
29005         * po/de.po: Update from translation team.
29007 2013-03-30  Joseph Myers  <joseph@codesourcery.com>
29009         [BZ #10357]
29010         * math/k_casinh.c (__kernel_casinh): Handle arguments with
29011         imaginary part less than 1.0 and real part less than 0.5
29012         specially.
29013         * math/k_casinhf.c (__kernel_casinhf): Likewise.
29014         * math/k_casinhl.c (__kernel_casinhl): Likewise.
29015         * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
29016         (cacos_test): Add more tests.
29017         (casin_test): Likewise.
29018         (casinh_test): Likewise.
29019         * sysdeps/i386/fpu/libm-test-ulps: Update.
29020         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29022 2013-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
29024         * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
29025         ONE with its value.
29027         * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
29028         (__pow_mp): Replace ONE and MONE with their values.
29029         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
29030         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
29031         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
29032         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
29033         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
29034         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
29036         * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
29038         * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
29039         (__pow_mp): Replace ZERO and MZERO with their values.
29040         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
29041         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
29042         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
29043         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
29044         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
29045         * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
29046         (__sqr): Likewise.
29048         * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
29050         * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
29052 2013-03-28  Roland McGrath  <roland@hack.frob.com>
29054         * include/stdlib.h [!SHARED] (__call_tls_dtors):
29055         Declare with __attribute__ ((weak)).
29056         * stdlib/exit.c (__libc_atexit) [!SHARED]:
29057         Call __call_tls_dtors only if it's not NULL.
29059 2013-03-28  Roland McGrath  <roland@hack.frob.com>
29061         * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
29062         didn't do it already, then set _dl_phdr and _dl_phnum based on the
29063         magic __ehdr_start linker symbol if it's defined.
29064         * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
29065         them up here if it was already done.
29067         * elf/dl-support.c (_dl_phdr): Make pointer to const.
29068         (_dl_aux_init): Use const in cast when setting it.
29069         * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
29070         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
29071         * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
29073         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
29074         Declare them here.
29075         * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
29076         * csu/libc-tls.c: Nor here.
29077         * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
29079         * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
29080         (__libc_message): Never call vsyslog.
29082 2013-03-28  Alan Modra  <amodra@gmail.com>
29084         * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
29085         Define as empty.
29086         * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
29087         Likewise.
29089 2013-03-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29091         [BZ #15214]
29092         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
29093         underflow.
29094         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
29096 2013-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
29098         [BZ #15304]
29099         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
29100         Don't add gid passed as argument.
29102         * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
29104 2013-03-27  Joseph Myers  <joseph@codesourcery.com>
29106         [BZ #15307]
29107         * math/k_casinh.c (__kernel_casinh): Handle arguments with
29108         imaginary part between 1.0 and 1.5 and real part less than 0.5
29109         specially.
29110         * math/k_casinhf.c (__kernel_casinhf): Likewise.
29111         * math/k_casinhl.c (__kernel_casinhl): Likewise.
29112         * math/libm-test.inc (cacos_test): Add more tests.
29113         (casin_test): Likewise.
29114         (casinh_test): Likewise.
29115         * sysdeps/i386/fpu/libm-test-ulps: Update.
29116         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29118 2013-03-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
29120         * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
29121         constants.
29122         (norm): Likewise.
29123         (denorm): Likewise.
29124         (__dbl_mp): Likewise.
29125         (add_magnitudes): Likewise.
29126         (sub_magnitudes): Likewise.
29127         (__add): Likewise.
29128         (__sub): Likewise.
29129         (__mul): Likewise.
29130         (__sqr): Likewise.
29131         (__inv): Likewise.
29132         (__dvd): Likewise.
29134         * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
29135         commented code.
29136         * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
29137         (__dubcos): Likewise.
29138         * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
29139         (__ieee754_acos): Likewise.
29140         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
29141         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
29142         (__exp1): Likewise.
29143         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
29144         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
29145         (log1): Likewise.
29146         (my_log2): Likewise.
29147         (checkint): Likewise.
29148         * sysdeps/ieee754/dbl-64/e_remainder.c
29149         (__ieee754_remainder): Likewise.
29150         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
29151         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
29152         (bsloww): Likewise.
29153         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
29155         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
29156         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
29157         MANTISSA_STORE_T to store computations on mantissa.  Use
29158         macros for rounding and division.
29159         (denorm): Likewise.
29160         (__dbl_mp): Likewise.
29161         (add_magnitudes): Likewise.
29162         (sub_magnitudes): Likewise.
29163         (__mul): Likewise.
29164         (__sqr): Likewise.
29165         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
29166         powers of two in terms of TWOPOW macro.
29167         (mp_no): Make type of mantissa as MANTISSA_T.
29168         [!RADIXI]: Define RADIXI.
29169         [!TWO52]: Define TWO52.
29170         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
29172 2013-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29174         * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
29175         llroundl symbol when building for PPC32.
29177 2013-03-24  Mark H Weaver  <mhw@netris.org>
29179         * manual/arith.texi (Normalization Functions): Fix prototypes for
29180         scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
29182 2013-03-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29184         [BZ #13889]
29185         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
29186         high value to check if expl overflow.
29187         * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
29188         to check for underflow and overflow.
29189         * math/libm-test.inc: Add exp test.
29191 2013-03-21  Dmitry V. Levin  <ldv@altlinux.org>
29193         [BZ #11120]
29194         * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
29195         with NOT_IN_libc.
29197 2013-03-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29199         * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
29200         symbol.
29202 2013-03-21  Thomas Schwinge  <thomas@codesourcery.com>
29204         * math/gen-libm-test.pl (parse_args, special_functions): Properly
29205         wrap blocks consisting of several statements.
29207         * sysdeps/generic/math-tests.h: New file.
29208         * sysdeps/i386/fpu/math-tests.h: Likewise.
29209         * math/test-snan.c: Include it.
29210         (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
29212 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
29214         [BZ #15285]
29215         * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
29216         (__ieee754_j0l): Do not improve calculations using cos of twice
29217         input for inputs above LDBL_MAX / 2.0L.
29218         (__ieee754_y0l): Likewise.
29219         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
29220         (__ieee754_j1l): Do not improve calculations using cos of twice
29221         input for inputs above LDBL_MAX / 2.0L.
29222         (__ieee754_y1l): Likewise.
29223         * math/libm-test.inc (j0_test): Add another test.
29224         (j1_test): Likewise.
29225         (y0_test): Likewise.
29226         (y1_test): Likewise.
29227         * sysdeps/i386/fpu/libm-test-ulps: Update.
29229 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
29231         * Rules ($(objpfx)bench-%.c): Include code from a C source
29232         file.
29234 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
29236         [BZ #15287]
29237         * math/k_casinh.c (__kernel_casinh): Handle arguments with
29238         imaginary part 1.0 and real part less than 0.5 specially.
29239         * math/k_casinhf.c (__kernel_casinhf): Likewise.
29240         * math/k_casinhl.c (__kernel_casinhl): Likewise.
29241         * math/libm-test.inc (cacos_test): Add more tests.
29242         (casin_test): Likewise.
29243         (casinh_test): Likewise.
29244         * sysdeps/i386/fpu/libm-test-ulps: Update.
29245         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29247 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
29249         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
29250         * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
29252 2013-03-20  Joseph Myers  <joseph@codesourcery.com>
29254         * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
29255         * config.make.in (config-cflags-sse4): Remove variable.
29256         (config-cflags-avx): Likewise.
29257         (config-cflags-sse2avx): Likewise.
29258         (config-cflags-novzeroupper): Likewise.
29259         (config-asflags-i686): Likewise.
29260         (have-mfma4): Likewise.
29261         (have-as-vis3): Likewise.
29262         (MIG): Likewise.
29263         * configure.in (MIG): Do not AC_SUBST.
29264         (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
29265         (libc_cv_cc_sse4): Do not AC_SUBST.
29266         (libc_cv_cc_avx): Likewise.
29267         (libc_cv_cc_sse2avx): Likewise.
29268         (libc_cv_cc_novzeroupper): Likewise.
29269         (libc_cv_cc_fma4): Likewise.
29270         (libc_cv_as_i686): Likewise.
29271         (libc_cv_sparc_as_vis3): Likewise.
29272         * sysdeps/i386/configure.in (config-cflags-sse4): Set using
29273         LIBC_CONFIG_VAR.
29274         (config-asflags-i686): Likewise.
29275         (config-cflags-avx): Likewise.
29276         (config-cflags-sse2avx): Likewise.
29277         (have-mfma4): Likewise.
29278         (config-cflags-novzeroupper): Likewise.
29279         * sysdeps/mach/configure.in (MIG): Likewise.
29280         * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
29281         * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
29282         LIBC_CONFIG_VAR.
29283         (config-cflags-avx): Likewise.
29284         (config-cflags-sse2avx): Likewise.
29285         (have-mfma4): Likewise.
29286         (config-cflags-novzeroupper): Likewise.
29287         * configure: Regenerated.
29288         * sysdeps/i386/configure: Likewise.
29289         * sysdeps/mach/configure: Likewise.
29290         * sysdeps/sparc/configure: Likewise.
29291         * sysdeps/x86_64/configure: Likewise.
29293 2013-03-20  Roland McGrath  <roland@hack.frob.com>
29295         [BZ #14812]
29296         * locale/programs/localedef.c (options): Put N_ translation marker
29297         on argument names, not just descriptions.
29299 2013-03-20  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
29301         * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
29303 2013-03-20  Ondřej Bílka  <neleai@seznam.cz>
29305         [BZ #14176]
29306         * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
29308 2013-03-19  Roland McGrath  <roland@hack.frob.com>
29310         * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
29311         [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
29312         [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
29313         [!BEFORE_ABORT] (before_abort): New function.
29314         [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
29315         * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
29316         (writev_for_fatal): New function.
29317         (WRITEV_FOR_FATAL): New macro; call that.
29318         (backtrace_and_maps): New function.
29319         (BEFORE_ABORT): New macro; call that.
29320         (struct str_list): Type removed.
29321         (__libc_message, __libc_fatal): Functions removed.
29322         Include <sysdeps/posix/libc_fatal.c> instead.
29324 2013-03-19  Joseph Myers  <joseph@codesourcery.com>
29326         * math/k_casinhf.c (__kernel_casinhf): Consistently use float
29327         constants.
29328         * math/k_casinhl.c (__kernel_casinhl): Consistently use long
29329         double constants.
29331 2013-03-19  Andreas Schwab  <schwab@suse.de>
29333         * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
29334         * sysdeps/gnu/configure: Regenerate.
29336         * configure.in: Substitute libc_cv_rtlddir.
29337         * configure: Regenerate.
29338         * config.make.in (rtlddir): Set from libc_cv_rtlddir.
29339         * Makeconfig (rtlddir, inst_rtlddir): New variables.
29340         (rtld-LDFLAGS): Use them with $(rtld-installed-name).
29341         * elf/Makefile (install-others, CFLAGS-interp.c)
29342         (ldso_install, common-ldd-rewrite): Likewise.
29343         ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
29344         $(inst_slibdir)/$(rtld-installed-name).
29345         * scripts/rellns-sh: Add -p option.
29346         * Makerules (make-shlib-link): Use rellns-sh to get relative name
29347         for source.
29349 2013-03-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
29351         * manual/nptl.texi: Renamed to ...
29352         * manual/threads.texi: ... this.
29353         * manual/Makefile (chapters): Update.
29355 2013-03-18  Roland McGrath  <roland@hack.frob.com>
29357         [BZ #14812]
29358         * argp/argp-parse.c (argp_default_options): Put N_ translation marker
29359         on argument names, not just descriptions.
29360         * malloc/memusagestat.c (options): Likewise.
29361         * nss/getent.c (options): Likewise.
29363 2013-03-18  Benno Schulenberg  <bensberg@justemail.net>
29365         [BZ #14812]
29366         * iconv/iconv_prog.c (options): Put N_ translation marker
29367         on argument names, not just descriptions.
29368         * iconv/iconvconfig.c (options): Likewise.
29370 2013-03-18  Ondrej Bilka  <neleai@seznam.cz>
29372         * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
29373         implementation which is faster on all x86_64 architectures.
29374         Tested on AMD, Intel Nehalem, SNB, IVB.
29375         * sysdeps/x86_64/strnlen.S: Likewise.
29377         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
29378         Remove all multiarch strlen and strnlen versions.
29379         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
29380         Remove strlen and strnlen related parts.
29382         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
29383         Inline strlen part.
29384         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
29386         * sysdeps/x86_64/multiarch/strlen.S: Remove.
29387         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
29388         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
29389         * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
29390         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
29391         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
29393 2013-03-17  Carlos O'Donell  <carlos@redhat.com>
29395         * manual/memory.texi (Malloc Tunable Parameters):
29396         Sort parameters alphabetically. Add comments for missing entries.
29398 2013-03-17  David S. Miller  <davem@davemloft.net>
29400         * sysdeps/sparc/fpu/libm-test-ulps: Update.
29402 2013-03-16  Joseph Myers  <joseph@codesourcery.com>
29404         [BZ #15283]
29405         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
29406         for arguments at most half maximum finite value.
29407         * math/libm-test.inc (j0_test): Add more tests.
29408         (j1_test): Likewise.
29409         (y0_test): Likewise.
29410         (y1_test): Likewise.
29411         * sysdeps/i386/fpu/libm-test-ulps: Update.
29412         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29414         [BZ #14155]
29415         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
29416         1 / x and functions P and Q for arguments above 0x1p256L.
29417         (__ieee754_y0l): Likewise.
29418         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
29419         (__ieee754_y1l): Likewise.
29420         * math/libm-test.inc (j0_test): Do not allow spurious underflows.
29421         (j1_test): Likewise.
29422         (y0_test): Likewise.
29423         (y1_test): Likewise.
29425 2013-03-16  Thomas Schwinge  <thomas@codesourcery.com>
29427         * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
29428         variable.
29430 2013-03-15  Roland McGrath  <roland@hack.frob.com>
29432         * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
29433         (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
29434         zero since it's initialized to EXEC_PAGESIZE.
29436         * sysdeps/unix/sysv/linux/ldsodefs.h
29437         (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
29438         * sysdeps/generic/ldsodefs.h: ... here.
29440 2013-03-15  Thomas Schwinge  <thomas@codesourcery.com>
29442         * math/libm-test.inc (ldexp_test): Add missing START/END markers.
29444         * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
29445         math/test-snan.c.
29446         * math/test-snan.c: Renamed from
29447         sysdeps/powerpc/fpu/test-powerpc-snan.c.
29448         * math/Makefile (tests): Add test-snan.
29449         * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
29450         test-powerpc-snan.
29452         * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
29453         SUFFIX.  Initialize qNaN_var with __builtin_nan family of
29454         functions.
29455         (TEST_TRUNC): Add SUFFIX argument.  Initialize qNaN_var with
29456         __builtin_nan family of functions.
29457         * math/libm-test.inc (initialize): Initialize qnan_value with
29458         __builtin_nan family of functions.
29459         * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
29460         Remove variables.
29461         (init_signaling_nan, snan_float, snan_double, snan_ldouble):
29462         Remove functions.
29463         (TEST_FUNC): Add SUFFIX argument.  Move sNaN_var into static
29464         storage class.  Initialize qNaN_var and sNaN_var with
29465         __builtin_nan and __builtin_nans families of functions,
29466         respectively.
29468         * math/libm-test.inc (acosh_test): Also test with qNaN input.
29469         (sqrt_test): Remove duplicate test with qNaN input.
29470         (lrint_test, llrint_test, lround_test, llround_test, rint_test)
29471         (round_test, signbit_test, significand_test): Note missing +/-Inf
29472         as well as qNaN tests.
29474         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
29475         qNaN_var.  Fix a few strings, too.
29476         * math/libm-test.inc (nan_value): Rename to qnan_value.
29477         * math/gen-libm-test.pl (%beautify): Adjust to that.
29478         * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
29479         * math/test-misc.c (main): Likewise.
29480         * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
29481         to __qnan_bytes, and __qnan_union, respectively.
29482         * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
29483         Likewise.
29484         * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
29485         and lqnanval, respectively.
29486         * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
29487         * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
29488         * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
29489         and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
29491         * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
29492         * math/test-misc.c (main) [__x86_64__]: Enable test for long
29493         doubles.
29495         * math/test-misc.c (main): Fix copy'n'pastos.
29496         * misc/tst-efgcvt.c (special): Likewise.
29498         * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
29499         Remove declarations.
29501 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
29503         * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
29504         * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
29505         * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
29506         * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
29508 2013-03-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29510         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
29511         macro to return vdso values correctly in IFUNC implementations.
29512         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
29513         Optimization by using IFUNC.
29515 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
29516             Richard Henderson  <rth@redhat.com>
29517             Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
29519         * Makefile.in (bench): New target.
29520         * NEWS: Mention the benchmark framework.
29521         * Rules (bench): Likewise.
29522         (binaries-bench): Generate binaries for functions to
29523         benchmark.
29524         * benchtests/Makefile: New makefile for benchmark tests.
29525         * benchtests/bench-skeleton.c: New skeleton file for benchmark
29526         programs.
29527         * benchtests/exp-inputs: New input file for EXP function.
29528         * benchtests/pow-inputs: New input file for POW function.
29529         * scripts/bench.pl: New script to generate source files for
29530         benchmark programs.
29532 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
29534         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
29535         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
29536         computations on mantissa.  Use macros for rounding and
29537         division.
29538         (denorm): Likewise.
29539         (__dbl_mp): Likewise.
29540         (add_magnitudes): Likewise.
29541         (sub_magnitudes): Likewise.
29542         (__mul): Likewise.
29543         (__sqr): Likewise.
29544         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
29545         powers of two in terms of TWOPOW macro.
29546         (mp_no): Make type of mantissa as MANTISSA_T.
29547         [!RADIXI]: Define RADIXI.
29548         [!TWO52]: Define TWO52.
29549         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
29551         * manual/nptl.texi (cindex): Modify threads to pthreads.
29553 2013-03-15  Joseph Myers  <joseph@codesourcery.com>
29555         * sysdeps/x86_64/preconfigure: Regenerated.
29557 2013-03-14  Joseph Myers  <joseph@codesourcery.com>
29559         [BZ #14155]
29560         * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
29561         0x1p28 and above.
29562         (qzero): Return -0.125 / x for arguments 0x1p28 and above.
29563         * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
29564         0x1p28 and above.
29565         (qzero): Return 0.375 / x for arguments 0x1p28 and above.
29566         * math/libm-test.inc (j0_test): Do not allow one spurious
29567         underflow exception.
29568         (y1_test): Likewise.
29570 2013-03-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
29572         * manual/Makefile (chapters): Add nptl.
29573         * manual/debug.texi (Debugging Support): Add link to Threads
29574         chapter.
29575         * manual/nptl.texi: New file.
29577         * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
29579 2013-03-14  Petr Baudis  <pasky@ucw.cz>
29581         * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
29582         for non-NULL pointer before the memory validity test. Pointed
29583         out by Holger Brunck <holger.brunck@keymile.com>.
29585 2013-03-13  Andreas Schwab  <schwab@suse.de>
29587         * extra-lib.mk (extra-objs): Add static-only-routines as .oS
29588         instead of .os.
29590 2013-03-13  Joseph Myers  <joseph@codesourcery.com>
29592         * timezone/zic.c: Update from tzcode 2013b.
29594 2013-03-12  Carlos O'Donell  <carlos@redhat.com>
29596         * manual/install.texi (Configuring and compiling):
29597         Mention i686 and i586.
29598         * INSTALL: Regenerate.
29600 2013-03-12  Roland McGrath  <roland@hack.frob.com>
29602         * sysdeps/init_array/elf-init.c: New file.
29603         * csu/elf-init.c
29604         (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
29605         (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
29607         * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
29608         __gmon_start__ as global, but as static with a .preinit_array pointer.
29609         * sysdeps/init_array/gmon-start.c: New file.  Use that.
29610         * sysdeps/init_array/crti.S: New file, empty except for comments.
29611         * sysdeps/init_array/crtn.S: Likewise.
29613 2013-03-11  Ondřej Bílka  <neleai@seznam.cz>
29615         * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
29616         definining bcopy.
29617         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
29618         Remove Prefer_SSE_for_memop.
29619         * sysdeps/x86_64/multiarch/init-arch.h: Remove
29620         bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
29621         HAS_PREFER_SSE_FOR_MEMOP.
29622         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
29623         memset-x86-64.
29624         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
29625         Remove bzero, memset ifunc support.
29626         * sysdeps/x86_64/multiarch/bzero.S: Remove file.
29627         * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
29628         * sysdeps/x86_64/multiarch/memset.S: Likewise.
29629         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
29631 2013-03-11  Andreas Schwab  <schwab@suse.de>
29633         [BZ #15234]
29634         * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
29635         by SHLIB_COMPAT.
29636         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
29637         (GLIBC_2.16): Remove pthread_atfork.
29639 2013-03-08  Paul Pluzhnikov  <ppluzhnikov@google.com>
29641         * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
29642         (ptestcases.h): Likewise.
29644 2013-03-08  Roland McGrath  <roland@hack.frob.com>
29646         * Makeconfig ($(common-objpfx)config.status): Depend on
29647         sysdeps/*/preconfigure{,.in} too.
29649 2013-03-08  Joseph Myers  <joseph@codesourcery.com>
29651         * malloc/malloc.h (__malloc_ptr_t): Remove macro.
29652         (__free_hook): Use void * instead of __malloc_ptr_t.
29653         (__malloc_hook): Likewise.
29654         (__realloc_hook): Likewise.
29655         (__memalign_hook): Likewise.
29656         (__after_morecore_hook): Likewise.
29657         * malloc/arena.c (save_malloc_hook): Likewise.
29658         (save_free_hook): Likewise.
29659         * malloc/hooks.c (malloc_hook_ini): Likewise.
29660         (realloc_hook_ini): Likewise.
29661         (memalign_hook_ini): Likewise.
29662         * malloc/malloc.c (malloc_hook_ini): Likewise.
29663         (realloc_hook_ini): Likewise.
29664         (memalign_hook_ini): Likewise.
29665         (__free_hook): Likewise.
29666         (__malloc_hook): Likewise.
29667         (__realloc_hook): Likewise.
29668         (__memalign_hook): Likewise.
29669         (__libc_malloc): Likewise.
29670         (__libc_free): Likewise.
29671         (__libc_realloc): Likewise.
29672         (__libc_memalign): Likewise.
29673         (__libc_valloc): Likewise.
29674         (__libc_pvalloc): Likewise.
29675         (__libc_calloc): Likewise.
29676         (__posix_memalign): Likewise.
29677         * malloc/morecore.c (__sbrk): Likewise.
29678         (__default_morecore): Likewise.
29680         * malloc/morecore.c (__default_morecore): Use ISO C prototype.
29682         * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
29683         * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
29684         __malloc_ptrdiff_t.
29686         * malloc/malloc.h (__malloc_size_t): Remove macro.
29687         * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
29688         __malloc_size_t.
29689         (old_memalign_hook): Likewise.
29690         (old_realloc_hook): Likewise.
29691         (struct hdr): Likewise.
29692         (flood): Likewise.
29693         (mallochook): Likewise.
29694         (memalignhook): Likewise.
29695         (reallochook): Likewise.
29696         * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
29697         (tr_old_realloc_hook): Likewise.
29698         (tr_old_memalign_hook): Likewise.
29699         (tr_mallochook): Likewise.
29700         (tr_reallochook): Likewise.
29701         (tr_memalignhook): Likewise.
29703 2013-03-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29705         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
29706         default_ldbl_pack and using as default implementation.
29707         (ldbl_unpack): Rename to default_ldbl_unpack and using as default
29708         implementation.
29709         * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
29710         redundant definition.
29711         (ldbl_insert_mantissa): Likewise.
29712         (ldbl_canonicalize): Likewise.
29713         (ldbl_nearbyint): Likewise.
29714         (ldbl_pack): Rename to ldbl_pack_ppc.
29715         (ldbl_unpack): Rename to ldbl_unpack_ppc.
29716         * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
29717         * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
29719 2013-03-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
29721         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
29722         * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
29723         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
29724         * sysdeps/powerpc/power4/fpu/Makefile: ... here.
29725         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
29726         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
29727         * sysdeps/powerpc/powerpc32/power4/Implies: New file.
29728         * sysdeps/powerpc/powerpc64/power4/Implies: New file.
29730 2013-03-07  Andreas Jaeger  <aj@suse.de>
29732         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
29733         bits/mman-linux.h.
29735 2013-03-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
29737         * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
29738         Include mpa.h and declare __MPEXP.
29739         [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
29740         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
29741         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
29742         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
29743         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
29744         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
29745         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
29747         * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
29748         (__slowpow): Use long double EXPL and LOGL functions to
29749         compute POW.
29750         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
29751         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
29752         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
29753         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
29754         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
29755         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
29757         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
29758         intermediate variable to calculate exponent.
29759         (__sqr): Likewise.
29760         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
29761         Likewise.
29762         (__sqr): Likewise.
29764         * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
29765         [!NO__SQR]: Define __sqr.
29766         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
29767         and NO__SQR.  Remove all code except __mul and __sqr.  Include
29768         sysdeps/ieee754/dbl-64/mpa.c.
29769         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
29771         [BZ #12723]
29772         * posix/Makefile (tests): Add tst-pathconf.
29773         * posix/tst-pathconf.c: New test case.
29774         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
29775         _PC_PIPE_BUF.
29776         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
29778 2013-03-06  Patsy Franklin  <pfrankli@redhat.com>
29780         * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
29782 2013-03-06  Andreas Jaeger  <aj@suse.de>
29784         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
29785         definition via __MAP_ANONYMOUS.
29787         * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
29788         it's not part of Linux headers.
29790         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
29791         (MAP_HUGE_MASK): Define.
29793         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
29794         Define.
29795         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29796         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
29797         Define.
29798         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29799         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
29800         Define.
29801         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29802         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
29803         Define.
29804         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29806         * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
29807         * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
29808         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
29809         * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
29810         * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
29811         * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
29813         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
29814         Handle f2fs.
29816         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
29817         Handle f2fs and efivarfs.
29819         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
29820         f2fs.
29822         * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
29823         (EFIVARFS_MAGIC): Add.
29824         (F2FS_LINK_MAX): Add.
29826 2013-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
29828         * stdio-common/vfprintf.c: Replace __builtin_expect with
29829         __glibc_unlikely.
29831 2013-03-06  Joseph Myers  <joseph@codesourcery.com>
29833         [BZ #13550]
29834         * sysdeps/generic/bp-sym.h: Remove file.
29835         * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
29836         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
29837         <bp-sym.h> and <bp-asm.h>.
29838         (__longjmp): Don't use BP_SYM.
29839         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
29840         and <bp-asm.h>.
29841         (memcpy): Don't use BP_SYM.
29842         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
29843         <bp-sym.h> and <bp-asm.h>.
29844         (memcpy): Don't use BP_SYM.
29845         * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
29846         <bp-asm.h>.
29847         (memcpy): Don't use BP_SYM.
29848         * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
29849         <bp-asm.h>.
29850         (memset): Don't use BP_SYM.
29851         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29852         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29853         (__bzero): Don't use BP_SYM.
29854         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29855         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29856         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
29857         <bp-sym.h> and <bp-asm.h>.
29858         (memcmp): Don't use BP_SYM.  Remove comment about bounded
29859         pointers.
29860         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
29861         <bp-sym.h> and <bp-asm.h>.
29862         (memcpy): Don't use BP_SYM.
29863         * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
29864         <bp-sym.h> and <bp-asm.h>.
29865         (memset): Don't use BP_SYM.
29866         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29867         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29868         (__bzero): Don't use BP_SYM.
29869         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29870         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29871         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
29872         <bp-sym.h> and <bp-asm.h>.
29873         (strncmp): Don't use BP_SYM.  Remove comment about bounded
29874         pointers.
29875         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
29876         <bp-sym.h> and <bp-asm.h>.
29877         (memcpy): Don't use BP_SYM.
29878         * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
29879         <bp-sym.h> and <bp-asm.h>.
29880         (memset): Don't use BP_SYM.
29881         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29882         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29883         (__bzero): Don't use BP_SYM.
29884         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29885         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29886         * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
29887         <bp-sym.h> and <bp-asm.h>.
29888         (__memchr): Don't use BP_SYM.
29889         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
29890         <bp-sym.h> and <bp-asm.h>.
29891         (memcmp): Don't use BP_SYM.  Remove comment about bounded
29892         pointers.
29893         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
29894         <bp-sym.h> and <bp-asm.h>.
29895         (memcpy): Don't use BP_SYM.
29896         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
29897         <bp-sym.h> and <bp-asm.h>.
29898         (__mempcpy): Don't use BP_SYM.
29899         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
29900         <bp-sym.h> and <bp-asm.h>.
29901         (__memrchr): Don't use BP_SYM.
29902         * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
29903         <bp-sym.h> and <bp-asm.h>.
29904         (memset): Don't use BP_SYM.
29905         (__bzero): Likewise.
29906         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
29907         <bp-sym.h> and <bp-asm.h>.
29908         (__rawmemchr): Don't use BP_SYM.
29909         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
29910         <bp-sym.h> and <bp-asm.h>.
29911         (__STRCMP): Don't use BP_SYM.
29912         * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
29913         <bp-sym.h> and <bp-asm.h>.
29914         (strchr): Don't use BP_SYM.
29915         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
29916         <bp-sym.h> and <bp-asm.h>.
29917         (__strchrnul): Don't use BP_SYM.
29918         * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
29919         <bp-sym.h> and <bp-asm.h>.
29920         (strlen): Don't use BP_SYM.
29921         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
29922         <bp-sym.h> and <bp-asm.h>.
29923         (strncmp): Don't use BP_SYM.  Remove comment about bounded
29924         pointers.
29925         * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
29926         <bp-sym.h> and <bp-asm.h>.
29927         (__strnlen): Don't use BP_SYM.
29928         * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
29929         <bp-sym.h> and <bp-asm.h>.
29930         (__GI__setjmp): Don't use BP_SYM.
29931         (_setjmp): Likewise.
29932         (__sigsetjmp): Likewise.
29933         * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
29934         (L(start_addresses)): Don't use BP_SYM.
29935         (_start): Likewise.
29936         * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
29937         <bp-asm.h>.
29938         (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
29939         STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
29940         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
29941         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
29942         * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
29943         <bp-asm.h>.
29944         (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
29945         CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE.  Remove comment
29946         about bounded pointers.
29947         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
29948         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
29949         * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
29950         <bp-asm.h>.
29951         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
29952         about bounded pointers.  Remove GKM FIXME comments.
29953         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
29954         * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
29955         <bp-asm.h>.
29956         (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
29957         STORE_RETURN_BOUNDS.  Remove comment about bounded pointers.
29958         Remove GKM FIXME comments.
29959         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
29960         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
29961         * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
29962         <bp-asm.h>.
29963         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
29964         about bounded pointers.  Remove GKM FIXME comment.
29965         * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
29966         and <bp-asm.h>.
29967         (strncmp): Don't use BP_SYM.  Remove comment about bounded
29968         pointers.
29969         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
29970         <bp-sym.h> and <bp-asm.h>.
29971         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
29972         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
29973         <bp-sym.h> and <bp-asm.h>.
29974         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
29975         comment.
29977 2013-03-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
29979         * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
29980         call free(NULL).
29982 2013-03-05  David S. Miller  <davem@davemloft.net>
29984         * po/es.po: Update from translation team.
29986 2013-03-05  Andreas Jaeger  <aj@suse.de>
29988         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
29989         <bits/mman-linux.h>.
29990         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
29991         is fine.
29992         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
29993         <bits/mman-linux.h> to end of file.
29994         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
29995         is fine.
29996         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
29997         <bits/mman-linux.h> to end of file.
29998         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
29999         is fine.
30000         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
30001         <bits/mman-linux.h> to end of file.
30003         * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
30004         (MCL_CURRENT, MCL_FUTURE): Define here.
30006 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30008         [BZ #15232]
30009         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
30010         attribute_hidden.
30011         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
30013 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30015         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
30016         fourth parameter needed for rt_sigprocmask syscall.
30017         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
30018         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
30019         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
30020         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
30021         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
30022         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
30024 2013-03-04  Joseph Myers  <joseph@codesourcery.com>
30026         [BZ #13550]
30027         * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
30028         comment about bounded pointers.
30029         * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
30030         * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
30032 2013-03-04  Andreas Jaeger  <aj@suse.de>
30034         * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
30035         common definitions.
30037         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
30038         provided by bits/mman-linux.h and include <bits/mman-linux.h>.
30039         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
30040         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
30041         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
30042         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
30044 2013-03-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30046         [BZ #15055]
30047         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
30048         __ieee754_sqrl instead of __sqrl.
30050 2013-03-01  Joseph Myers  <joseph@codesourcery.com>
30052         * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
30053         * sysdeps/powerpc/fpu_control.h: ... here.
30054         * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
30055         * sysdeps/powerpc/bits/fenvinline.h: ... here.
30056         * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
30057         * sysdeps/powerpc/bits/mathinline.h: ... here.
30059 2013-03-01  Roland McGrath  <roland@hack.frob.com>
30061         * elf/dl-hwcaps.c (_dl_important_hwcaps):
30062         Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
30063         to just [NEED_DL_SYSINFO_DSO].
30064         * elf/dl-support.c: Likewise.
30065         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
30066         * elf/rtld.c (dl_main): Likewise.
30067         * elf/setup-vdso.h (setup_vdso): Likewise.
30068         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
30069         * sysdeps/unix/sysv/linux/dl-sysdep.c
30070         (_dl_discover_osversion): Likewise.
30072 2013-03-01  Carlos O'Donell  <carlos@redhat.com>
30074         * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
30075         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
30077 2013-03-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
30079         * NEWS: Mention libm performance improvements and non-x86 PI
30080         futex support.
30082         * csu/libc-start.c (__pthread_initialize_minimal): Change
30083         function arguments.
30084         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
30086 2013-02-28  Joseph Myers  <joseph@codesourcery.com>
30088         [BZ #13550]
30089         * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
30090         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
30091         <bp-sym.h> and <bp-asm.h>.
30092         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
30093         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
30094         and <bp-asm.h>.
30095         (memcpy): Don't use BP_SYM.
30096         * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
30097         <bp-asm.h>.
30098         (__mpn_add_n): Don't use BP_SYM.
30099         (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
30100         * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
30101         and <bp-asm.h>.
30102         (__mpn_addmul_1): Don't use BP_SYM.
30103         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30104         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
30105         <bp-sym.h>.
30106         (_setjmp): Don't use BP_SYM.
30107         (__novmx_setjmp): Likewise.
30108         (__GI__setjmp): Likewise.
30109         (__vmx_setjmp): Likewise.
30110         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
30111         <bp-sym.h>.
30112         * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
30113         (__bzero): Don't use BP_SYM.
30114         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
30115         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
30116         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
30117         <bp-sym.h> and <bp-asm.h>.
30118         (memcpy): Don't use BP_SYM.
30119         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
30120         <bp-sym.h> and <bp-asm.h>.
30121         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
30122         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
30123         <bp-sym.h> and <bp-asm.h>.
30124         (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
30125         * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
30126         <bp-asm.h>.
30127         (__mpn_lshift): Don't use BP_SYM.
30128         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30129         * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
30130         <bp-asm.h>.
30131         (memset): Don't use BP_SYM.
30132         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
30133         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
30134         * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
30135         <bp-asm.h>.
30136         (__mpn_mul_1): Don't use BP_SYM.
30137         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30138         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
30139         <bp-sym.h> and <bp-asm.h>.
30140         (memcmp): Don't use BP_SYM.
30141         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
30142         <bp-sym.h> and <bp-asm.h>.
30143         (memcpy): Don't use BP_SYM.
30144         * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
30145         <bp-sym.h> and <bp-asm.h>.
30146         (memset): Don't use BP_SYM.
30147         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
30148         <bp-sym.h> and <bp-asm.h>.
30149         (strncmp): Don't use BP_SYM.
30150         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
30151         <bp-sym.h> and <bp-asm.h>.
30152         (memcpy): Don't use BP_SYM.
30153         * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
30154         <bp-sym.h> and <bp-asm.h>.
30155         (memset): Don't use BP_SYM.
30156         * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
30157         <bp-sym.h> and <bp-asm.h>.
30158         (__memchr): Don't use BP_SYM.
30159         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
30160         <bp-sym.h> and <bp-asm.h>.
30161         (memcmp): Don't use BP_SYM.
30162         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
30163         <bp-sym.h> and <bp-asm.h>.
30164         (memcpy): Don't use BP_SYM.
30165         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
30166         <bp-sym.h> and <bp-asm.h>.
30167         (__mempcpy): Don't use BP_SYM.
30168         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
30169         <bp-sym.h> and <bp-asm.h>.
30170         (__memrchr): Don't use BP_SYM.
30171         * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
30172         <bp-sym.h> and <bp-asm.h>.
30173         (memset): Don't use BP_SYM.
30174         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
30175         <bp-sym.h> and <bp-asm.h>.
30176         (__rawmemchr): Don't use BP_SYM.
30177         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
30178         <bp-sym.h> and <bp-asm.h>.
30179         (__STRCMP): Don't use BP_SYM.
30180         * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
30181         <bp-sym.h> and <bp-asm.h>.
30182         (strchr): Don't use BP_SYM.
30183         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
30184         <bp-sym.h> and <bp-asm.h>.
30185         (__strchrnul): Don't use BP_SYM.
30186         * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
30187         <bp-sym.h> and <bp-asm.h>.
30188         (strlen): Don't use BP_SYM.
30189         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
30190         <bp-sym.h> and <bp-asm.h>.
30191         (strncmp): Don't use BP_SYM.
30192         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
30193         <bp-sym.h> and <bp-asm.h>.
30194         (__strnlen): Don't use BP_SYM.
30195         * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
30196         <bp-asm.h>.
30197         (__mpn_rshift): Don't use BP_SYM.
30198         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30199         * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
30200         <bp-sym.h> and <bp-asm.h>.
30201         (__sigsetjmp): Don't use BP_SYM.
30202         * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
30203         (L(start_addresses)): Don't use BP_SYM.
30204         (_start): Likewise.
30205         * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
30206         <bp-asm.h>.
30207         (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
30208         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
30209         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
30210         * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
30211         <bp-asm.h>.
30212         (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
30213         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
30214         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
30215         * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
30216         <bp-asm.h>.
30217         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
30218         comments.
30219         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
30220         * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
30221         <bp-asm.h>.
30222         (strcpy): Don't use BP_SYM and macros from bp-asm.h.  Remove GKM
30223         FIXME comments.
30224         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
30225         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
30226         * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
30227         <bp-asm.h>.
30228         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
30229         comment.
30230         * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
30231         and <bp-asm.h>.
30232         (strncmp): Don't use BP_SYM,
30233         * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
30234         <bp-asm.h>.
30235         (__mpn_sub_n): Don't use BP_SYM.
30236         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30237         * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
30238         and <bp-asm.h>.
30239         (__mpn_submul_1): Don't use BP_SYM.
30240         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30241         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
30242         <bp-sym.h> and <bp-asm.h>.
30243         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
30244         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
30245         <bp-sym.h> and <bp-asm.h>.
30246         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
30247         comment.
30249 2013-02-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
30251         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
30252         Use ZK to minimize writes to Z.
30253         (sub_magnitudes): Simplify code a bit.
30254         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
30255         Use ZK to minimize writes to Z.
30256         (sub_magnitudes): Simplify code a bit.
30258 2013-02-27  Roland McGrath  <roland@hack.frob.com>
30260         * csu/gmon-start.c: Add special exception to license text.
30262 2013-02-27  Richard Henderson  <rth@redhat.com>
30264         * scripts/config.guess: Update from config.git.
30265         * scripts/config.sub: Likewise.
30267 2013-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
30269         * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
30271         * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
30273         * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
30275         * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
30277         * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
30279 2013-02-26  Roland McGrath  <roland@hack.frob.com>
30281         * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
30282         [$(build-shared = yes].
30284 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
30286         * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
30287         (__mul): Reduce iterations for calculating mantissa.
30289         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
30290         MPTWO.
30291         (__mpranred): Likewise.
30293         [BZ #15160]
30294         * malloc/memusagestat.c (main): Draw graphs for heap and stack
30295         only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
30297 2013-02-26  Paul Eggert  <eggert@cs.ucla.edu>
30299         * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
30300         Define __attribute__.
30302 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
30304         * locale/elem-hash.h (elem_hash): Mark as pure and possibly
30305         unused.
30306         * posix/regex_internal.h (__attribute): Remove.
30307         [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
30308         (re_string_context_at): Likewise.
30309         (bitset_not): Use __attribute__ and mark function as possibly
30310         unused.
30311         (bitset_merge): Likewise.
30312         (bitset_mask): Likewise.
30313         (re_string_char_size_at): Likewise.
30314         (re_string_wchar_at): Likewise.
30315         (re_string_elem_size_at): Likewise.
30317 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
30319         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
30320         code.
30321         (cc32): Likewise.
30323         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
30324         (__acr): Likewise.
30325         (__cpy): Likewise.
30326         (norm): Likewise.
30327         (denorm): Likewise.
30328         (__dbl_mp): Likewise.
30329         (add_magnitudes): Likewise.
30330         (sub_magnitudes): Likewise.
30331         (__mul): Likewise.
30332         (__inv): Likewise.
30334         * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
30335         style.
30337         * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
30338         style.
30340         * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
30341         code.
30343         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
30344         up changes with default code.
30345         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
30346         Likewise.
30348 2013-02-24  Allan McRae  <allan@archlinux.org>
30350         * manual/socket.texi (The Internet Namespace): Order menu items
30351         to match that in the file.
30353         * manual/libc-texinfo.sh: Use @detailmenu around the detailed
30354         node listing of the info page menu.
30356 2013-02-21  Joseph Myers  <joseph@codesourcery.com>
30358         [BZ #13550]
30359         * sysdeps/i386/bp-asm.h: Remove file.
30360         * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
30361         (PARMS): Do not use macros from bp-asm.h.
30362         (S1): Likewise.
30363         (S2): Likewise.
30364         (SIZE): Likewise.
30365         (__mpn_add_n): Do not use BP_SYM
30366         * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
30367         "bp-asm.h".
30368         (PARMS): Do not use macros from bp-asm.h.
30369         (S1): Likewise.
30370         (SIZE): Likewise.
30371         (__mpn_addmul_1): Do not use BP_SYM
30372         * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
30373         "bp-asm.h".
30374         (PARMS): Do not use macros from bp-asm.h.
30375         (SIGMSK): Likewise.
30376         (_setjmp): Likewise.  Do not use BP_SYM.
30377         * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
30378         "bp-asm.h".
30379         (PARMS): Do not use macros from bp-asm.h.
30380         (SIGMSK): Likewise.
30381         (setjmp): Likewise.  Do not use BP_SYM.
30382         * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
30383         "bp-asm.h".
30384         (PARMS): Do not use macros from bp-asm.h.
30385         (__frexp): Do not use BP_SYM.
30386         (frexp): Likewise.
30387         * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
30388         "bp-asm.h".
30389         (PARMS): Do not use macros from bp-asm.h.
30390         (__frexpf): Do not use BP_SYM.
30391         (frexpf): Likewise.
30392         * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
30393         "bp-asm.h".
30394         (PARMS): Do not use macros from bp-asm.h.
30395         (__frexpl): Do not use BP_SYM.
30396         (frexpl): Likewise.
30397         * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
30398         "bp-asm.h".
30399         (PARMS): Do not use macros from bp-asm.h.
30400         (__remquo): Do not use BP_SYM.
30401         (remquo): Likewise.
30402         * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
30403         "bp-asm.h".
30404         (PARMS): Do not use macros from bp-asm.h.
30405         (__remquof): Do not use BP_SYM.
30406         (remquof): Likewise.
30407         * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
30408         "bp-asm.h".
30409         (PARMS): Do not use macros from bp-asm.h.
30410         (__remquol): Do not use BP_SYM.
30411         (remquol): Likewise.
30412         * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
30413         "bp-asm.h".
30414         (PARMS): Do not use macros from bp-asm.h.
30415         (DEST): Likewise.
30416         (SRC): Likewise.
30417         (strcat): Remove GKM FIXME comment.  Do not use BP_SYM.
30418         * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
30419         "bp-asm.h".
30420         (PARMS): Do not use macros from bp-asm.h.
30421         (strlen): Do not use BP_SYM.
30422         * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
30423         "bp-asm.h".
30424         (PARMS): Do not use macros from bp-asm.h.
30425         (S1): Likewise.
30426         (S2): Likewise.
30427         (SIZE): Likewise.
30428         (__mpn_add_n): Do not use BP_SYM.
30429         * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
30430         "bp-asm.h".
30431         (PARMS): Do not use macros from bp-asm.h.
30432         (S1): Likewise.
30433         (SIZE): Likewise.
30434         (__mpn_addmul_1): Do not use BP_SYM.
30435         * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
30436         weak_alias.
30437         (bzero): Likewise.
30438         * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
30439         "bp-asm.h".
30440         (PARMS): Do not use macros from bp-asm.h.
30441         (S): Likewise.
30442         (SIZE): Likewise.
30443         (__mpn_lshift): Do not use BP_SYM.
30444         * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
30445         "bp-asm.h".
30446         (PARMS): Do not use macros from bp-asm.h.
30447         (DEST): Likewise.
30448         (SRC): Likewise.
30449         (LEN): Likewise.
30450         (memcpy): Likewise.  Do not use BP_SYM.
30451         * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
30452         libc_hidden_def and weak_alias.
30453         (mempcpy): Do not use BP_SYM in weak_alias.
30454         * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
30455         "bp-asm.h".
30456         (PARMS): Do not use macros from bp-asm.h.
30457         (DEST): Likewise.
30458         (LEN): Likewise.
30459         [!BZERO_P] (CHR): Likewise.
30460         (memset): Likewise.  Do not use BP_SYM.
30461         * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
30462         "bp-asm.h".
30463         (PARMS): Do not use macros from bp-asm.h.
30464         (S1): Likewise.
30465         (SIZE): Likewise.
30466         (__mpn_mul_1): Do not use BP_SYM.
30467         * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
30468         "bp-asm.h".
30469         (PARMS): Do not use macros from bp-asm.h.
30470         (S): Likewise.
30471         (SIZE): Likewise.
30472         (__mpn_rshift): Do not use BP_SYM.
30473         * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
30474         "bp-asm.h".
30475         (PARMS): Do not use macros from bp-asm.h.
30476         (STR): Likewise.
30477         (CHR): Likewise.
30478         (strchr): Likewise.  Do not use BP_SYM.
30479         (index): Do not use BP_SYM in weak_alias.
30480         * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
30481         "bp-asm.h".
30482         (PARMS): Do not use macros from bp-asm.h.
30483         (DEST): Likewise.
30484         (SRC): Likewise.
30485         (STRCPY): Likewise.  Remove GKM FIXME comment.  Do not use BP_SYM.
30486         * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
30487         "bp-asm.h".
30488         (PARMS): Do not use macros from bp-asm.h.
30489         (strlen): Do not use BP_SYM.
30490         * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
30491         "bp-asm.h".
30492         (PARMS): Do not use macros from bp-asm.h.
30493         (S1): Likewise.
30494         (S2): Likewise.
30495         (SIZE): Likewise.
30496         (__mpn_sub_n): Do not use BP_SYM.
30497         * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
30498         "bp-asm.h".
30499         (PARMS): Do not use macros from bp-asm.h.
30500         (S1): Likewise.
30501         (SIZE): Likewise.
30502         (__mpn_submul_1): Do not use BP_SYM.
30503         * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
30504         "bp-asm.h".
30505         (PARMS): Do not use macros from bp-asm.h.
30506         (S1): Likewise.
30507         (S2): Likewise.
30508         (SIZE): Likewise.
30509         (__mpn_add_n): Do not use BP_SYM.
30510         * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
30511         weak_alias.
30512         (bzero): Likewise.
30513         * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
30514         "bp-asm.h".
30515         (PARMS): Do not use macros from bp-asm.h.
30516         (BLK2): Likewise.
30517         (LEN): Likewise.
30518         (memcmp): Do not use BP_SYM.
30519         (bcmp): Do not use BP_SYM in weak_alias.
30520         * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
30521         "bp-asm.h".
30522         (PARMS): Do not use macros from bp-asm.h.
30523         (DEST): Likewise.
30524         (SRC): Likewise.
30525         (LEN): Likewise.
30526         (memcpy): Likewise.  Do not use BP_SYM.
30527         * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
30528         "bp-asm.h".
30529         (PARMS): Do not use macros from bp-asm.h.
30530         (DEST): Likewise.
30531         (SRC): Likewise.
30532         (LEN): Likewise.
30533         (memmove): Likewise.  Do not use BP_SYM.
30534         * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
30535         "bp-asm.h".
30536         (PARMS): Do not use macros from bp-asm.h.
30537         (DEST): Likewise.
30538         (SRC): Likewise.
30539         (LEN): Likewise.
30540         (__mempcpy): Likewise.  Do not use BP_SYM.
30541         (mempcpy): Do not use BP_SYM in weak_alias.
30542         * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
30543         "bp-asm.h".
30544         (PARMS): Do not use macros from bp-asm.h.
30545         (DEST): Likewise.
30546         (LEN): Likewise.
30547         [!BZERO_P] (CHR): Likewise.
30548         (memset): Likewise.  Do not use BP_SYM.
30549         * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
30550         "bp-asm.h".
30551         (PARMS): Do not use macros from bp-asm.h.
30552         (STR2): Likewise.
30553         (strcmp): Do not use BP_SYM.
30554         * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
30555         "bp-asm.h".
30556         (PARMS): Do not use macros from bp-asm.h.
30557         (STR): Likewise.
30558         (DELIM): Likewise.
30559         [USE_AS_STRTOK_R] (SAVE): Likewise.
30560         (FUNCTION): Likewise.  Do not use BP_SYM.
30561         * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
30562         aliases.
30563         (strtok_r): Likewise.
30564         (__GI___strtok_r): Likewise.
30565         * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
30566         (PARMS): Do not use macros from bp-asm.h.
30567         (S): Likewise.
30568         (SIZE): Likewise.
30569         (__mpn_lshift): Do not use BP_SYM.
30570         * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
30571         (PARMS): Do not use macros from bp-asm.h.
30572         (STR): Likewise.
30573         (CHR): Likewise.
30574         (__memchr): Do not use BP_SYM.
30575         (memchr): Do not use BP_SYM in weak_alias.
30576         * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
30577         (PARMS): Do not use macros from bp-asm.h.
30578         (BLK2): Likewise.
30579         (LEN): Likewise.
30580         (memcmp): Do not use BP_SYM.
30581         (bcmp): Do not use BP_SYM in weak_alias.
30582         * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
30583         (PARMS): Do not use macros from bp-asm.h.
30584         (S1): Likewise.
30585         (SIZE): Likewise.
30586         (__mpn_mul_1): Do not use BP_SYM.
30587         * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
30588         "bp-asm.h".
30589         (PARMS): Do not use macros from bp-asm.h.
30590         (STR): Likewise.
30591         (CHR): Likewise.
30592         (__rawmemchr): Do not use BP_SYM.
30593         (rawmemchr): Do not use BP_SYM in weak_alias.
30594         * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
30595         (PARMS): Do not use macros from bp-asm.h.
30596         (S): Likewise.
30597         (SIZE): Likewise.
30598         (__mpn_rshift): Do not use BP_SYM.
30599         * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
30600         (PARMS): Do not use macros from bp-asm.h.
30601         (SIGMSK): Likewise.
30602         (__sigsetjmp): Likewise.  Do not use BP_SYM.
30603         * sysdeps/i386/start.S: Do not include "bp-sym.h".
30604         (_start): Do not use BP_SYM.
30605         * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
30606         (PARMS): Do not use macros from bp-asm.h.
30607         (DEST): Likewise.
30608         (SRC): Likewise.
30609         (__stpcpy): Likewise.  Do not use BP_SYM.
30610         (stpcpy): Do not use BP_SYM in weak_alias.
30611         * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
30612         "bp-asm.h".
30613         (PARMS): Do not use macros from bp-asm.h.
30614         (DEST): Likewise.
30615         (SRC): Likewise.
30616         (LEN): Likewise.
30617         (__stpncpy): Likewise.  Do not use BP_SYM.
30618         (stpncpy): Do not use BP_SYM in weak_alias.
30619         * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
30620         (PARMS): Do not use macros from bp-asm.h.
30621         (STR): Likewise.
30622         (CHR): Likewise.
30623         (strchr): Likewise.  Do not use BP_SYM.
30624         * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
30625         "bp-asm.h".
30626         (PARMS): Do not use macros from bp-asm.h.
30627         (STR): Likewise.
30628         (CHR): Likewise.
30629         (__strchrnul): Likewise.  Do not use BP_SYM.
30630         (strchrnul): Do not use BP_SYM in weak_alias.
30631         * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
30632         "bp-asm.h".
30633         (PARMS): Do not use macros from bp-asm.h.
30634         (STOP): Likewise.
30635         (strcspn): Do not use BP_SYM.
30636         * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
30637         "bp-asm.h".
30638         (PARMS): Do not use macros from bp-asm.h.
30639         (STR): Likewise.
30640         (STOP): Likewise.
30641         (strpbrk): Likewise.  Do not use BP_SYM.
30642         * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
30643         "bp-asm.h".
30644         (PARMS): Do not use macros from bp-asm.h.
30645         (STR): Likewise.
30646         (CHR): Likewise.
30647         (strrchr): Likewise.  Do not use BP_SYM.
30648         * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
30649         (PARMS): Do not use macros from bp-asm.h.
30650         (SKIP): Likewise.
30651         (strspn): Do not use BP_SYM.
30652         * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
30653         (PARMS): Do not use macros from bp-asm.h.
30654         (STR): Likewise.
30655         (DELIM): Likewise.
30656         (SAVE): Likewise.
30657         (FUNCTION): Likewise.  Do not use BP_SYM.
30658         * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
30659         aliases.
30660         (strtok_r): Likewise.
30661         (__GI___strtok_r): Likewise.
30662         * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
30663         (PARMS): Do not use macros from bp-asm.h.
30664         (S1): Likewise.
30665         (S2): Likewise.
30666         (SIZE): Likewise.
30667         (__mpn_sub_n): Do not use BP_SYM.
30668         * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
30669         "bp-asm.h".
30670         (PARMS): Do not use macros from bp-asm.h.
30671         (S1): Likewise.
30672         (SIZE): Likewise.
30673         (__mpn_submul_1): Do not use BP_SYM.
30674         * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
30675         <bp-sym.h>.
30676         * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
30677         and <bp-asm.h>.
30678         (PARMS): Do not use macros from bp-asm.h.
30679         (FLAGS): Likewise.
30680         (PTID): Likewise.
30681         (TLS): Likewise.
30682         (CTID): Likewise.
30683         (__clone): Do not use BP_SYM.
30684         (clone): Do not use BP_SYM in weak_alias.
30685         * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
30686         and <bp-asm.h>.
30687         (PARMS): Do not use macros from bp-asm.h.
30688         (LEN): Likewise.
30689         (__mmap64): Do not use BP_SYM.
30690         (mmap64): Do not use BP_SYM in weak_alias.
30691         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
30692         <bp-sym.h> and <bp-asm.h>.
30693         (PARMS): Do not use macros from bp-asm.h.
30694         (__posix_fadvise64_l64): Do not use BP_SYM.
30695         * sysdeps/unix/sysv/linux/i386/semtimedop.S
30696         (PARMS): Do not use macros from bp-asm.h.
30697         (NSOPS): Likewise.
30698         (semtimedop): Do not use BP_SYM.
30699         * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
30700         and <bp-asm.h>.
30702 2013-02-21  Allan McRae  <allan@archlinux.org>
30704         * manual/message.texi (Charset conversion in gettext):
30705         Move @end statement to beginning of line.
30707 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
30709         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
30710         static.
30711         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
30712         Likewise.
30714         * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
30715         (denorm): Likewise.
30716         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
30717         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
30719 2013-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30721         * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
30722         tail-call to the resolved function if pltexit isn't needed.
30724 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
30726         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
30727         or Y being zero as being unlikely.
30728         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
30729         Likewise.
30731 2013-02-20  Carlos O'Donell  <carlos@redhat.com>
30733         * manual/nss.texi (System Databases and Name Service Switch):
30734         Remove frobnicate @pxref.
30736 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
30738         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
30739         __attribute__ ((unused)) to __attribute__ ((__unused__)).
30741 2013-02-20  Petr Machata  <pmachata@redhat.com>
30743         * elf/elf.h (R_ARM_TARGET1): New macro.
30744         (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
30745         (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
30746         (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
30747         (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
30748         (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
30749         (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
30750         (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
30751         (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
30752         (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
30753         (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
30754         (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
30755         (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
30756         (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
30757         (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
30758         (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
30759         (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
30760         (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
30761         (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
30762         (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
30763         (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
30764         (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
30765         (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
30766         (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
30767         (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
30768         (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
30769         (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
30770         (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
30771         (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
30772         (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
30773         (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
30774         (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
30775         (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
30776         (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
30777         (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
30778         (R_ARM_THM_GOT_BREL12): Likewise.
30779         (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
30780         (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
30781         (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
30782         (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
30783         (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
30784         (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
30785         (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
30786         (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
30787         (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
30789 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
30791         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
30792         __attribute_used__ to __attribute__ ((unused)).
30794 2013-02-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
30796         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
30797         powerpc mpa.c.
30798         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
30799         comment formatting.
30800         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
30802 2013-02-19  Joseph Myers  <joseph@codesourcery.com>
30804         [BZ #13550]
30805         * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
30806         Remove macro.
30807         (ENTER): Remove both macro definitions.
30808         (LEAVE): Likewise.
30809         (CHECK_BOUNDS_LOW): Likewise.
30810         (CHECK_BOUNDS_HIGH): Likewise.
30811         (CHECK_BOUNDS_BOTH): Likewise.
30812         (CHECK_BOUNDS_BOTH_WIDE): Likewise.
30813         (RETURN_BOUNDED_POINTER): Likewise.
30814         (RETURN_NULL_BOUNDED_POINTER): Likewise.
30815         (PUSH_ERRNO_LOCATION_RETURN): Likewise.
30816         (POP_ERRNO_LOCATION_RETURN): Likewise.
30817         * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
30818         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30819         * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
30820         macros.
30821         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30822         * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
30823         * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
30824         * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
30825         * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
30826         * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
30827         * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
30828         * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
30829         * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
30830         * sysdeps/i386/i486/strcat.S (strcat): Likewise.
30831         * sysdeps/i386/i486/strlen.S (strlen): Likewise.
30832         * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
30833         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30834         * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
30835         removed macros.
30836         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30837         * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
30838         macros.
30839         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30840         * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
30841         * sysdeps/i386/i586/memset.S (memset): Likewise.
30842         * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
30843         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30844         * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
30845         macros.
30846         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30847         * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
30848         Change uses of L(2) to L(out).
30849         * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
30850         * sysdeps/i386/i586/strlen.S (strlen): Likewise.
30851         * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
30852         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30853         * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
30854         removed macros.
30855         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30856         * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
30857         macros.
30858         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30859         * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
30860         (RETURN): Do not use macro LEAVE.
30861         * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
30862         * sysdeps/i386/i686/memmove.S (memmove): Likewise.
30863         * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
30864         * sysdeps/i386/i686/memset.S (memset): Likewise.
30865         * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
30866         (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
30867         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
30868         * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
30869         Likewise.
30870         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
30871         (FUNCTION): Do not use removed macros.  Combine labels L(1_1),
30872         L(1_2) and L(1_3) into L(1).
30873         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
30874         * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
30875         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30876         * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
30877         (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
30878         * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
30879         * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
30880         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30881         * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
30882         macros.
30883         * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
30884         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30885         * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
30886         * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
30887         * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
30888         (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
30889         * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
30890         * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
30891         * sysdeps/i386/strcspn.S (strcspn): Likewise.
30892         * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
30893         * sysdeps/i386/strrchr.S (strrchr): Likewise.
30894         * sysdeps/i386/strspn.S (strspn): Likewise.
30895         * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
30896         conditional code.
30897         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
30898         (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
30899         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
30900         (FUNCTION): Do not use removed macros.  Combine labels L(1_2) and
30901         L(1_3) into L(1_1).
30902         * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
30903         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30904         * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
30905         macros.
30906         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30908 2013-02-19  Jakub Jelinek  <jakub@redhat.com>
30910         * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
30911         macro.
30913 2013-02-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
30915         * math/atest-exp.c (exp_mpn): Remove ROUND.
30916         * math/atest-exp2.c (exp_mpn): Likewise.
30917         * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
30919         * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
30920         * stdlib/tst-tls-atexit-lib.c: Likewise.
30921         * stdlib/tst-tls-atexit.c: Likewise.
30923 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
30925         * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
30926         and __attribute_alloc_size__.
30928 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
30930         * include/programs/xmalloc.h: Change __attribute_alloc_size to
30931         __attribute_alloc_size__.
30932         * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
30933         * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
30935 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
30937         * include/programs/xmalloc.h: New file.
30938         * catgets/gencat.c: Include it.
30939         (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
30940         * elf/pldd.c: Likewise.
30941         * iconv/iconv_charmap.c: Likewise.
30942         * iconv/iconvconfig.c: Likewise.
30943         * iconv/strtab.c: Likewise.
30944         * locale/programs/locale.c: Likewise.
30945         * locale/programs/localedef.h: Likewise.
30946         * locale/programs/simple-hash.c: Likewise.
30947         * nscd/nscd.h: Likewise.
30948         * nss/makedb.c: Likewise.
30949         * sysdeps/generic/ldconfig.h: Likewise.
30951 2013-02-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
30953         * Versions.def: Add GLIBC_2.18.
30954         * include/link.h (struct link_map): New member l_tls_dtor_count.
30955         * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
30956         (__call_tls_dtors): Likewise.
30957         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
30958         __cxa_thread_atexit_impl.
30959         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
30960         Likewise.
30961         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
30962         Likewise.
30963         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
30964         Likewise.
30965         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
30966         Likewise.
30967         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
30968         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
30969         Likewise.
30970         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
30971         Likewise.
30972         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
30973         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
30974         Likewise.
30975         * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
30976         (tests): Add test case tst-tls-atexit.
30977         (modules-names): Add shared library for tst-tls-atexit.
30978         * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
30979         (GLIBC_PRIVATE): Add __call_tls_dtors.
30980         * stdlib/cxa_thread_atexit_impl.c: New file with helper function
30981         for libstdc++.
30982         * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
30983         * stdlib/tst-tls-atexit.c: New test case.
30984         * stdlib/tst-tls-atexit-lib.c: New test case.
30986         * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
30988         * elf/Versions (ld): Add _dl_find_dso_for_object.
30989         * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
30990         * elf/dl-open.c (_dl_find_dso_for_object): New function.
30991         (dl_open_worker): Use _dl_find_dso_for_object.
30992         * elf/dl-sym.c (do_sym): Likewise.
30993         * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
30995 2013-02-18  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30997         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
30998         Syntactic changes only.
30999         (_dl_runtime_profile): Do a tail-call to the resolved function.
31001 2013-02-17  Joseph Myers  <joseph@codesourcery.com>
31003         [BZ #13550]
31004         * sysdeps/x86_64/bp-asm.h: Remove file.
31005         * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
31006         <bp-sym.h> and <bp-asm.h>.
31007         (__clone): Do not use BP_SYM.
31008         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
31009         <bp-sym.h> and <bp-asm.h>.
31010         * sysdeps/unix/x86_64/sysdep.S: Likewise.
31011         * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
31012         "bp-asm.h".
31013         (_setjmp): Do not use BP_SYM.
31014         * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
31015         "bp-asm.h".
31016         (setjmp): Do not use BP_SYM.
31017         * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
31018         libc_hidden_def.
31019         (mempcpy): Do not use BP_SYM in weak_alias.
31020         * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
31021         "bp-asm.h".
31022         (strchr): Do not use BP_SYM.
31023         * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
31024         "bp-asm.h".
31025         * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
31026         * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
31027         (_start): Do not use BP_SYM.
31028         * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
31029         "bp-asm.h".
31030         (strcat): Do not use BP_SYM.
31031         * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
31032         "bp-asm.h".
31033         (STRCMP): Do not use BP_SYM.
31034         * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
31035         "bp-asm.h".
31036         (STRCPY): Do not use BP_SYM.
31037         * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
31038         "bp-asm.h".
31039         * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
31040         "bp-asm.h".
31041         (FUNCTION): Do not use BP_SYM.
31042         * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
31043         weak_alias.
31044         (__GI___strtok_r): Do not use BP_SYM in strong_alias.
31046 2013-02-17  Andreas Jaeger  <aj@suse.de>
31048         * time/Versions: Sort entries.
31049         * string/Versions: Likewise.
31050         * resolv/Versions: Likewise.
31051         * posix/Versions: Likewise.
31052         * iconv/Versions: Likewise.
31053         * elf/Versions: Likewise.
31054         * wcsmbs/Versions: Likewise.
31056 2013-02-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
31058         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
31059         loop termination condition.
31061         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
31062         variable to calculate EZ.
31063         (__sqr): Likewise.
31065         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
31066         the lower precision input.
31068 2013-02-15  Joseph Myers  <joseph@codesourcery.com>
31070         [BZ #13550]
31071         * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
31072         [!link-extra-libs] (link-extra-libs-bounded): Likewise.
31073         (run-via-rtld-prefix): Do not handle %-bp tests.
31074         (test-via-rtld-prefix): Do not mention %-bp tests in comment.
31075         (all-object-suffixes): Remove .ob.
31076         (bppfx): Remove variable.
31077         [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
31078         [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
31079         [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
31080         [$(build-bounded) = yes] (libtype.ob): Likewise.
31081         * Makerules (elide-routines.ob): Remove variable.
31082         (do-tests-clean): Do not handle *-bp.out.
31083         (common-mostlyclean): Do not handle *-bp and *-bp.out.
31084         * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
31085         [$(build-bounded) = yes] (xtests-bp.out): Likewise.
31086         (tests): Do not include $(tests-bp.out).
31087         (xtests): Do not include $(xtests-bp.out).
31088         [$(build-bounded) = yes] (binaries-bounded): Remove variable.
31089         [$(build-bounded) = yes] ($(addprefix
31090         $(objpfx),$(binaries-bounded))): Remove rule.
31091         ($(objpfx)%-bp.out): Remove rule.
31092         * config.make.in (build-bounded): Remove variable.
31093         * crypt/Makefile [$(build-bounded) = yes]
31094         ($(tests:%=$(objpfx)%-bp)): Remove dependency.
31095         * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
31096         append to variable.
31097         [$(build-bounded) = yes] (install-lib): Likewise.
31098         [$(build-bounded) = yes] (generated): Likewise.
31099         [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
31100         Remove rule.
31101         * intl/Makefile [$(build-bounded) = yes]
31102         ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
31103         * math/Makefile [$(build-bounded) = yes]
31104         ($(tests:%=$(objpfx)%-bp): Likewise.
31105         * misc/Makefile [$(build-bounded) = yes]
31106         ($(objpfx)tst-tsearch-bp): Likewise.
31107         * nptl/Makeconfig (bounded-thread-library): Remove variable.
31108         * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
31109         Remove dependency.
31110         * string/Makefile (o-objects.ob): Remove variable.
31111         * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
31112         (CFLAGS-.ob): Remove variable.
31113         [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
31114         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
31115         both definitions of variable.
31116         * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
31117         (ASFLAGS-.ob): Remove variable.
31119 2013-02-14  Joseph Myers  <joseph@codesourcery.com>
31121         [BZ #13550]
31122         * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
31123         Remove __BOUNDED_POINTERS__ from condition.
31124         * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
31125         * string/bits/string2.h [!__NO_STRING_INLINES &&
31126         !__BOUNDED_POINTERS__]: Likewise.
31127         * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
31128         Likewise.
31129         * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
31130         Remove conditional code.
31131         * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
31132         __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
31133         !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
31134         condition.
31136         [BZ #13550]
31137         * csu/libc-start.c: Do not include <bp-sym.h>.
31138         [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
31139         * elf/dl-open.c: Do not include <bp-sym.h>.
31140         (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
31141         * math/fegetenv.c: Do not include <bp-sym.h>.
31142         (fegetenv): Do not use BP_SYM in versioned symbols.
31143         * nptl/sysdeps/pthread/bits/libc-lockP.h
31144         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
31145         <bp-sym.h>.
31146         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31147         (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
31148         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31149         (__pthread_mutex_destroy): Likewise.
31150         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31151         (__pthread_mutex_lock): Likewise.
31152         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31153         (__pthread_mutex_trylock): Likewise.
31154         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31155         (__pthread_mutex_unlock): Likewise.
31156         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31157         (__pthread_mutexattr_init): Likewise.
31158         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31159         (__pthread_mutexattr_destroy): Likewise.
31160         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31161         (__pthread_mutexattr_settype): Likewise.
31162         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31163         (__pthread_rwlock_init): Likewise.
31164         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31165         (__pthread_rwlock_destroy): Likewise.
31166         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31167         (__pthread_rwlock_rdlock): Likewise.
31168         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31169         (__pthread_rwlock_tryrdlock): Likewise.
31170         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31171         (__pthread_rwlock_wrlock): Likewise.
31172         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31173         (__pthread_rwlock_trywrlock): Likewise.
31174         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31175         (__pthread_rwlock_unlock): Likewise.
31176         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31177         (__pthread_key_create): Likewise.
31178         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31179         (__pthread_setspecific): Likewise.
31180         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31181         (__pthread_getspecific): Likewise.
31182         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
31183         Likewise.
31184         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31185         (_pthread_cleanup_push_defer): Likewise.
31186         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31187         (_pthread_cleanup_pop_restore): Likewise.
31188         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31189         (pthread_setcancelstate): Likewise.
31190         * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
31191         <bp-sym.h>.
31192         [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
31193         (memchr): Do not use BP_SYM in weak_alias.
31194         * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
31195         (fegetenv): Do not use BP_SYM in versioned symbols.
31196         * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
31197         (fesetenv): Do not use BP_SYM in versioned symbols.
31198         * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
31199         (feupdateenv): Do not use BP_SYM in versioned symbols.
31200         * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
31201         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
31202         * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
31203         (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
31204         (open64): Do not use BP_SYM in weak_alias.
31205         * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
31206         (fegetenv): Do not use BP_SYM in versioned symbols.
31207         * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
31208         (fesetenv): Do not use BP_SYM in versioned symbols.
31209         * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
31210         (feupdateenv): Do not use BP_SYM in versioned symbols.
31211         * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
31212         (fegetexceptflag): Do not use BP_SYM in versioned symbols.
31213         * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
31214         (feraiseexcept): Do not use BP_SYM in versioned symbols.
31215         * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
31216         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
31217         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
31218         <bp-sym.h>.
31219         (__libc_start_main): Do not use BP_SYM.
31221 2013-02-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
31223         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
31224         redundant return line.
31225         (norm): Likewise.
31226         (denorm): Likewise.
31227         (dbl_mp): Likewise.
31228         (sub_magnitudes): Likewise.
31229         (__add): Likewise.
31230         (__sub): Likewise.
31231         (__mul): Likewise.
31232         (__inv): Likewise.
31233         (__dvd): Likewise.
31234         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
31235         (norm): Likewise.
31236         (denorm): Likewise.
31237         (dbl_mp): Likewise.
31238         (sub_magnitudes): Likewise.
31239         (__add): Likewise.
31240         (__sub): Likewise.
31241         (__mul): Likewise.
31242         (__inv): Likewise.
31243         (__dvd): Likewise.
31245         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
31246         instead of __mul.
31247         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
31248         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
31249         (cc32): Likewise.
31251         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
31252         * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
31253         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
31254         of __mul for squares.
31255         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
31256         function
31257         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
31258         Likewise.
31259         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
31260         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
31262 2013-02-13  Joseph Myers  <joseph@codesourcery.com>
31264         [BZ #13550]
31265         * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
31266         code.
31267         * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
31268         prototype or function definition.  Rename ubp_* variables and
31269         parameters.  Remove argv definitions conditional on
31270         [__BOUNDED_POINTERS__].
31271         * debug/backtrace.c (__backtrace): Do not use __unbounded.
31272         * elf/dl-runtime.c (_dl_fixup): Likewise.
31273         * include/set-hooks.h (RUN_HOOK): Likewise.
31274         * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
31275         definition.
31276         * string/strcpy.c (strcpy): Do not use __unbounded.
31277         * sysdeps/generic/frame.h (struct layout): Likewise.
31278         * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
31279         * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
31280         * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
31281         * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
31282         * sysdeps/sparc/backtrace.c (struct layout): Likewise.
31283         (__backtrace): Likewise.
31284         * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
31285         use __ptrvalue.
31286         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
31287         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
31288         * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
31289         Likewise.
31290         * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
31291         * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
31292         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
31293         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
31294         * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
31295         Do not use __unbounded.
31296         * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
31297         Rename __unboundedrlimits parameter to rlimits in prototype.
31298         * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
31299         Do not use __unbounded.
31300         * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
31301         not use __ptrvalue.
31302         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
31303         * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
31304         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
31305         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
31306         __ptrvalue or __unbounded.
31307         (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
31308         * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
31309         use __unbounded.
31310         (__new_msgctl): Do not use __ptrvalue.
31311         * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
31312         __unbounded.
31313         (__libc_msgrcv): Do not use __ptrvalue.
31314         * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
31315         startup_info): Do not use __unbounded.
31316         (__libc_start_main): Likewise.  Rename ubp_* variables and
31317         parameters.  Remove argv definitions conditional on
31318         [__BOUNDED_POINTERS__].
31319         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
31320         __ptrvalue.
31321         * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
31322         use __unbounded.
31323         * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
31324         or __ptrvalue.
31325         * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
31326         use __unbounded.
31327         (__new_shmctl): Do not use __ptrvalue.
31328         * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
31329         * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
31330         Likewise.
31331         * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
31332         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
31333         (__libc_sigaction): Likewise.
31334         * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
31335         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
31336         Likewise.
31337         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
31339 2013-02-13   Ondřej Bílka  <neleai@seznam.cz>
31341         * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
31343         * string/mempcpy.c: Implement by calling memcpy.
31345 2013-02-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
31347         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
31349         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
31350         evaluation.
31352         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
31353         values in the mantissa.
31355         * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
31356         minimize writes to Z.
31357         (sub_magnitudes): Simplify code a bit.
31359 2013-02-12  Roland McGrath  <roland@hack.frob.com>
31361         * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
31362         from the message.  The linker prefixes all warnings with that already.
31364 2013-02-12  Andreas Schwab  <schwab@suse.de>
31366         [BZ #15078]
31367         * posix/regexec.c (extend_buffers): Add parameter min_len.
31368         (check_matching): Pass minimum needed length.
31369         (clean_state_log_if_needed): Likewise.
31370         (get_subexp): Likewise.
31371         * posix/Makefile (tests): Add bug-regex34.
31372         (bug-regex34-ENV): Define.
31373         * posix/bug-regex34.c: New file.
31375         [BZ #11561]
31376         * posix/regcomp.c (parse_bracket_exp): When looking up collating
31377         elements compare against the byte sequence of it, not its name.
31378         * posix/Makefile (tests): Add bug-regex35.
31379         (bug-regex35-ENV): Define.
31380         * posix/bug-regex35.c: New file.
31382 2013-02-11  Tom de Vries  <tom@codesourcery.com>
31384         * string/str-two-way.h:  Fix typo RESULT_TYPE -> RETURN_TYPE in
31385         comment.
31386         Add RET0_IF_0 and CHECK_EOL to macro list in comment.
31387         (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
31388         (CHECK_EOL): Add undef.
31390 2013-02-11   Ondřej Bílka  <neleai@seznam.cz>
31392         * bits/stdlib-bsearch.h: New file.
31393         * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
31394         * stdlib/stdlib.h: Likewise.
31396 2013-02-11  Roland McGrath  <roland@hack.frob.com>
31398         * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
31399         * manual/errno.texi (Error Messages): Fix typo in error_print_progname
31400         declaration.
31401         * manual/search.texi (Array Search Function): Add missing const in
31402         lfind prototype.
31403         * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
31404         declaration to use rlim_t.
31405         (Basic Scheduling Functions): Remove erroneous const from
31406         sched_getparam prototype.  Remove erroneous * from
31407         sched_get_priority_max and sched_get_priority_min prototypes.
31408         (Resource Usage): Fix summary @comment on vtimes to refer to
31409         sys/vtimes.h rather than vtimes.h.
31410         Add missing *s in vtimes prototype.
31411         (Limits on Resources): Fix ulimit prototype to return long int.
31412         * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
31413         prototypes to use long int rather than double.
31414         (BSD Random): Fix initstate and setstate to use char *, not void *.
31415         * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
31416         prototype to make second argument 'struct aiocb64 *const[]'.
31417         Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
31418         (Status of AIO Operations): Remove erroneous const in aio_return and
31419         aio_return64 prototypes.
31420         (Synchronizing I/O): Fix sync prototype to return void.
31421         * manual/startup.texi (Suboptions): Remove an erroneous const in
31422         getsubopt prototype.
31423         * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
31424         * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
31425         use size_t rather than int.
31426         (Scanning All Users): Likewise for getpwent_r.
31427         (Setting Groups): Add missing const to setgroups prototype.
31428         * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
31429         * manual/socket.texi (Host Names): Fix gethostbyaddr and
31430         gethostbyaddr_r prototypes to use socklen_t rather than size_t and
31431         'const void *' rather than 'const char *'.
31432         (Host Address Functions): Likewise for inet_ntop.
31433         (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
31434         (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
31435         ssize_t for return value.
31436         (Sending Data): Likewise for send, sendto, sendmsg.
31437         (Socket Option Functions): Add a missing const in setsockopt prototype.
31438         * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
31439         use wchar_t for the argument.
31440         (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
31441         * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
31442         take no arguments.
31443         (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
31444         double/float/long double for second argument.
31445         Fix return types of significand, significandf, significandl.
31446         * manual/filesys.texi (Setting Permissions): Use mode_t for second
31447         argument in fchmod prototype.
31448         (File Owner): Use uid_t and gid_t in fchown prototype.
31449         (File Times): Add const to utimes, futimes, and lutimes prototypes.
31450         (Making Special Files): Use mode_t and dev_t in mknod prototype.
31451         (Scanning Directory Content): Fix scandir and scandir64 prototypes to
31452         use 'const struct dirent **' as argument types to CMP function pointer
31453         argument.
31454         (Symbolic Links): Fix readlink prototype with ssize_t as return value.
31455         (File Times): Fix summary magic @comment for struct utimbuf and utime
31456         to refer to utime.h, not time.h.
31457         * manual/string.texi (Argz Functions): Add missing const in
31458         argz_extract and argz_next prototypes.
31459         (Finding Tokens in a String): Likewise for basename.
31460         (String/Array Comparison): Fix typo in wcscasecmp prototype.
31461         (Copying and Concatenation): Fix typo in wmemmove prototype.
31462         * manual/signal.texi (Using Pause): Use (void) in pause prototype.
31463         (Signal Stack): Remove erroneous const in sigstack prototype.
31464         * manual/time.texi (Setting an Alarm): Add missing const in setitimer
31465         prototype.
31466         (Simple Calendar Time): Likewise for stime.
31467         * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
31468         prototype.
31469         * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
31470         say sys/sysctl.h instead.
31471         * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
31472         and vsyslog prototypes.
31474 2013-02-11  Tom de Vries  <tom@codesourcery.com>
31476         * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
31477         Remove.
31479 2013-02-11  Roland McGrath  <roland@hack.frob.com>
31481         * misc/sys/mman.h: Fix typo in mremap comment.
31483 2013-02-08  Roland McGrath  <roland@hack.frob.com>
31485         * manual/examples/mkfsock.c (make_named_socket): Don't add one for
31486         the '\0' terminator.
31488 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
31490         [BZ #13550]
31491         * debug/segfault.c: Don't include <bp-checks.h>.
31492         * sysdeps/generic/bp-checks.h: Remove file.
31493         * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
31494         (__GETDENTS): Don't use CHECK_N.
31495         * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
31496         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
31497         (__getgroups): Don't use CHECK_N.
31498         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
31499         (setgroups): Don't use CHECK_N.
31500         * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
31501         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
31502         (__libc_msgrcv): Don't use CHECK_N.
31503         * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
31504         (__libc_msgsnd): Don't use CHECK_N.
31505         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
31506         <bp-checks.h>.
31507         (__libc_pread): Don't use CHECK_N.
31508         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
31509         include <bp-checks.h>.
31510         (__libc_pread64): Don't use CHECK_N.
31511         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
31512         include <bp-checks.h>.
31513         (__libc_pwrite): Don't use CHECK_N.
31514         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
31515         include <bp-checks.h>.
31516         (__libc_pwrite64): Don't use CHECK_N.
31517         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
31518         <bp-checks.h>.
31519         (__libc_pread): Don't use CHECK_N.
31520         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
31521         include <bp-checks.h>.
31522         (__libc_pread64): Don't use CHECK_N.
31523         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
31524         include <bp-checks.h>.
31525         (__libc_pwrite): Don't use CHECK_N.
31526         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
31527         include <bp-checks.h>.
31528         (__libc_pwrite64): Don't use CHECK_N.
31529         * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
31530         (do_pread): Don't use CHECK_N.
31531         * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
31532         (do_pread64): Don't use CHECK_N.
31533         * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
31534         (do_pwrite): Don't use CHECK_N.
31535         * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
31536         (do_pwrite64): Don't use CHECK_N.
31537         * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
31538         (__libc_readv): Don't use CHECK_N.
31539         * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
31540         (semop): Don't use CHECK_N.
31541         * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
31542         <bp-checks.h>.
31543         (semtimedop): Don't use CHECK_N.
31544         * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
31545         (__libc_pread): Don't use CHECK_N.
31546         * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
31547         <bp-checks.h>.
31548         (__libc_pread64): Don't use CHECK_N.
31549         * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
31550         <bp-checks.h>.
31551         (__libc_pwrite): Don't use CHECK_N.
31552         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
31553         <bp-checks.h>.
31554         (__libc_pwrite64): Don't use CHECK_N.
31555         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
31556         <bp-checks.h>.
31557         (__libc_msgrcv): Don't use CHECK_N.
31558         * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
31559         (__sysctl): Don't use CHECK_N.  Remove GKM FIXME comment.
31560         * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
31561         (__libc_writev): Don't use CHECK_N.
31563 2013-02-08  Roland McGrath  <roland@hack.frob.com>
31565         * string/strcpy.c: Removed unused variable.
31567         * Makeconfig (+sysdep-includes): Define with := rather than =.
31568         Use an existing include/ subdir of each sysdeps dir before it.
31570 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
31572         * nscd/connection.c (register_traced_file): Comment function.
31573         [HAVE_INOTIFY] (union __inev): Define.
31574         [HAVE_INOTIFY] (inotify_check_files): New function.
31575         [HAVE_INOTIFY] (clear_db_cache): Likewise.
31576         [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
31577         clear_db_cache.
31578         [HAVE_INOTIFY] (main_loop_epoll): Likewise.
31580 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
31582         * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
31583         loaded if not already and that a failure is permanent.
31585 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
31587         [BZ #15006]
31588         * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
31589         * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
31591 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
31593         [BZ #13550]
31594         * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
31595         (CHECK_1_NULL_OK): Likewise.
31596         * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
31597         (__fxstat): Do not use CHECK_1.
31598         * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
31599         <bp-checks.h>.
31600         (___fxstat64): Do not use CHECK_1.
31601         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
31602         <bp-checks.h>.
31603         (__fxstatat): Do not use CHECK_1.
31604         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
31605         <bp-checks.h>.
31606         (__fxstatat64): Do not use CHECK_1.
31607         * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
31608         <bp-checks.h>.
31609         (__fxstat): Do not use CHECK_1.
31610         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
31611         <bp-checks.h>.
31612         (__fxstatat): Do not use CHECK_1.
31613         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
31614         <bp-checks.h>.
31615         (__getresgid): Do not use CHECK_1.
31616         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
31617         <bp-checks.h>.
31618         (__getresuid): Do not use CHECK_1.
31619         * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
31620         <bp-checks.h>.
31621         (__lxstat): Do not use CHECK_1.
31622         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
31623         <bp-checks.h>.
31624         (__old_msgctl): Do not use CHECK_1.
31625         (__new_msgctl): Likewise.
31626         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
31627         <bp-checks.h>.
31628         (__new_setrlimit): Do not use CHECK_1.
31629         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
31630         <bp-checks.h>.
31631         (__old_shmctl): Do not use CHECK_1.
31632         (__new_shmctl): Likewise.
31633         * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
31634         <bp-checks.h>.
31635         (__xstat): Do not use CHECK_1.
31636         * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
31637         (__lxstat): Do not use CHECK_1.
31638         * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
31639         <bp-checks.h>.
31640         (___lxstat64): Do not use CHECK_1.
31641         * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
31642         (__old_msgctl): Do not use CHECK_1.
31643         (__new_msgctl): Likewise.
31644         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
31645         <bp-checks.h>.
31646         (__gettimeofday): Do not use CHECK_1.
31647         * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
31648         (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
31649         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
31650         <bp-checks.h>.
31651         (__gettimeofday): Do not use CHECK_1.
31652         * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
31653         (__old_shmctl): Do not use CHECK_1_NULL_OK.
31654         (__new_shmctl): Do not use CHECK_1.
31655         * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
31656         <bp-checks.h>.
31657         (do_sigtimedwait): Do not use CHECK_1.
31658         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
31659         <bp-checks.h>.
31660         (do_sigwaitinfo): Do not use CHECK_1.
31661         * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
31662         <bp-checks.h>.
31663         (msgctl): Do not use CHECK_1.
31664         * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
31665         <bp-checks.h>.
31666         (shmctl): Do not use CHECK_1.
31667         * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
31668         (ustat): Do not use CHECK_1.
31669         * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
31670         <bp-checks.h>.
31671         (__fxstat): Do not use CHECK_1.
31672         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
31673         <bp-checks.h>.
31674         (__fxstatat): Do not use CHECK_1.
31675         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
31676         <bp-checks.h>.
31677         (__lxstat): Do not use CHECK_1.
31678         * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
31679         <bp-checks.h>.
31680         (__xstat): Do not use CHECK_1.
31681         * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
31682         (__xstat): Do not use CHECK_1.
31683         * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
31684         (___xstat64): Do not use CHECK_1.
31686         [BZ #13550]
31687         * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
31688         definitions.
31689         (CHECK_BOUNDS_HIGH): Likewise.
31690         * string/strcpy.c: Do not include <bp-checks.h>.
31691         (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
31693 2013-02-07  Roland McGrath  <roland@hack.frob.com>
31695         * nscd/nscd-client.h (__nscd_drop_map_ref):
31696         Add __attribute__ ((unused)).
31697         * nis/nss-nisplus.h (niserr2nss): Likewise.
31699         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
31700         under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
31702         * csu/libc-tls.c (init_static_tls, init_slotinfo):
31703         Remove inline keyword.
31704         * include/rounding-mode.h (round_away): Likewise.
31705         * libio/wfileops.c (adjust_wide_data): Likewise.
31706         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
31707         (__m128i_strloadu_tolower): Likewise.
31708         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
31709         (__m128i_strloadu_tolower): Likewise.
31710         * time/mktime.c (ydhms_diff): Likewise.
31711         * locale/elem-hash.h (elem_hash): Likewise.
31712         * locale/setlocale.c (setdata): Likewise.
31713         * posix/regex_internal.h (re_string_char_size_at): Likewise.
31714         (re_string_wchar_at): Likewise.
31715         (bitset_not, bitset_merge, bitset_mask): Likewise.
31716         [!(__GNUC__ > 3)] (inline): Remove macro.
31717         * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
31718         * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
31719         * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
31720         (_dl_tlsdesc_wake_up_held_fixups): Likewise.
31721         * string/memcmp.c (memcmp_bytes): Likewise.
31722         * locale/programs/locarchive.c (compute_hashval): Likewise.
31723         * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
31724         * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
31725         * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
31726         * nss/getent.c (print_rpc, print_protocols): Likewise.
31727         (print_passwd, print_group, print_aliases): Likewise.
31728         * nis/nss-nisplus.h (niserr2nss): Likewise.
31729         * nscd/connections.c (restart_p): Likewise.
31730         Change return type to bool.
31732 2013-02-05  Roland McGrath  <roland@hack.frob.com>
31734         * Makeconfig (all-Depend-files): Add existing
31735         $(sorted-subdirs:=/Depend) files.
31736         (all-subdirs): Remove nss.
31737         * sysdeps/unix/inet/Subdirs: Add it here instead.
31738         * hesiod/Depend: New file.
31740         * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
31741         instead of calling alloca.
31743         * io/lseek.c (__lseek): Rename to __libc_lseek.
31744         Define __lseek as an alias.
31746         * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
31748 2013-02-04  Carlos O'Donell  <carlos@redhat.com>
31750         * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
31751         else clause and remove check for non-standard endianness.
31753 2013-02-04  David S. Miller  <davem@davemloft.net>
31755         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31757 2013-02-04  Joseph Myers  <joseph@codesourcery.com>
31759         [BZ #13550]
31760         * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
31761         (__ubp_memchr): Remove prototype.
31762         [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
31763         [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
31764         [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
31765         [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
31766         * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
31767         Remove alias.
31768         * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
31769         (__ubp_memchr): Likewise.
31770         * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
31771         (__ubp_memchr): Likewise.
31772         * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
31773         (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
31774         (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
31775         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
31776         CHECK_STRING.
31777         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
31778         * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
31779         (__getcwd): Do not use CHECK_STRING.
31780         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
31781         <bp-checks.h>.
31782         (__real_chown): Do not use CHECK_STRING.
31783         * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
31784         <bp-checks.h>.
31785         (fchownat): Do not use CHECK_STRING.
31786         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
31787         CHECK_STRING.
31788         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
31789         <bp-checks.h>.
31790         (__lchown): Do not use CHECK_STRING.
31791         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
31792         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
31793         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
31794         * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
31795         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
31796         include <bp-checks.h>.
31797         (truncate64): Do not use CHECK_STRING.
31798         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
31799         <bp-checks.h>.
31800         (__real_chown): Do not use CHECK_STRING.
31801         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
31802         <bp-checks.h>.
31803         (__lchown): Do not use CHECK_STRING.
31804         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
31805         <bp-checks.h>.
31806         (__chown): Do not use CHECK_STRING.
31807         * sysdeps/unix/sysv/linux/truncate64.c: Do not include
31808         <bp-checks.h>.
31809         (truncate64): Do not use CHECK_STRING.
31810         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
31811         Likewise.
31812         * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
31813         (__xmknod): Do not use CHECK_STRING.
31814         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
31815         <bp-checks.h>.
31816         (__xmknodat): Do not use CHECK_STRING.
31817         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
31818         * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
31820 2013-02-04  Andreas Schwab  <schwab@suse.de>
31822         [BZ #14142]
31823         * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
31824         * include/netdb.h: Likewise for h_errno.
31825         * elf/tst-stackguard1.c: Include <tls.h>.
31827 2013-02-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
31829         * elf/link.h (struct link_map): Extend the l_addr comment.
31830         * include/link.h (struct link_map): Likewise.
31832 2013-02-01  Joseph Myers  <joseph@codesourcery.com>
31834         [BZ #13550]
31835         * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
31836         (BOUNDED_1): Remove macro.
31837         * debug/backtrace.c: Don't include <bp-checks.h>.
31838         (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
31839         (__backtrace): Likewise.
31840         * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
31841         <bp-checks.h>.
31842         (__backtrace): Don't use BOUNDED_1.
31843         * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
31844         <bp-checks.h>.
31845         (__backtrace): Don't use BOUNDED_1.
31846         * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
31847         (__backtrace): Don't use BOUNDED_1.
31848         * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
31849         (shmat): Don't use BOUNDED_N.
31851 2013-01-31  Joseph Myers  <joseph@codesourcery.com>
31853         [BZ #13550]
31854         * sysdeps/generic/bp-start.h: Remove file.
31855         * csu/libc-start.c: Don't include <bp-start.h>.
31856         (LIBC_START_MAIN): Set up __environ directly instead of using
31857         INIT_ARGV_and_ENVIRON.
31858         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
31859         <bp-start.h>.
31861         [BZ #13550]
31862         * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
31863         definitions.
31864         (CHECK_FCNTL): Likewise.
31865         (CHECK_N_PAGES): Likewise.
31867         [BZ #13550]
31868         * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
31869         definitions.
31870         (CHECK_SIGSET_NULL_OK): Likewise.
31871         * sysdeps/unix/sysv/linux/sigpending.c: Don't include
31872         <bp-checks.h>.
31873         (sigpending): Don't use CHECK_SIGSET.
31874         * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
31875         <bp-checks.h>.
31876         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
31877         * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
31878         <bp-checks.h>.
31879         (do_sigsuspend): Don't use CHECK_SIGSET.
31880         * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
31881         use CHECK_SIGSET.
31882         * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
31883         (do_sigwait): Don't use CHECK_SIGSET.
31884         * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
31885         use CHECK_SIGSET.
31886         * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
31887         include <bp-checks.h>.
31888         (sigpending): Don't use CHECK_SIGSET.
31889         * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
31890         include <bp-checks.h>.
31891         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
31892         * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
31893         <bp-checks.h>.
31894         (sigpending): Don't use CHECK_SIGSET.
31895         * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
31896         <bp-checks.h>.
31897         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
31899         [BZ #13550]
31900         * sysdeps/generic/bp-semctl.h: Remove file.
31901         * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
31902         <bp-checks.h> and <bp-semctl.h>.
31903         (__old_semctl): Don't use CHECK_SEMCTL.
31904         (__new_semctl): Likewise.
31905         * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
31906         and <bp-semctl.h>.
31907         (__old_semctl): Don't use CHECK_SEMCTL.
31908         (__new_semctl): Likewise.
31909         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
31910         <bp-checks.h> and <bp-semctl.h>.
31911         (__old_semctl): Don't use CHECK_SEMCTL.
31912         (__new_semctl): Likewise.
31913         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
31914         <bp-checks.h> and <bp-semctl.h>.
31915         (semctl): Don't use CHECK_SEMCTL.
31917         [BZ #13550]
31918         * Makerules (elide-bp-thunks): Remove variable.
31919         (elide-routines.oS): Don't use $(elide-bp-thunks).
31920         (elide-routines.os): Likewise.
31921         (elide-routines.o): Likewise.
31922         (elide-routines.op): Likewise.
31923         (elide-routines.og): Likewise.
31924         (objects): Don't use $(bp-thunks).
31925         * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
31926         include.
31927         (common-generated): Do not add s-proto-bp.d.
31928         * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
31929         (int): Likewise.
31930         (typ): Likewise.
31931         Do not generate makefile rules for bounded-pointer thunks.
31932         * sysdeps/generic/bp-thunks.h: Remove file.
31933         * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
31934         * sysdeps/unix/s-proto-bp.S: Likewise.
31936         [BZ #15062]
31937         * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
31938         parts of result separately when argument is not close to line from
31939         -i to i and one part of argument is small.
31940         * math/k_casinhf.c (__kernel_casinhf): Likewise.
31941         * math/k_casinhl.c (__kernel_casinhl): Likewise.
31942         * math/libm-test.inc (cacos_test): Add more tests.
31943         (casin_test): Likewise.
31944         (casinh_test): Likewise.
31945         * sysdeps/i386/fpu/libm-test-ulps: Update.
31946         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31948 2013-01-31  David S. Miller  <davem@davemloft.net>
31950         * po/de.po: Update from translation team.
31952 2013-01-25  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
31954         * time/tzfile.c: Include stdint.h for SIZE_MAX.
31956 2013-01-25  Thomas Schwinge  <thomas@codesourcery.com>
31958         * configure.in (_AC_PROG_CC_C89): New definition.
31959         * configure: Regenerate.
31961         * configure.in (AC_PROG_CPP): New definition.
31962         * configure: Regenerate.
31964 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
31966         * debug/tst-backtrace.h: New file.
31967         * debug/tst-backtrace2.c: Include tst-backtrace.h.
31968         (ret): Remove variable.
31969         (x): Likewise.
31970         (FAIL): Remove macro.
31971         (NO_INLINE): Likewise.
31972         (fn1): Use match function instead of strstr.
31973         * debug/tst-backtrace3.c: Include tst-backtrace.h.
31974         (ret): Remove variable.
31975         (x): Likewise.
31976         (FAIL): Remove macro.
31977         (NO_INLINE): Likewise.
31978         (fn): Use match function instead of strstr.
31979         * debug/tst-backtrace4.c: Include tst-backtrace.h.
31980         (ret): Remove variable.
31981         (x): Likewise.
31982         (FAIL): Remove macro.
31983         (NO_INLINE): Likewise.
31984         (handle_signal): Use match function instead of strstr.
31985         * debug/tst-backtrace5.c: Include tst-backtrace.h.
31986         (ret): Remove variable.
31987         (x): Likewise.
31988         (FAIL): Remove macro.
31989         (NO_INLINE): Likewise.
31990         (handle_signal): Use match function instead of strstr.
31992 2013-01-23  Roland McGrath  <roland@hack.frob.com>
31994         * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
31996 2013-01-23  David S. Miller  <davem@davemloft.net>
31998         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
31999         (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
32000         argument of CAS if possible.
32001         * sysdeps/sparc/sparc64/bits/atomic.h
32002         (__arch_compare_and_exchange_val_32_acq): Likewise.
32003         (__arch_compare_and_exchange_val_64_acq): Likewise.
32005 2013-01-23  Pino Toscano  <toscano.pino@tiscali.it>
32007         * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
32008         * sysdeps/posix/ulimit.c: ... this.
32009         Include <limits.h>.
32010         * sysdeps/unix/bsd/ulimit.c: Remove file.
32012 2013-01-23  Adam Conrad  <adconrad@0c3.net>
32014         * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
32015         (LDFLAGS-tst-array5): Likewise.
32017 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
32019         [BZ #15036]
32020         * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
32021         based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
32022         (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
32023         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
32025 2013-01-21  David S. Miller  <davem@davemloft.net>
32027         * sysdeps/sparc/backtrace.c: New file.
32028         * sysdeps/sparc/sparc32/backtrace.h: New file.
32029         * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
32030         * sysdeps/sparc/sparc64/backtrace.h: New file.
32031         * sysdeps/sparc/sparc64/backtrace.c: Delete.
32032         * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
32033         -funwind-tables.
32035 2013-01-21  Andreas Schwab  <schwab@suse.de>
32037         [BZ #15020]
32038         * posix/wordexp.c (exec_comm): Avoid busy loop when command has
32039         closed its stdout.
32041 2013-01-20  Andreas Schwab  <schwab@linux-m68k.org>
32043         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
32044         "mpa2.h".
32045         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32047 2013-01-18  Joseph Myers  <joseph@codesourcery.com>
32048             Mark Mitchell  <mark@codesourcery.com>
32049             Tom de Vries  <tom@codesourcery.com>
32050             Paul Pluzhnikov  <ppluzhnikov@google.com>
32052         * debug/tst-backtrace2.c: New file.
32053         * debug/tst-backtrace3.c: Likewise.
32054         * debug/tst-backtrace4.c: Likewise.
32055         * debug/tst-backtrace5.c: Likewise.
32056         * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
32057         (CFLAGS-tst-backtrace3.c): Likewise.
32058         (CFLAGS-tst-backtrace4.c): Likewise.
32059         (CFLAGS-tst-backtrace5.c): Likewise.
32060         (LDFLAGS-tst-backtrace2): Likewise.
32061         (LDFLAGS-tst-backtrace3): Likewise.
32062         (LDFLAGS-tst-backtrace4): Likewise.
32063         (LDFLAGS-tst-backtrace5): Likewise.
32064         (tests): Add new tests tst-backtrace2, tst-backtrace3,
32065         tst-backtrace4 and tst-backtrace5.
32067 2013-01-18  Anton Blanchard  <anton@samba.org>
32068             Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
32070         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
32071         __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
32072         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
32073         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
32074         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
32075         (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
32076         "+r" and remove output regs list as redundant.  Add explicit inline
32077         asm to specify register of return val to work around compiler codegen
32078         bug.  Remove (int) cast on return value.  Add return type parameter to
32079         use in macro so that this macro does not truncate return value for
32080         64-bit values.
32081         (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
32082         pass to INTERNAL_VSYSCALL_NCS.
32083         (INLINE_VSYSCALL): Add 'long int' as return type to
32084         INTERNAL_VSYSCALL_NCS macro invocation.
32085         (INTERNAL_VSYSCALL): Add 'long int' as return type to
32086         INTERNAL_VSYSCALL_NCS macro invocation.
32087         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
32089 2013-01-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
32091         [BZ #14496]
32092         * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
32093         Fix application of SIMD FP exception mask.
32095         * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
32096         mp_no from a power of two.
32097         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
32098         __mpexp_twomm1.  Use __pow_mp.
32100         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
32101         multiplication.
32103 2013-01-17  David S. Miller  <davem@davemloft.net>
32105         * sysdeps/sparc/fpu/libm-test-ulps: Update.
32107 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
32109         [BZ #15023]
32110         * include/complex.h: Condition contents on [!_COMPLEX_H].
32111         (__kernel_casinhf): New prototype.
32112         (__kernel_casinh): Likewise.
32113         (__kernel_casinhl): Likewise.
32114         * math/Makefile (libm_calls): Add k_casinh.
32115         * math/k_casinh.c: New file.
32116         * math/k_casinhf.c: Likewise.
32117         * math/k_casinhl.c: Likewise.
32118         * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
32119         finite nonzero arguments.
32120         * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
32121         finite nonzero arguments.
32122         * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
32123         finite nonzero arguments.
32124         * math/s_casinh.c: Do not include <float.h>.
32125         (__casinh): Move code for finite nonzero arguments to k_casinh.c.
32126         * math/s_casinhf.c: Do not include <float.h>.
32127         (__casinhf): Move code for finite nonzero arguments to
32128         k_casinhf.c.
32129         * math/s_casinhl.c: Do not include <float.h>.
32130         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
32131         redefine.
32132         (__casinhl): Move code for finite nonzero arguments to
32133         k_casinhl.c.
32134         * math/libm-test.inc (cacos_test): Add more tests.
32135         * sysdeps/i386/fpu/libm-test-ulps: Update.
32136         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32138 2013-01-17  Pino Toscano  <toscano.pino@tiscali.it>
32140         * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
32141         * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
32142         [!HAVE_MREMAP]: Remove [defined linux] case.
32143         * malloc/arena.c: Do not include <malloc-sysdep.h>.
32145 2013-01-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
32147         * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
32149 2013-01-17  H.J. Lu  <hongjiu.lu@intel.com>
32151         * elf/elf.h (R_386_SIZE32): New relocation.
32152         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
32153         R_386_SIZE32.
32154         (elf_machine_rela): Likewise.
32155         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
32156         R_X86_64_SIZE64 and R_X86_64_SIZE32.
32158 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
32160         * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
32161         (FP_FAST_FMA): Do not define.
32162         [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
32163         * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
32164         && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
32165         * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
32166         !_SOFT_FLOAT]: Likewise.
32167         * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
32168         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
32169         value.
32170         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
32171         [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
32172         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
32173         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
32174         [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
32175         [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
32176         file.
32178 2013-01-16  Andreas Schwab  <schwab@suse.de>
32180         [BZ #14327]
32181         * include/stdlib.h (__mktemp): Add declaration.
32182         * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
32183         * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
32185 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
32187         * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
32188         definitions.
32189         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
32190         * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
32191         * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
32192         definitions here.
32193         * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
32194         * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
32195         definitions.
32196         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
32197         and ONE.
32198         * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
32199         * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
32200         * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
32201         definitions.
32202         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
32203         * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
32204         definitions.
32205         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
32207         * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
32209 2013-01-15  David S. Miller  <davem@davemloft.net>
32211         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
32212         trunc{,f} to libm-sysdep_routes.
32213         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
32214         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
32215         file.
32216         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
32217         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
32218         file.
32219         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
32220         file.
32221         * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
32222         * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
32223         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
32224         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
32225         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
32226         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
32227         * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
32228         * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
32230         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
32231         nearbyint{,f} to libm-sysdep_routes.
32232         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
32233         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
32234         New file.
32235         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
32236         file.
32237         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
32238         New file.
32239         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
32240         file.
32241         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
32242         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
32243         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
32244         file.
32245         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
32246         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
32247         file.
32248         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
32249         * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
32250         * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
32252         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
32253         libc_feholdexcept and libc_fesetenv.
32255 2013-01-15  Mike Frysinger  <vapier@gentoo.org>
32257         * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
32259 2013-01-14  David S. Miller  <davem@davemloft.net>
32261         * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
32262         (SPARC_ASM_VIS2_IFUNC): Likewise.
32263         (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
32264         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
32265         use of 'siam' instruction.
32266         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
32267         Likewise.
32268         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
32269         Likewise.
32270         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
32271         Likewise.
32272         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
32273         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
32274         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
32275         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
32276         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
32277         file.
32278         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
32279         file.
32280         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
32281         file.
32282         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
32283         file.
32284         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
32285         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
32286         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
32287         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
32288         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
32289         new VIS2 routines.
32290         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
32291         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
32292         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
32293         Likewise.
32294         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
32295         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
32296         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
32297         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
32298         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
32299         routines to libm-sysdep_routines.
32300         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
32302         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
32303         fdim/fdimf to libm-sysdep_routines.
32304         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
32305         file.
32306         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
32307         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
32308         file.
32309         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
32310         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
32311         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
32312         * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
32313         * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
32314         * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
32315         * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
32317 2013-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
32319         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
32320         to optimize copies.
32322         * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
32323         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
32324         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32326         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
32327         local variable MPTWO.
32328         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
32329         Likewise.
32331 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
32333         * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
32334         GLOB_NOESCAPE.
32336 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
32338         * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
32340 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
32342         * manual/pattern.texi (glob_t): Document gl_flags.
32343         (glob64_t): Likewise.
32345 2013-01-11  David S. Miller  <davem@davemloft.net>
32347         * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
32348         * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
32349         (gmp-sysdep_routines): New variable.  Add VIS3 optimized GMP routines.
32350         * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
32351         * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
32352         * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
32353         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
32354         * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
32355         * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
32356         * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
32357         * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
32358         * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
32359         * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
32361         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
32362         sparc V9 rather than using V8 code.
32363         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
32364         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
32366         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
32367         Move to...
32368         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
32369         Here.
32371 2013-01-11  Roland McGrath  <roland@hack.frob.com>
32373         * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
32374         not in the main loop.
32375         * configure: Regenerated.
32377 2013-01-11  Joseph Myers  <joseph@codesourcery.com>
32379         * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
32380         * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
32381         to just #else.
32382         * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise.  Remove
32383         [!__GLIBC_HAVE_LONG_LONG] case.
32384         * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
32385         condition to just #else.
32386         * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
32387         __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
32388         [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
32389         * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
32390         unconditional.
32391         * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
32392         * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
32393         #elif condition to just #else.
32394         * sysdeps/unix/sysv/linux/sys/sysmacros.h
32395         [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
32396         * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
32397         #elif condition to just #else.
32399 2013-01-11  Steve Ellcey  <sellcey@mips.com>
32401         * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
32402         (EF_MIPS_ARCH_64): Fix value.
32403         (EF_MIPS_ARCH_32R2): New.
32404         (EF_MIPS_ARCH_64R2): New.
32406 2013-01-11  H.J. Lu  <hongjiu.lu@intel.com>
32408         * Makeconfig (+link-pie-before-libc): New.
32409         (+link-pie-after-libc): Likewise.
32410         (+link-pie-tests): Likewise.
32411         (+link-pie): Rewritten.
32412         (link-before-libc): Remove $(config-LDFLAGS).
32413         (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
32414         (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
32415         (config-LDFLAGS): Renamed to ...
32416         (rtld-LDFLAGS): This.
32417         (rtld-tests-LDFLAGS): New macro.
32418         (link-libc-rpath-link): Likewise.
32419         (link-libc-tests-rpath-link): Likewise.
32420         (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
32421         (link-libc): Prepand $(link-libc-rpath-link).
32422         (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
32423         (test-program-prefix): New macro.
32424         (test-via-rtld-prefix): Likewise.
32425         (test-program-cmd): Likewise.
32426         (host-test-program-cmd): Likewise.
32427         * Makefile ($(common-objpfx)testrun.sh): Replace
32428         $(run-program-prefix) with $(test-program-prefix).
32429         * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
32430         $(rtld-LDFLAGS).
32431         ($(common-objpfx)shlib.lds): Likewise.
32432         (build-module-helper): Likewise.
32433         ($(common-objpfx)format.lds): Likewise.
32434         * Rules (binaries-pie-tests): New.
32435         (binaries-pie-notests): Likewise.
32436         (binaries-pie): Rewritten.
32437         ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
32438         ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
32439         ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
32440         (make-test-out): Replace $(host-built-program-cmd) with
32441         $(host-test-program-cmd).
32442         * config.make.in (build-hardcoded-path-in-tests): New variable.
32443         * configure.in (--enable-hardcoded-path-in-tests): New configure
32444         option.
32445         (hardcoded_path_in_tests): New AC_SUBST.
32446         * configure: Regenerated.
32447         * catgets/Makefile ($(objpfx)test-gencat.out): Replace
32448         $(built-program-cmd) with $(test-program-cmd).
32449         * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
32450         (test_program_cmd): This.
32451         * elf/Makefile ($(objpfx)order.out): Run test with
32452         $(test-program-prefix).
32453         ($(objpfx)order2.out): Likewise.
32454         ($(objpfx)tst-initorder.out): Likewise.
32455         ($(objpfx)tst-initorder2.out): Likewise.
32456         ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
32457         $(test-program-cmd).
32458         ($(objpfx)tst-array1-static.out): Likewise.
32459         ($(objpfx)tst-array2.out): Likewise.
32460         ($(objpfx)tst-array3.out): Likewise.
32461         ($(objpfx)tst-array4.out): Likewise.
32462         ($(objpfx)tst-array5.out): Likewise.
32463         ($(objpfx)tst-array5-static.out): Likewise.
32464         (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
32465         $(test-program-cmd).
32466         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
32467         $(run-program-prefix) with $(test-program-prefix).
32468         * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
32469         (test_program_prefix): This.
32470         * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
32471         $(run-program-prefix) with $(test-program-prefix).
32472         * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
32473         (test_program_prefix): This.
32474         * iconvdata/tst-tables.sh: Likewise.
32475         * intl/Makefile ($(objpfx)tst-gettext.out): Replace
32476         $(run-program-prefix) with $(test-program-prefix).
32477         ($(objpfx)tst-translit.out): Likewise.
32478         ($(objpfx)tst-gettext2.out): Likewise.
32479         ($(objpfx)tst-gettext4.out): Likewise.
32480         ($(objpfx)tst-gettext6.out): Likewise.
32481         * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
32482         (test_program_prefix): This.
32483         * intl/tst-gettext2.sh: Likewise.
32484         * intl/tst-gettext4.sh  Likewise.
32485         * intl/tst-gettext6.sh: Likewise.
32486         * intl/tst-translit.sh: Likewise.
32487         * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
32488         with $(test-program-cmd).
32489         * libio/Makefile ($(objpfx)test-freopen.out): Replace
32490         $(run-program-prefix) with $(test-program-prefix).
32491         * libio/test-freopen.sh (run_program_prefix): Renamed to ...
32492         (test_program_prefix): This.
32493         * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
32494         $(run-program-prefix) with $(test-program-prefix).
32495         * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
32496         (test_program_prefix): This.
32497         * manual/install.texi: Document --enable-hardcoded-path-in-tests.
32498         * posix/Makefile ($(objpfx)globtest.out): Replace
32499         $(run-via-rtld-prefix) and $(test-wrapper) with
32500         $(test-program-prefix) and $(test-via-rtld-prefix).
32501         ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
32502         $(test-program-prefix).
32503         (tst-exec-ARGS): Replace $(host-built-program-cmd) with
32504         $(host-test-program-cmd).
32505         (tst-spawn-ARGS): Likewise.
32506         ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
32507         $(test-program-prefix).
32508         * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
32509         (test_via_rtld_prefix): This.
32510         (test_wrapper): Renamed to ...
32511         (test_program_prefix): This.
32512         (run_program_prefix): Replaced by test_program_prefix.
32513         * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
32514         (test_program_prefix): This.
32515         * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
32516         with $(host-test-program-cmd).
32517         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
32518         $(run-program-prefix) with $(test-program-prefix).
32519         ($(objpfx)tst-printf.out): Likewise.
32520         ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
32521         $(test-program-cmd).
32522         * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
32523         (test_program_prefix): This.
32524         * stdio-common/tst-unbputc.sh: Likewise.
32525         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
32526         $(run-program-prefix) with $(test-program-prefix).
32527         * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
32528         (test_program_prefix): This.
32529         * string/Makefile ($(objpfx)tst-svc.out):  Replace
32530         $(built-program-cmd) with $(test-program-cmd).
32532 2013-01-11  Andreas Jaeger  <aj@suse.de>
32534         [BZ #15003]
32535         * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
32536         value. Sync with Linux 3.7.
32538 2013-01-10  David S. Miller  <davem@davemloft.net>
32540         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
32541         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
32542         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
32544 2013-01-10  Roland McGrath  <roland@hack.frob.com>
32546         * configure.in (sysnames): Drop use of $m0sub and $msub, which are
32547         never set.
32548         * configure: Regenerated.
32550 2013-01-10  David S. Miller  <davem@davemloft.net>
32552         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
32553         sparc V9 rather than using V8 code.
32554         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
32555         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
32557 2013-01-10  Roland McGrath  <roland@hack.frob.com>
32559         * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
32560         (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
32561         (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
32562         (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
32563         (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
32564         (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
32565         (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
32566         (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
32567         (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
32568         (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
32569         (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
32570         (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
32571         (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
32572         (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
32573         (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
32574         (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
32575         (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
32576         (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
32577         (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
32578         (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
32579         (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
32580         (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
32581         (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
32582         (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
32583         (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
32584         (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
32585         (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
32587 2013-01-10  David S. Miller  <davem@davemloft.net>
32589         * sysdeps/sparc/fpu/libm-test-ulps: Update.
32591 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
32593         * posix/Makefile (tests-static): New variable.
32594         (tests): Add $(tests-static).
32595         (tst-exec-static-ARGS): New variable.
32596         (tst-spawn-static-ARGS): Likewise.
32597         * posix/tst-exec-static.c: New file.
32598         * posix/tst-spawn-static.c: Likewise.
32599         * posix/tst-exec.c: Support run directly.
32600         * posix/tst-spawn.c: Likewise.
32602 2013-01-10  Joseph Myers  <joseph@codesourcery.com>
32604         * elf/link.h (struct dl_phdr_info): Use __extension__ with long
32605         long.
32606         * math/bits/mathcalls.h (llrint): Likewise.
32607         (llround): Likewise.
32608         * stdlib/stdlib.h (struct drand48_data): Likewise.
32609         * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
32610         * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
32611         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
32612         Likewise.
32613         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
32614         Likewise.
32615         * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
32616         (elf_greg_t): Likewise.
32617         * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
32618         (__jmp_buf): Likewise.
32619         * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
32620         definitions.
32621         (llrint): Likewise, for all definitions.
32622         (llrintl): Likewise.
32624         * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
32625         Remove [__GNUC__] condition.
32626         * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
32627         condition to just [__USE_ISOC99].
32628         [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
32630 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
32632         [BZ #14200]
32633         * sysdeps/unix/sysv/linux/x86/bits/environments.h
32634         (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
32635         defined.
32636         (_POSIX_V6_ILP32_OFF32): Likewise.
32637         (_XBS5_ILP32_OFF32): Likewise.
32638         (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
32639         (__ILP32_OFFBIG_LDFLAGS): Likewise.
32641 2013-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
32643         * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
32645         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
32646         doubles __mpexp_twomm1.  Adjust usage.
32647         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
32648         Remove.
32650 2013-01-10  Andreas Schwab  <schwab@suse.de>
32652         [BZ #14964]
32653         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
32654         (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
32656 2013-01-09  David S. Miller  <davem@davemloft.net>
32658         [BZ #15003]
32659         * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
32660         (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
32661         (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
32662         (TCP_FASTOPEN): Define.
32663         (tcp_repair_opt): New structure.
32664         (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
32665         enum values.
32666         (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
32667         (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
32668         (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
32669         (tcp_cookie_transactions): New structure.
32671 2013-01-09  Anton Blanchard  <anton@samba.org>
32673         * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
32674         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
32675         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
32676         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
32678 2013-01-09  Joseph Myers  <joseph@codesourcery.com>
32680         * include/features.h (__USE_ANSI): Remove.
32682 2013-01-09  Roland McGrath  <roland@hack.frob.com>
32684         * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
32686         * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
32688 2013-01-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
32690         * sysdeps/s390/fpu/libm-test-ulps: Update.
32692         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
32694         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
32695         (__acr): Likewise.
32696         (__cpy): Likewise.
32697         (norm): Likewise.
32698         (denorm): Likewise.
32699         (__mp_dbl): Likewise.
32700         (__dbl_mp): Likewise.
32701         (add_magnitudes): Likewise.
32702         (sub_magnitudes): Likewise.
32703         (__add): Likewise.
32704         (__sub): Likewise.
32705         (__mul): Likewise.
32706         (__inv): Likewise.
32707         (__dvd): Likewise.
32708         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
32709         (__acr): Likewise.
32710         (__cpy): Likewise.
32711         (norm): Likewise.
32712         (denorm): Likewise.
32713         (__mp_dbl): Likewise.
32714         (__dbl_mp): Likewise.
32715         (add_magnitudes): Likewise.
32716         (sub_magnitudes): Likewise.
32717         (__add): Likewise.
32718         (__sub): Likewise.
32719         (__mul): Likewise.
32720         (__inv): Likewise.
32721         (__dvd): Likewise.
32722         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
32723         (__acr): Likewise.
32724         (__cpy): Likewise.
32725         (norm): Likewise.
32726         (denorm): Likewise.
32727         (__mp_dbl): Likewise.
32728         (__dbl_mp): Likewise.
32729         (add_magnitudes): Likewise.
32730         (sub_magnitudes): Likewise.
32731         (__add): Likewise.
32732         (__sub): Likewise.
32733         (__mul): Likewise.
32734         (__inv): Likewise.
32735         (__dvd): Likewise.
32737 2013-01-08  Joseph Myers  <joseph@codesourcery.com>
32739         * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
32740         __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
32741         * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
32742         2 && __USE_EXTERN_INLINES]: Likewise.
32744 2013-01-08  Andreas Jaeger  <aj@suse.de>
32746         [BZ# 14985]
32747         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
32748         Remove.
32749         * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
32750         * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
32752 2013-01-07  Anton Blanchard  <anton@samba.org>
32754         * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
32755         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
32756         * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
32757         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
32758         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
32759         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
32760         * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
32761         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
32762         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
32763         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
32764         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
32765         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
32766         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
32767         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
32768         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
32769         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
32770         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
32771         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
32772         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
32773         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
32774         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
32775         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
32776         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
32777         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
32778         * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
32779         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
32780         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
32781         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
32782         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
32783         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
32784         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
32785         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32786         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
32787         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
32788         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
32789         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
32790         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
32791         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
32792         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
32793         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
32794         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
32795         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
32796         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
32798 2013-01-07  Joseph Myers  <joseph@codesourcery.com>
32800         * malloc/malloc.h (__MALLOC_P): Remove all definitions.
32801         (__MALLOC_PMT): Likewise.
32802         [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
32803         [__GNUC__], only on [_LIBC].
32804         [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
32805         [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
32806         [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
32807         * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
32808         forward declaration.
32809         (realloc_hook_ini): Likewise.
32810         (memalign_hook_ini): Likewise.
32811         (__libc_memalign): Do not use __MALLOC_PMT in variable
32812         declaration.
32813         (__libc_valloc): Likewise.
32814         (__libc_pvalloc): Likewise.
32815         (__libc_calloc): Likewise.
32816         (__posix_memalign): Likewise.
32818         [BZ #14996]
32819         * math/s_casinh.c: Include <float.h>.
32820         (__casinh): Do not do computation with squaring and square root
32821         for large arguments.
32822         * math/s_casinhf.c: Include <float.h>.
32823         (__casinhf): Do not do computation with squaring and square root
32824         for large arguments.
32825         * math/s_casinhl.c: Include <float.h>.
32826         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
32827         (__casinhl): Do not do computation with squaring and square root
32828         for large arguments.
32829         * math/libm-test.inc (casin_test): Add more tests.
32830         (casinh_test): Likewise.
32831         * sysdeps/i386/fpu/libm-test-ulps: Update.
32832         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32834 2013-01-04  H.J. Lu  <hongjiu.lu@intel.com>
32836         * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
32837         (__x86_64_raw_data_cache_size): Likewise.
32838         (__x86_64_data_cache_size_half): Likewise.
32839         (__x86_64_raw_data_cache_size_half): Likewise.
32840         (__x86_64_shared_cache_size): Likewise.
32841         (__x86_64_raw_shared_cache_size): Likewise.
32842         (__x86_64_shared_cache_size_half): Likewise.
32843         (__x86_64_raw_shared_cache_size_half): Likewise.
32844         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
32845         to ...
32846         (__x86_data_cache_size): This.
32847         (__x86_64_raw_data_cache_size): Renamed to ...
32848         (__x86_raw_data_cache_size): This.
32849         (__x86_64_data_cache_size_half): Renamed to ...
32850         (__x86_data_cache_size_half): This.
32851         (__x86_64_raw_data_cache_size_half): Renamed to ...
32852         (__x86_raw_data_cache_size_half): This.
32853         (__x86_64_shared_cache_size): Renamed to ...
32854         (__x86_shared_cache_size): This.
32855         (__x86_64_raw_shared_cache_size): Renamed to ...
32856         (__x86_raw_shared_cache_size): This.
32857         (__x86_64_shared_cache_size_half): Renamed to ...
32858         (__x86_shared_cache_size_half): This.
32859         (__x86_64_raw_shared_cache_size_half): Renamed to ...
32860         (__x86_raw_shared_cache_size_half): This.
32861         * sysdeps/x86_64/memcpy.S: Updated.
32862         * sysdeps/x86_64/memset.S: Likewise.
32863         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
32864         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
32865         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
32867 2013-01-04  David S. Miller  <davem@davemloft.net>
32869         * sysdeps/sparc/fpu/libm-test-ulps: Update.
32871 2013-01-04  Andreas Schwab  <schwab@linux-m68k.org>
32873         * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
32874         1 to avoid redefinition warning.
32875         (__USE_GNU): Don't define.
32876         (init_signaling_nan): Protoize.
32878         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
32880 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
32882         * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
32883         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
32884         (__cpymn): Likewise.
32885         (norm): Remove commented code.
32886         (denorm): Likewise.
32887         (__mp_dbl): Likewise.
32888         (__inv): Likewise.
32889         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
32890         (__cpymn): Likewise.
32891         (norm): Remove commented code.
32892         (denorm): Likewise.
32893         (__mp_dbl): Likewise.
32894         (__inv): Likewise.
32896         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
32897         mp_no value for 1.0 and 2.0.
32898         (norm): Use RADIXI instead of radixi.d.
32899         (denorm): Likewise.
32900         (__mul): Use 0.0 instead of zero.d.
32901         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
32902         mp_no value for 1.0 and 2.0.
32903         (norm): Use RADIXI instead of radixi.d.
32904         (denorm): Likewise.
32905         (__mul): Use 0.0 instead of zero.d.
32907 2013-01-04  Joseph Myers  <joseph@codesourcery.com>
32909         [BZ #14994]
32910         * math/s_casinh.c (__casinh): Reduce finite argument to first
32911         quadrant then set signs of results at the end.
32912         * math/s_casinhf.c (__casinhf): Likewise.
32913         * math/s_casinhl.c (__casinhl): Likewise.
32914         * math/libm-test.inc (casin_test): Add more tests.
32915         (casinh_test): Likewise.
32916         * sysdeps/i386/fpu/libm-test-ulps: Update.
32917         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32919 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
32921         * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
32923         * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
32925         * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
32926         declarations.
32927         (denorm): Likewise.
32928         (__mp_dbl): Likewise.
32929         (__inv): Likewise.
32931         * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
32932         and adjust the header comment.
32934         * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
32935         variable name from declaration.
32937 2013-01-03  H.J. Lu  <hongjiu.lu@intel.com>
32939         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
32940         Initialize COMMON_CPUID_INDEX_7 element.
32941         * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
32942         (CPUID_RTM): Likewise.
32943         (HAS_RTM): Likewise.
32944         (COMMON_CPUID_INDEX_7): New enum.
32946 2013-01-03  Andreas Schwab  <schwab@linux-m68k.org>
32948         [BZ #14981]
32949         * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
32950         size is zero, record memory as freed.
32952 2013-01-03  Andreas Jaeger  <aj@suse.de>
32954         * po/ia.po: Add new Interlingua translation.
32956 2012-01-03  Allan McRae  <allan@archlinux.org>
32958         * locale/programs/localedef.c: Fix description of '--posix' flag.
32960 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
32962         * NEWS: Update dates in second copyright notice.
32963         * README: Update copyright dates in example.
32964         * manual/libc.texinfo: Update copyright dates.
32965         * scripts/test-installation.pl: Update copyright date in --version
32966         output.
32968         * hurd/ctty-input.c: Fix copyright notice formatting.
32969         * hurd/ctty-output.c: Likewise.
32970         * hurd/dtable.c: Likewise.
32971         * hurd/hurd-raise.c: Likewise.
32972         * hurd/hurdprio.c: Likewise.
32973         * hurd/msgportdemux.c: Likewise.
32974         * misc/sys/file.h: Likewise.
32975         * misc/sys/ioctl.h: Likewise.
32976         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
32977         * sysdeps/mach/hurd/chdir.c: Likewise.
32978         * sysdeps/mach/hurd/fchdir.c: Likewise.
32979         * sysdeps/mach/hurd/rename.c: Likewise.
32980         * sysdeps/mach/hurd/rmdir.c: Likewise.
32981         * sysdeps/mach/hurd/seekdir.c: Likewise.
32982         * sysdeps/mach/hurd/setsid.c: Likewise.
32983         * sysdeps/posix/wait3.c: Likewise.
32985         * All files with FSF copyright notices: Update copyright dates
32986         using scripts/update-copyrights.
32987         * intl/plural.c: Regenerated.
32988         * locale/programs/charmap-kw.h: Likewise.
32989         * locale/programs/locfile-kw.h: Likewise.
32991 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
32993         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
32994         four values.
32996         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
32997         calculation loop and add branch prediction.
32999         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
33000         check access beyond bounds of m1np.
33002         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
33003         MPTWO.
33004         (__inv): Remove local variable MPTWO to use the global
33005         constant.
33006         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
33007         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
33008         variable MPTWO.
33009         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
33010         MP3HALFS static const.
33012 2013-01-01  David S. Miller  <davem@davemloft.net>
33014         * po/ca.po: Update from translation team.
33016 2013-01-01  Joseph Myers  <joseph@codesourcery.com>
33018         * scripts/update-copyrights: New file.
33019         * Makeconfig: Reformat copyright notice.
33020         * ctype/ctype.h: Likewise.
33021         * debug/swprintf_chk.c: Likewise.
33022         * elf/dl-cache.c: Likewise.
33023         * elf/dl-debug.c: Likewise.
33024         * elf/dl-object.c: Likewise.
33025         * grp/initgroups.c: Likewise.
33026         * hurd/Makefile: Likewise.
33027         * hurd/hurd/signal.h: Likewise.
33028         * hurd/hurdfault.c: Likewise.
33029         * hurd/hurdioctl.c: Likewise.
33030         * hurd/hurdlookup.c: Likewise.
33031         * hurd/intr-msg.c: Likewise.
33032         * iconv/gconv_open.c: Likewise.
33033         * libio/swprintf.c: Likewise.
33034         * locale/lc-ctype.c: Likewise.
33035         * locale/nl_langinfo.c: Likewise.
33036         * mach/Machrules: Likewise.
33037         * mach/Makefile: Likewise.
33038         * malloc/obstack.h: Likewise.
33039         * manual/Makefile: Likewise.
33040         * manual/tsort.awk: Likewise.
33041         * misc/bits/stab.def: Likewise.
33042         * nis/nis_print_group_entry.c: Likewise.
33043         * nis/nis_table.c: Likewise.
33044         * nis/nss_compat/compat-pwd.c: Likewise.
33045         * nis/nss_compat/compat-spwd.c: Likewise.
33046         * po/Makefile: Likewise.
33047         * posix/fnmatch.c: Likewise.
33048         * posix/regex.h: Likewise.
33049         * resolv/Makefile: Likewise.
33050         * resolv/nss_dns/dns-network.c: Likewise.
33051         * resolv/res_hconf.c: Likewise.
33052         * scripts/gen-sorted.awk: Likewise.
33053         * soft-fp/soft-fp.h: Likewise.
33054         * stdio-common/printf.h: Likewise.
33055         * stdlib/monetary.h: Likewise.
33056         * stdlib/random.c: Likewise.
33057         * stdlib/random_r.c: Likewise.
33058         * sysdeps/generic/Makefile: Likewise.
33059         * sysdeps/gnu/Makefile: Likewise.
33060         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
33061         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
33062         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
33063         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
33064         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
33065         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
33066         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
33067         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
33068         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
33069         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
33070         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
33071         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
33072         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
33073         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
33074         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
33075         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
33076         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
33077         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
33078         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
33079         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
33080         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
33081         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
33082         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
33083         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
33084         * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
33085         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
33086         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
33087         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
33088         * sysdeps/mach/hurd/errnos.awk: Likewise.
33089         * sysdeps/mach/hurd/fork.c: Likewise.
33090         * sysdeps/mach/hurd/getcwd.c: Likewise.
33091         * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
33092         * sysdeps/mach/hurd/mmap.c: Likewise.
33093         * sysdeps/mach/hurd/utimes.c: Likewise.
33094         * sysdeps/mach/hurd/xmknod.c: Likewise.
33095         * sysdeps/posix/profil.c: Likewise.
33096         * sysdeps/posix/readdir_r.c: Likewise.
33097         * sysdeps/powerpc/bits/mathdef.h: Likewise.
33098         * sysdeps/powerpc/bits/setjmp.h: Likewise.
33099         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
33100         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
33101         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
33102         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
33103         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
33104         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
33105         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
33106         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
33107         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
33108         * sysdeps/pthread/lio_listio.c: Likewise.
33109         * sysdeps/sparc/dl-procinfo.h: Likewise.
33110         * sysdeps/unix/i386/sysdep.S: Likewise.
33111         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
33112         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
33113         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
33114         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
33115         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
33116         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
33117         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
33118         * sysdeps/unix/sysv/linux/speed.c: Likewise.
33119         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
33120         * sysdeps/wordsize-32/divdi3.c: Likewise.
33121         * time/sys/time.h: Likewise.
33122         * wcsmbs/Makefile: Likewise.
33124 2013-01-01  David S. Miller  <davem@davemloft.net>
33126         * po/fr.po: Update from translation team.
33128         * catgets/gencat.c: Update copyright year.
33129         * csu/version.c: Likewise.
33130         * debug/catchsegv.sh: Likewise.
33131         * debug/pcprofiledump.c: Likewise.
33132         * debug/xtrace.sh: Likewise.
33133         * elf/ldconfig.c: Likewise.
33134         * elf/ldd.bash.in: Likewise.
33135         * elf/pldd.c: Likewise.
33136         * elf/sotruss.ksh: Likewise.
33137         * elf/sprof.c: Likewise.
33138         * iconv/iconv_prog.c: Likewise.
33139         * iconv/iconvconfig.c: Likewise.
33140         * locale/programs/locale.c: Likewise.
33141         * locale/programs/localedef.c: Likewise.
33142         * login/programs/pt_chown.c: Likewise.
33143         * malloc/memusage.sh: Likewise.
33144         * malloc/memusagestat.c: Likewise.
33145         * malloc/mtrace.pl: Likewise.
33146         * nscd/nscd.c: Likewise.
33147         * nss/getent.c: Likewise.
33148         * nss/makedb.c: Likewise.
33149         * posix/getconf.c: Likewise.
33151 2012-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
33153         * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
33154         numbers.
33156 2012-12-30  Mike Frysinger  <vapier@gentoo.org>
33158         * math/bits/mathcalls.h (modf): Use __nonnull.
33160 2012-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
33162         * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
33163         (split): Use macro CN instead of the bare value.
33164         * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
33165         could be used.
33166         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
33167         instead of the bare value.
33168         (power1): Likewise.
33170 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
33172         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
33173         __ATAN_TWOM.
33174         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
33176         * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
33177         their values.
33178         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
33179         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
33180         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
33181         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
33183 2012-12-28  Andreas Jaeger  <aj@suse.de>
33185         * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define.  New
33186         values are from Linux 3.7.
33188         * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
33189         (TCPI_OPT_ECN_SEEN): Define.  Sync with Linux 3.7.
33191 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
33193         * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
33194         TRUE case.
33196         * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
33197         (norm): Likewise.
33198         * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
33199         variables with preprocessor constants.
33200         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
33201         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
33202         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
33204 2012-12-27  Bruno Haible  <bruno@clisp.org>
33206         [BZ #14317]
33207         * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
33208         only if needed.
33210 2012-12-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
33212         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
33213         and use variable directly.
33214         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
33216         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
33217         MPONE.
33218         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
33219         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
33220         variable MPONE.
33221         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
33222         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
33223         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
33224         include directive.  Remove local variable MPONE.
33225         * sysdeps/ieee754/dbl-64/mplog.h: Remove.
33226         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
33227         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
33229 2012-12-25  David S. Miller  <davem@davemloft.net>
33231         * version.h (RELEASE): Set to "development".
33232         (VERSION): Set to "2.17.90".
33233         * NEWS: Add 2.18 section.
33235 2012-12-21  David S. Miller  <davem@davemloft.net>
33237         * po/hr.po: Update from translation team.
33239 2012-12-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33241         * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
33243 2012-12-19  Steve Ellcey  <sellcey@mips.com>
33245         * NEWS:  Mention new memcpy for MIPS.
33247 2012-12-18  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
33249         * manual/contrib.texi (Contributors): Spelling correction.
33251 2012-12-15  David S. Miller  <davem@davemloft.net>
33253         * po/ru.po: Update from translation team.
33255 2012-12-13  David S. Miller  <davem@davemloft.net>
33257         * NEWS: Mention IFUNC testsuite enhancements.
33259         * po/pl.po: Update from translation team.
33260         * po/bg.po: Likewise.
33262         * manual/contrib.texi (Contributors): Update entries for Hongjiu
33263         Lu and Joseph S. Myers.  Add entry for Marcus Shawcroft.
33265 2012-12-11  David S. Miller  <davem@davemloft.net>
33267         * po/sv.po: Update from translation team.
33269         * po/vi.po: Update from translation team.
33271         * po/cs.po: Update from translation team.
33273         * po/de.po: Update from translation team.
33274         * po/eo.po: Likewise.
33275         * po/nl.po: Likewise.
33277 2012-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
33279         [BZ #14246]
33280         * manual/argp.texi (Argp Helper Functions): Move node to follow
33281         Argp Parsing State.
33283         [BZ #14872]
33284         * manual/conf.texi (Limits on File System Capacity): Mention if
33285         terminating null is included in the max size.
33287 2012-12-10  Andreas Jaeger  <aj@suse.de>
33289         * po/cs.po: Update from translation team.
33291 2012-12-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
33293         * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
33294         void pointer and cast to uintptr_t.
33295         * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
33296         path.
33297         * sysdeps/s390/s390-64/memcpy.S: Likewise.
33298         * sysdeps/s390/s390-64/memset.S: Likewise.
33300 2012-12-08  Benno Schulenberg  <bensberg@justemail.net>
33302         [BZ #14833]
33303         * menual/message.texi (Message Translation): Fix typos.
33304         (Helper programs for gettext): Likewise.
33306 2012-12-07  Andreas Schwab  <schwab@linux-m68k.org>
33308         [BZ #14898]
33309         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
33310         Change to -1.
33312 2012-12-07  David S. Miller  <davem@davemloft.net>
33314         * po/libc.pot: Update.
33316 2012-12-07  Richard Henderson  <rth@redhat.com>
33318         [BZ #10114]
33319         * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
33320         normal/normal case to before the switch.
33321         (_FP_DIV): Likewise.
33323 2012-12-06  Carlos O'Donell  <carlos@systemhalted.org>
33324             Mike Frysinger  <vapier@gentoo.org>
33326         * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
33327         check for __NR_fadvise64_64.
33329 2012-12-06  Chris Metcalf  <cmetcalf@tilera.com>
33331         * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
33332         0, not just to plain "0" as a statement.
33333         (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
33334         with cw.
33336 2012-12-06  Joseph Myers  <joseph@codesourcery.com>
33338         * NEWS: Use sourceware.org in Bugzilla URL.
33340 2012-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
33342         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
33343         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
33345         * stdio-common/tst-put-error.c (do_test): Add newline to the
33346         padded test to ensure flush.
33348 2012-12-05  Jeff Law  <law@redhat.com>
33350         * sunrpc/etc.rpc (fedfs_admin): Add entry.
33352 2012-12-05  Joseph Myers  <joseph@codesourcery.com>
33354         * README: Don't refer to ports add-on as distributed separately.
33355         Mention AArch64 in list of systems supported in the ports add-on.
33357         * LICENSES: Add more non-FSF copyright and license notices.
33359         * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
33360         ((unused)).
33362         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
33364         * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
33365         10000 as width of padded output.
33367 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
33369         * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
33371         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
33372         variable LX with __attribute__ ((unused)).
33373         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
33374         Likewise.
33375         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
33376         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
33377         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
33378         with __attribute__ ((unused)).
33380 2012-12-04  David S. Miller  <davem@abraco.davemloft.net>
33382         * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
33384 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
33386         * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
33387         (CFLAGS-nldbl-acos.c): New variable.
33388         [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
33389         [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
33390         [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
33391         [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
33392         [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
33393         [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
33394         [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
33395         [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
33396         [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
33397         [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
33398         [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
33399         [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
33400         [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
33401         [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
33402         [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
33403         [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
33404         [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
33405         [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
33406         [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
33407         [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
33408         [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
33409         [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
33410         [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
33411         [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
33412         [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
33413         [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
33414         [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
33415         [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
33416         [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
33417         [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
33418         [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
33419         [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
33420         [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
33421         [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
33422         [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
33423         [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
33424         [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
33425         [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
33426         [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
33427         [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
33428         [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
33429         [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
33430         [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
33431         [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
33432         [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
33433         [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
33434         [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
33435         [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
33436         [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
33437         [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
33438         [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
33439         [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
33440         [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
33441         [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
33442         [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
33443         [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
33444         [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
33445         [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
33446         [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
33447         [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
33448         [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
33449         [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
33450         [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
33451         [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
33452         [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
33453         [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
33454         [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
33455         [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
33456         [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
33457         [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
33458         [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
33459         [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
33460         [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
33461         [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
33462         [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
33463         [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
33464         [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
33465         [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
33466         [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
33467         [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
33468         [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
33469         [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
33470         [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
33471         [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
33472         [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
33473         [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
33474         [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
33475         [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
33476         [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
33477         [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
33478         [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
33479         [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
33480         [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
33481         [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
33482         [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
33483         [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
33484         [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
33486         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
33487         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
33489         [BZ #14914]
33490         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
33491         whole low double instead of just low 47 bits when splitting values
33492         into two parts.
33494 2012-12-03  Allan McRae  <allan@archlinux.org>
33496         * manual/stdio.texi (Predefined Printf Handlers): Remove
33497         @hsep and @vsep usage.
33499 2012-12-03  Mike Frysinger  <vapier@gentoo.org>
33501         * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
33502         * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
33504 2012-12-03  Jeff Law  <law@redhat.com>
33506         * time/sys/time.h (settimeofday): Do not mark TV argument
33507         as __nonnull.
33509 2012-12-01  Mike Frysinger  <vapier@gentoo.org>
33511         * libio/fileops.c (_IO_new_file_close_it): Do not always flush
33512         when currently writing and seek to current position when not.
33513         * libio/Makefile (tests): Remove bug-fclose1.
33514         * libio/bug-fclose1.c: Delete.
33516 2012-12-01  Joseph Myers  <joseph@codesourcery.com>
33518         * manual/arith.texi (feenableexcept): Fix typo.
33519         (fedisableexcept): Likewise.
33521 2012-11-30  Roland McGrath  <roland@hack.frob.com>
33523         * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
33524         second, differently-typed declaration, rather than a cast.
33526 2012-11-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
33528         * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
33529         * include/rpc/svc.h: ... here.
33531 2012-11-30  Aurelien Jarno  <aurel32@debian.org>
33533         [BZ #13013]
33534         * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
33535         depending n and resplen2 to catch cases where answer
33536         equals answerp2.
33538 2012-11-29  Carlos O'Donell  <carlos@systemhalted.org>
33540         * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
33541         for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
33543 2012-11-29  Mike Frysinger  <vapier@gentoo.org>
33545         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
33547 2012-11-29  Roland McGrath  <roland@hack.frob.com>
33549         * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
33551 2012-11-28  Jeff Law  <law@redhat.com>
33553         [BZ #13761]
33554         * nscd/grpcache.c (cache_addgr): Rename alloca_used to
33555         dataset_temporary.  Track alloca usage into alloca_used.
33556         If dataset is large allocate and release it via malloc/free.
33558 2012-06-04  Florian Weimer  <fweimer@redhat.com>
33560         [BZ #14197]
33561         * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
33563 2012-11-28  David S. Miller  <davem@davemloft.net>
33565         * sysdeps/sparc/fpu/libm-test-ulps: Update.
33567 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
33569         [BZ #14803]
33570         * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
33571         of pi/2 rounded to nearest to 64 bits.
33572         (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
33573         nearest to 64 bits.
33574         (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
33575         bits.
33577 2012-11-28  Jeff Law <law@redhat.com>
33578             Martin Osvald <mosvald@redhat.com>
33580         [BZ #14889]
33581         * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
33582         * sunrpc/svc.c: Include time.h.
33583         (__svc_accept_failed): New function.
33584         * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
33585         any reason other than EINTR, call __svc_accept_failed.
33586         * sunrpc/svc_udp.c (svcudp_recv): Similarly.
33587         * sunrpc/svc_unix.c (rendezvous_request): Similarly.
33589 2012-11-28  Andreas Schwab  <schwab@suse.de>
33591         * scripts/abilist.awk: Also handle indirect functions in .opd
33592         section.
33594 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
33596         [BZ #13881]
33597         * sysdeps/x86/fpu/powl_helper.c: New file.
33598         * sysdeps/x86/fpu/Makefile: Likewise.
33599         * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
33600         (p3): New object.
33601         (__ieee754_powl): Use __powl_helper for finite arguments except
33602         integer exponents below 8.
33603         * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
33604         (p3): New object.
33605         (__ieee754_powl): Use __powl_helper for finite arguments except
33606         integer exponents below 8.
33607         * math/libm-test.inc (pow_test): Add more tests and enable some
33608         previously disabled tests.
33609         * sysdeps/i386/fpu/libm-test-ulps: Update.
33610         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
33612 2012-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
33613             Carlos O'Donell  <carlos_odonell@mentor.com>
33615         * nss/makedb.c (is_prime): Assert that input is odd and greater
33616         than 4.  Note that fact in a comment too.
33617         (next_prime): Add 4 to input.
33619 2012-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
33621         [BZ #11741]
33622         * libio/Makefile (tests): Add test case tst-fwrite-error.
33623         * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
33624         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
33625         * libio/tst-fwrite-error.c: New test case.
33627 2012-11-26  H.J. Lu  <hongjiu.lu@intel.com>
33629         * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
33630         before casting to void *.
33631         * include/libc-internal.h (__pointer_type): New macro.
33632         (__integer_if_pointer_type_sub): Likewise.
33633         (__integer_if_pointer_type): Likewise.
33634         (cast_to_integer): Likewise.
33635         * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
33636         (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
33637         before casting to atomic64_t.
33638         (atomic_exchange_acq): Likewise.
33639         (__arch_exchange_and_add_body): Likewise.
33640         (__arch_add_body): Likewise.
33641         (atomic_add_negative): Likewise.
33642         (atomic_add_zero): Likewise.
33644 2012-11-26  Joseph Myers  <joseph@codesourcery.com>
33646         * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
33647         (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
33648         (add_fdes): Likewise.
33649         (linear_search_fdes): Likewise.
33650         (binary_search_unencoded_fdes): Likewise.
33652 2012-11-26  Andreas Schwab  <schwab@linux-m68k.org>
33654         * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
33656 2012-11-24  Adam Conrad  <adconrad@0c3.net>
33658         * configure.in: Autodetect C++ header directories.
33659         * configure: Regenerated.
33661 2012-11-23  Mike Frysinger  <vapier@gentoo.org>
33663         * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
33665 2012-11-23  Andreas Schwab  <schwab@linux-m68k.org>
33667         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
33669 2012-11-22  Joseph Myers  <joseph@codesourcery.com>
33671         * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
33672         LDBL_MANT_DIG == 106]: Disable some tests.
33673         (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
33674         Likewise.
33675         (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
33676         Likewise.
33678         [BZ #14871]
33679         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
33680         input for small inputs.  Return +/- pi/2 for large inputs.
33681         * math/libm-test.inc (atan_test): Add more tests.
33683         * sysdeps/generic/unwind-dw2-fde-glibc.c
33684         (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
33685         __attribute__ ((unused)).
33687         [BZ #14645]
33688         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
33689         x * y if x and y are nonzero and z is zero.
33691         [BZ #14811]
33692         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
33693         nonzero exponents with absolute value below 0x1p-117 to +/-
33694         0x1p-117.
33696         [BZ #14869]
33697         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
33698         up arguments below 2**-450, not just those below 2**-500.
33699         * math/libm-test.inc (hypot_test): Add another test.
33701         [BZ #14868]
33702         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
33703         Return a+b for ratio over 2**120, not 2**60.
33704         * math/libm-test.inc (hypot_test): Add another test.
33706         * math/libm-test.inc (clog_test): Use
33707         UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
33708         (clog10_test): Likewise.
33710         [BZ #6778]
33711         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
33713 2012-11-22  Andreas Schwab  <schwab@suse.de>
33715         * sysdeps/i386/fpu/libm-test-ulps: Update.
33717 2012-11-22  Pino Toscano  <toscano.pino@tiscali.it>
33719         * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
33720         printf output with newline.
33722 2012-11-21  H.J. Lu  <hongjiu.lu@intel.com>
33724         [BZ #14865]
33725         * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
33726         * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
33727         -z nodlopen, -z initfirst and -z execstack support.
33728         * configure: Regenerated.
33730         * elf/elf.h (DF_1_NODIRECT): New macro.
33731         (DF_1_IGNMULDEF): Likewise.
33732         (DF_1_NOKSYMS): Likewise.
33733         (DF_1_NOHDR): Likewise.
33734         (DF_1_EDITED): Likewise.
33735         (DF_1_NORELOC): Likewise.
33736         (DF_1_SYMINTPOSE): Likewise.
33737         (DF_1_GLOBAUDIT): Likewise.
33738         (DF_1_SINGLETON): Likewise.
33739         * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
33740         DT_1_SUPPORTED_MASK bits.
33741         * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
33743 2012-11-20  Carlos O'Donell  <carlos_odonell@mentor.com>
33745         * sysdeps/unix/make-syscalls.sh: Document prefixes.
33747 2012-11-20  Thomas Schwinge  <thomas@codesourcery.com>
33749         * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
33750         macro.
33752         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
33753         (sendmmsg): Move declarations...
33754         * socket/sys/socket.h: ... here.
33755         * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
33756         !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
33757         include it from...
33758         * socket/recvmmsg.c: ... this new file.
33759         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
33760         (sendmmsg): Rename to __sendmmsg, create weak alias and make
33761         definition of __sendmmsg hidden.
33762         * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
33763         [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
33764         Move ENOSYS stub into and include it from...
33765         * socket/sendmmsg.c: ... this new file.
33766         * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
33767         (sysdep_routines): Move recvmmsg and sendmmsg...
33768         * socket/Makefile (routines): ... here.
33769         * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
33770         (GLIBC_PRIVATE): Add __sendmmsg.
33771         * include/sys/socket.h (__sendmmsg): Add declarations.
33772         * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
33773         sendmmsg.
33775 2012-11-20  Joseph Myers  <joseph@codesourcery.com>
33777         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
33778         variable I1 with __attribute__ ((unused)).
33779         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
33781 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
33783         * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
33784         DUMMY variables with __attribute__ ((unused)).
33786         * bits/byteswap.h: Include <bits/types.h>.
33787         (__bswap_64): Use __uint64_t instead of unsigned long long int.
33789 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
33791         * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
33792         string_t.  Do not manually set errno.
33793         (__ptsname_r): Change the type of PEERNAME to string_t, and check its
33794         length with __strnlen.  Make sure to both set errno and return it on
33795         failure.
33797 2012-11-19  David S. Miller  <davem@davemloft.net>
33799         With help from Joseph Myers.
33800         * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
33801         very large arguments properly.
33802         * math/libm-test.inc (atan_test): New tests.
33803         (atan2_test): New tests.
33804         * sysdeps/sparc/fpu/libm-test-ulps: Update.
33805         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
33807 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
33809         [BZ #14856]
33810         * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
33811         Define to 3.
33813         * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
33814         [POSIX] (EADDRNOTAVAIL): Likewise.
33815         [POSIX] (EAFNOSUPPORT): Likewise.
33816         [POSIX] (EALREADY): Likewise.
33817         [POSIX] (ECONNABORTED): Likewise.
33818         [POSIX] (ECONNREFUSED): Likewise.
33819         [POSIX] (ECONNRESET): Likewise.
33820         [POSIX] (EDESTADDRREQ): Likewise.
33821         [POSIX] (EDQUOT): Likewise.
33822         [POSIX] (EHOSTUNREACH): Likewise.
33823         [POSIX] (EIDRM): Likewise.
33824         [POSIX] (EISCONN): Likewise.
33825         [POSIX] (ELOOP): Likewise.
33826         [POSIX] (EMULTIHOP): Likewise.
33827         [POSIX] (ENETDOWN): Likewise.
33828         [POSIX] (ENETUNREACH): Likewise.
33829         [POSIX] (ENOBUFS): Likewise.
33830         [POSIX] (ENODATA): Likewise.
33831         [POSIX] (ENOLINK): Likewise.
33832         [POSIX] (ENOMSG): Likewise.
33833         [POSIX] (ENOPROTOOPT): Likewise.
33834         [POSIX] (ENOSR): Likewise.
33835         [POSIX] (ENOSTR): Likewise.
33836         [POSIX] (ENOTCONN): Likewise.
33837         [POSIX] (ENOTSOCK): Likewise.
33838         [POSIX] (EOPNOTSUPP): Likewise.
33839         [POSIX] (EOVERFLOW): Likewise.
33840         [POSIX] (EPROTO): Likewise.
33841         [POSIX] (EPROTONOSUPPORT): Likewise.
33842         [POSIX] (EPROTOTYPE): Likewise.
33843         [POSIX] (ESTALE): Likewise.
33844         [POSIX] (ETIME): Likewise.
33845         [POSIX] (ETXTBSY): Likewise.
33846         [POSIX] (EWOULDBLOCK): Likewise.
33847         [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
33848         * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
33849         [POSIX] (SEEK_CUR): Likewise.
33850         [POSIX] (SEEK_END): Likewise.
33851         [POSIX || UNIX98] (mode_t): Do not require.
33852         [POSIX] (off_t): Likewise.
33853         [POSIX] (pid_t): Likewise.
33854         [POSIX] (sys/stat.h): Do not allow header.
33855         [POSIX] (unistd.h): Likewise.
33856         [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
33857         [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
33858         [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
33859         * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
33860         require.
33861         * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
33862         sigevent): Specify elements.
33863         [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
33864         entry.
33865         [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
33866         [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
33868         * conform/data/cpio.h-data [POSIX]: Disable whole file.
33869         * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
33870         * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
33871         (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
33872         [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
33873         [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
33874         [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
33875         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
33876         [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
33877         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
33878         [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
33879         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
33880         [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
33881         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
33882         Likewise.
33883         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
33884         Likewise.
33885         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
33886         Likewise.
33887         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
33888         Likewise.
33889         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
33890         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
33891         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
33892         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
33893         [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
33894         Specify lower bound on value.
33895         [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
33896         [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
33897         [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
33898         [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
33899         [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
33900         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
33901         [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
33902         [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
33903         value.
33904         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
33905         as optional.
33906         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
33907         [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
33908         [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
33909         [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
33910         [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
33911         [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
33912         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
33913         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
33914         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
33915         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
33916         [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
33917         [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
33918         [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
33919         [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
33920         [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
33921         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
33922         entry.
33923         [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
33924         optional.
33925         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
33926         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
33927         [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
33928         [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
33929         [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
33930         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
33931         Likewise.
33932         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
33933         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
33934         [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
33935         [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
33936         [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise.  Give
33937         value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
33938         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
33939         as optional.
33940         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
33941         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
33942         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
33943         [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
33944         Likewise.  Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
33945         [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
33946         specify as optional.
33947         [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
33948         [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
33949         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
33950         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
33951         [POSIX || XPG3] (NL_ARGMAX): Do not allow.
33952         [XPG3] (NL_LANGMAX): Likewise.
33953         [POSIX || XPG3] (NL_MSGMAX): Likewise.
33954         [POSIX || XPG3] (NL_NMAX): Likewise.
33955         [POSIX || XPG3] (NL_SETMAX): Likewise.
33956         [POSIX || XPG3] (NL_TEXTMAX): Likewise.
33957         [XPG3] (NZERO): Likewise.
33958         [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
33959         [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
33960         [!ISO && !ISO99 && !ISO11] (*_t): Allow.
33961         * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
33962         (REG_ERANGE): Expect.
33963         * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
33964         optional-constant.
33965         [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
33966         Use (void) in prototype.
33967         [POSIX] (*_t): Allow.
33968         * conform/data/sys/times.h-data [POSIX]: Enable whole file.
33969         * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
33970         (WRDE_BADVAL): Expect.
33972         * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
33973         expect.
33974         [XPG3 || XPG4] (O_RSYNC): Likewise.
33975         * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
33976         Likewise.
33977         [XPG3 || XPG4] (pthread_sigmask): Likewise.
33978         [XPG3 || XPG4] (sigqueue): Likewise.
33979         [XPG3 || XPG4] (sigtimedwait): Likewise.
33980         [XPG3 || XPG4] (sigwaitinfo): Likewise.
33981         * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
33982         [XPG3 || XPG4] (vsnprintf): Likewise.
33983         * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
33984         Likewise.
33985         [XPG3 || XPG4] (blksize_t): Likewise.
33986         * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
33987         Likewise.
33988         [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
33989         [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
33990         [XPG3 || XPG4] (struct itimerspec): Likewise.
33991         [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
33992         [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
33993         [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
33994         [XPG3 || XPG4] (clockid_t): Likewise.
33995         [XPG3 || XPG4] (timer_t): Likewise.
33996         [XPG3 || XPG4] (clock_getres): Likewise.
33997         [XPG3 || XPG4] (clock_gettime): Likewise.
33998         [XPG3 || XPG4] (clock_settime): Likewise.
33999         [XPG3 || XPG4] (nanosleep): Likewise.
34000         [XPG3 || XPG4] (timer_create): Likewise.
34001         [XPG3 || XPG4] (timer_delete): Likewise.
34002         [XPG3 || XPG4] (timer_gettime): Likewise.
34003         [XPG3 || XPG4] (timer_getoverrun): Likewise.
34004         [XPG3 || XPG4] (timer_settime): Likewise.
34005         * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
34006         [XPG3 || XPG4] (getlogin_r): Likewise.
34007         [XPG3 || XPG4] (pread): Likewise.
34008         [XPG3 || XPG4] (pthread_atfork): Likewise.
34009         [XPG3 || XPG4] (pwrite): Likewise.
34011         [BZ #14835]
34012         * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
34013         <bits/siginfo.h>.
34015 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
34017         * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
34018         finalizing MALLSTREAM.
34020         * sysdeps/mach/hurd/syncfs.c: New file.
34022 2012-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
34024         [BZ #14719]
34025         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
34026         NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
34027         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
34028         h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
34029         (_nss_dns_gethostbyname4_r): Likewise.
34030         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
34031         EAI_SYSTEM if NSS_STATUS_UNAVAIL.
34033 2012-11-19  Peng Haitao  <penght@cn.fujitsu.com>
34035         [BZ #13763]
34036         * sunrpc/bindrsvprt.c: Add lock to protect static variable.
34038 2012-11-19  Steve McIntyre  <steve.mcintyre@linaro.org>
34040         * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
34041         * elf/cache.c (print_entry): Print ",AArch64" for
34042         FLAG_AARCH64_LIB64
34044         * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
34045         * elf/cache.c (print_entry): Print ",hard-float" for
34046         FLAG_ARM_LIBHF.
34048 2012-11-18  David S. Miller  <davem@davemloft.net>
34050         With help from Joseph Myers.
34051         * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
34052         cutoff to 2**-13.
34053         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
34054         cutoff to 2**-25.
34055         * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
34056         ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
34057         small.
34058         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
34059         * math/libm-test.inc (y0_test): New tests.
34060         (y1_test): New tests.
34061         * sysdeps/i386/fpu/libm-test-ulps: Update.
34062         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
34063         * sysdeps/sparc/fpu/libm-test-ulps: Update.
34065 2012-11-18  Andreas Schwab  <schwab@linux-m68k.org>
34067         * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
34068         64-bit targets.
34069         * configure: Regenerated.
34071 2012-11-17  David S. Miller  <davem@davemloft.net>
34073         [BZ #14811]
34074         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
34075         nonzero exponents with absolute value below 0x1p-128 to +/-
34076         0x1p-128.
34078 2012-11-17  Joseph Myers  <joseph@codesourcery.com>
34080         * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
34082         * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
34084         * posix/getconf-speclist.c: New file.
34085         * posix/posix-envs.def: Likewise.
34086         * posix/confstr.c (START_ENV_GROUP): New macro.
34087         (END_ENV_GROUP): Likewise.
34088         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
34089         (KNOWN_PRESENT_ENV_STRING): Likewise.
34090         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
34091         (UNKNOWN_ENVIRONMENT): Likewise.
34092         (confstr): Include posix-envs.def instead of handling
34093         _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
34094         _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
34095         * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
34096         (END_ENV_GROUP): Likewise.
34097         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
34098         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
34099         (UNKNOWN_ENVIRONMENT): Likewise.
34100         (__sysconf): Include posix-envs.def instead of handling associated
34101         cases directly here.
34102         * posix/Makefile ($(objpfx)getconf.speclist): Generate by
34103         preprocessing getconf-speclist.c rather than running getconf or
34104         generating empty file.
34106 2012-11-16  Pino Toscano  <toscano.pino@tiscali.it>
34108         * scripts/check-local-headers.sh: Ignore 'mach' headers.
34110 2012-11-16  Andrej Lajovic  <natrij@gmail.com>
34112         [BZ #14672]
34113         * iconv/iconv_prog.c (main): Fix -c handling of '/'.
34115 2012-11-16  David S. Miller  <davem@davemloft.net>
34117         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
34118         smaller than LDBL_EPSILON/2.0L, just return xm1.
34120 2012-11-16  H.J. Lu  <hongjiu.lu@intel.com>
34122         * elf/tst-array1.c (init): Set constructor priority to 1000.
34123         (fini): Set destructor priority to 1000.
34124         * elf/tst-array2dep.c: Likewise.
34126 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
34128         [BZ #11741]
34129         * libio/fileops.c (_IO_new_file_write): Correctly return error.
34130         (_IO_new_file_xsputn): Also return EOF if none of the input
34131         data was written when overflow failed.
34132         * libio/iopadn.c (_IO_padn): Likewise.
34133         * libio/iowpadn.c (_IO_wpadn): Likewise.
34134         * stdio-common/tst-put-error.c: Add copyright notice.
34135         (do_test): Add case for printing padded string.
34136         * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
34137         _IO_padn returned error.
34138         [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
34139         * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
34140         return EOF.
34142 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
34144         * libio/libioP.h: Add comment note that the references to C++
34145         bits are now obsolete.
34147 2012-11-15  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
34149         * math/libm-test.inc (check_complex): Use asprintf.
34151 2012-11-14  Joseph Myers  <joseph@codesourcery.com>
34153         * debug/pcprofiledump.c (print_version): Update copyright year.
34154         * malloc/memusagestat.c (print_version): Likewise.
34156 2012-11-14  H.J. Lu  <hongjiu.lu@intel.com>
34158         [BZ #14831]
34159         * elf/Makefile (tests): Add tst-audit8.
34160         ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
34161         ($(objpfx)tst-audit8.out): New target.
34162         (tst-audit8-ENV): New variable.
34163         * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
34164         audit if l_reloc_result is NULL.
34165         (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
34166         defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
34167         * elf/tst-audit8.c: New file.
34169 2012-11-14  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
34171         * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
34172         * misc/Makefile (CFLAGS-select.c): Define.
34173         * posix/Makefile (CFLAGS-pause.c): Define.
34175 2012-11-13  David S. Miller  <davem@davemloft.net>
34177         * crypt/Makefile: Move test targets after toplevel Rules
34178         inclusion.  Grab any necessary sysdep routines when linking.
34179         * crypt/md5.c (md5_process_block): Remove define, we will always
34180         name it __md5_process_block.
34181         (md5_finish_ctx): Update md5_process_block call.
34182         (md5_stream): Likewise.
34183         (md5_process_bytes): Likewise.
34184         (md5_process_block): Rename to __md5_process_block and move to ...
34185         * crypt/md5-block.c: ... here.
34186         * crypt/sha256.c (sha256_process_block): Move to ...
34187         * crypt/sha256-block.c: ... here.
34188         * crypt/sha512.c (sha512_process_block): Move to ...
34189         * crypt/sha512-block.c: ... here.
34190         * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
34191         path.
34192         * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
34193         * sysdeps/sparc/sparc64/multiarch/Makefile
34194         (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
34195         crypt subdir.
34196         (localedef-aux): Add md5 crypto assembler when in locale subdir.
34197         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
34198         multiarch changes.
34199         * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
34200         * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
34201         * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
34202         * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
34203         * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
34204         * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
34205         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
34206         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
34207         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
34208         file.
34209         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
34210         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
34211         file.
34212         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
34214 2012-11-13  Joseph Myers  <joseph@codesourcery.com>
34216         * timezone/tzselect.ksh: Update from tzcode git revision
34217         a435f9f0ecafa56d9e0263835836bd0c64cd7307.
34218         * timezone/zdump.c: Likewise.
34219         * timezone/zic.c: Likewise.
34220         * timezone/Makefile ($(objpfx)version.h): Only include $(version)
34221         in TZVERSION setting, not $(PKGVERSION).
34222         ($(objpfx)tzselect): Likewise.  Also substitute PKGVERSION and
34223         REPORT_BUGS_TO settings.
34225         [BZ #14838]
34226         * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
34227         macro.
34229 2012-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
34231         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
34232         detection to immediately after _FP_ROUND().
34233         * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
34234         bits are 0.
34236 2012-11-11  David S. Miller  <davem@davemloft.net>
34238         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
34239         inttypes.h
34240         (__get_clockfreq_via_proc_openprom): Use __open, __read, and
34241         __close rather than their public counterparts.
34243 2012-11-10  Joseph Myers  <joseph@codesourcery.com>
34245         * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
34246         file.
34247         [UNIX98] (sem_timedwait): Do not expect.
34248         * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
34249         [XPG4 || UNIX98] (sockatmark): Do not expect.
34250         * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
34251         (clock_getcpuclockid): Do not expect.
34252         [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
34253         * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
34254         Do not expect.
34255         [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
34256         * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
34257         [UNIX98] (vwscanf): Likewise.
34258         [UNIX98] (vswscanf): Likewise.
34260 2012-11-09  Joseph Myers  <joseph@codesourcery.com>
34262         * timezone/version.h: Remove file.
34263         * timezone/README: Do not refer to version.h.
34264         * timezone/Makefile ($(objpfx)zic.o): New dependency on
34265         $(objpfx)version.h.
34266         ($(objpfx)zdump.o): Likewise.
34267         ($(objpfx)version.h): New target.
34269         * timezone/tzselect.ksh: Change to verbatim copy from tzcode
34270         2012i.
34271         * timezone/README: Don't mention modification to tzselect.ksh.
34272         * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
34273         work on unmodified tzselect.ksh.  Substitute version numbers in
34274         tzselect.ksh.
34276         * Makefile (format-me): Remove.
34277         (INSTALL): Adjust indentation.  Use commands directly instead of
34278         using $(format-me).
34280         * aclocal.m4 (ACX_PKGVERSION): New macro.
34281         (ACX_BUGURL): Likewise.
34282         * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
34283         (PKGVERSION): New AC_DEFINE_UNQUOTED.
34284         (REPORT_BUGS_TO): Likewise.
34285         * configure: Regenerated.
34286         * config.h.in (PKGVERSION): New macro.
34287         (REPORT_BUGS_TO): Likewise.
34288         * config.make.in (PKGVERSION): New variable.
34289         (PKGVERSION_TEXI): Likewise.
34290         (REPORT_BUGS_TO): Likewise.
34291         (REPORT_BUGS_TEXI): Likewise.
34292         * Makefile (format-me): Use -I$(common-objpfx)manual.
34293         (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
34294         ($(common-objpfx)manual/%): New target.
34295         (manual/%): Remove target.
34296         * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
34297         (print_version): Use PKGVERSION.
34298         * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
34299         * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
34300         and REPORT_BUGS_TO.
34301         ($(objpfx)xtrace): Likewise.
34302         * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
34303         * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
34304         (print_version): Use PKGVERSION.
34305         * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
34306         (do_version): Use PKGVERSION.
34307         * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
34308         REPORT_BUGS_TO.
34309         (common-ldd-rewrite): Likewise.
34310         * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
34311         * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
34312         (print_version): Use PKGVERSION.
34313         * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
34314         * elf/pldd.c (argp_program_bug_address): Remove variable.
34315         (more_help): New function.
34316         (argp): Use more_help.
34317         (print_version): Use PKGVERSION.
34318         * elf/sln.c (main): Use PKGVERSION.
34319         (usage): Use REPORT_BUGS_TO.
34320         * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
34321         (top level): Use PKGVERSION.
34322         * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
34323         (print_version): Use PKGVERSION.
34324         * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
34325         (print_version): Use PKGVERSION.
34326         * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
34327         (print_version): Use PKGVERSION.
34328         * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
34329         (print_version): Use PKGVERSION.
34330         * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
34331         (print_version): Use PKGVERSION.
34332         * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
34333         (print_version): Use PKGVERSION.
34334         * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
34335         and BUGURL.
34336         ($(objpfx)memusage): Likewise.
34337         * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
34338         (do_version): Use PKGVERSION.
34339         * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
34340         (print_version): Use PKGVERSION.
34341         * malloc/mtrace.pl ($PACKAGE): Remove variable.
34342         ($PKGVERSION): New variable.
34343         ($REPORT_BUGS_TO): Likewise.
34344         (usage): Use $REPORT_BUGS_TO.
34345         (top level): Use $PKGVERSION.
34346         * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
34347         ($(objpfx)pkgvers.texi): New rule.
34348         ($(objpfx)stamp-pkgvers): Likewise.
34349         * manual/install.texi: Include pkgvers.texi.
34350         (--with-pkgversion): Document new configure option.
34351         (--with-bugurl): Likewise.
34352         (Reporting Bugs): Describe Bugzilla as upstream tracker rather
34353         than necessarily for this particular distribution.  Use
34354         REPORT_BUGS_TO for where to report bugs.
34355         * INSTALL: Regenerated.
34356         * manual/libc.texinfo: Include pkgvers.texi.
34357         [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
34358         * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
34359         (print_version): Use PKGVERSION.
34360         * nss/getent.c (more_help): Use REPORT_BUGS_TO.
34361         (print_version): Use PKGVERSION.
34362         * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
34363         (print_version): Use PKGVERSION.
34364         * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
34365         * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
34366         macro.
34367         * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
34368         (print_version): Use PKGVERSION.
34369         * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
34370         (print_version): Use PKGVERSION.
34371         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
34372         and PKGVERSION.
34374         * timezone/checktab.awk: Update from tzcode 2012i.
34375         * timezone/ialloc.c: Likewise.
34376         * timezone/private.h: Likewise.
34377         * timezone/scheck.c: Likewise.
34378         * timezone/tzfile.h: Likewise.
34379         * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
34380         (TZVERSION): Hardcode tzcode version number.
34381         * timezone/zdump.c: Update from tzcode 2012i.
34382         * timezone/zic.c: Likewise.
34383         * timezone/version.h: New file.
34384         * timezone/README: Describe version.h.  Update upstream location.
34386         [BZ #14824]
34387         * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
34388         (mktemp): Enable declaration.
34389         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
34390         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
34391         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
34392         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
34393         Likewise.
34394         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
34395         Likewise.
34396         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
34397         Likewise.
34398         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
34399         Likewise.
34400         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
34401         Likewise.
34402         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
34403         Likewise.
34405         [BZ #14821]
34406         * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
34407         offset in buffer as u_int32_t not u_long.  Consistently use memcpy
34408         for copies of such integer values.
34409         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
34410         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
34412 2012-11-09  Andreas Jaeger  <aj@suse.de>
34414         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
34415         definitions and declarations that are provided by
34416         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
34418 2012-11-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
34420         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
34421         * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
34422         * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
34423         definition.
34425 2012-11-08  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
34427         * elf/elf.h: Update comment before AArch64 relocations.
34429 2012-11-07  David S. Miller  <davem@davemloft.net>
34431         * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
34432         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
34433         (__start_context): Declare.
34434         (__makecontext_ret): Delete.
34435         (__makecontext): Hook up __start_context instead of
34436         __makecontext_ret.
34437         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
34438         (sysdep_routines): Add __start_context when in stdlib.
34440 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
34442         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
34443         $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
34444         * sysdeps/x86/tst-xmmymm.sh (NM): New variable.  Use it instead of
34445         hardcoded "nm".
34446         (OBJDUMP): New variable.  Use it instead of hardcoded "objdump".
34447         (READELF): New variable.  Use it instead of hardcoded "readelf".
34449 2012-11-07  H.J. Lu  <hongjiu.lu@intel.com>
34451         * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
34452         * sysdeps/x86/Makefile: Here.
34453         * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
34454         * sysdeps/x86/tst-xmmymm.sh: This.
34456 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
34458         * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
34459         expectations.
34460         [UNIX98] (pthread_barrier_t): Do not expect.
34461         [UNIX98] (pthread_barrierattr_t): Likewise.
34462         [UNIX98] (pthread_spinlock_t): Likewise.
34463         [UNIX98] (pthread_barrier_destroy): Likewise.
34464         [UNIX98] (pthread_barrier_init): Likewise.
34465         [UNIX98] (pthread_barrier_wait): Likewise.
34466         [UNIX98] (pthread_barrierattr_destroy): Likewise.
34467         [UNIX98] (pthread_barrierattr_getpshared): Likewise.
34468         [UNIX98] (pthread_barrierattr_init): Likewise.
34469         [UNIX98] (pthread_barrierattr_setpshared): Likewise.
34470         [UNIX98] (pthread_getcpuclockid): Likewise.
34471         [UNIX98] (pthread_mutex_timedlock): Likewise.
34472         [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
34473         [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
34474         [UNIX98] (pthread_sigmask): Likewise.
34475         [UNIX98] (pthread_spin_destroy): Likewise.
34476         [UNIX98] (pthread_spin_init): Likewise.
34477         [UNIX98] (pthread_spin_lock): Likewise.
34478         [UNIX98] (pthread_spin_trylock): Likewise.
34479         [UNIX98] (pthread_spin_unlock): Likewise.
34480         * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
34481         Do not expect.
34482         [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
34483         [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
34484         [XPG3 || XPG4] (pthread_cond_t): Likewise.
34485         [XPG3 || XPG4] (pthread_condattr_t): Likewise.
34486         [XPG3 || XPG4] (pthread_key_t): Likewise.
34487         [XPG3 || XPG4] (pthread_mutex_t): Likewise.
34488         [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
34489         [XPG3 || XPG4] (pthread_once_t): Likewise.
34490         [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
34491         [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
34492         [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
34493         [XPG3 || XPG4] (pthread_t): Likewise.
34495         * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
34496         not expect.
34497         [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
34499         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
34500         Change function return type to int.
34502         * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
34503         Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
34504         [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
34505         [!POSIX] (POSIX_MADV_RANDOM): Likewise.
34506         [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
34507         [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
34508         [!POSIX] (posix_madvise): Likewise.
34509         (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
34510         && !UNIX98].
34511         (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
34512         (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
34513         (mode_t): Likewise.
34514         (posix_mem_offset): Likewise.
34515         (posix_typed_mem_get_info): Likewise.
34516         (posix_typed_mem_open): Likewise.
34518         * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
34519         Change condition to [XOPEN2K8].
34521         * conform/conformtest.pl: Preprocess allow-header data with -x c
34522         instead of from stdin.
34523         (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
34524         * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
34525         [C99-based standards] (cerfc): Likewise.
34526         [C99-based standards] (cexp2): Likewise.
34527         [C99-based standards] (cexpm1): Likewise.
34528         [C99-based standards] (clog10): Likewise.
34529         [C99-based standards] (clog1p): Likewise.
34530         [C99-based standards] (clog2): Likewise.
34531         [C99-based standards] (clgamma): Likewise.
34532         [C99-based standards] (ctgamma): Likewise.
34533         [C99-based standards] (cerff): Likewise.
34534         [C99-based standards] (cerfcf): Likewise.
34535         [C99-based standards] (cexp2f): Likewise.
34536         [C99-based standards] (cexpm1f): Likewise.
34537         [C99-based standards] (clog10f): Likewise.
34538         [C99-based standards] (clog1pf): Likewise.
34539         [C99-based standards] (clog2f): Likewise.
34540         [C99-based standards] (clgammaf): Likewise.
34541         [C99-based standards] (ctgammaf): Likewise.
34542         [C99-based standards] (cerfl): Likewise.
34543         [C99-based standards] (cerfcl): Likewise.
34544         [C99-based standards] (cexp2l): Likewise.
34545         [C99-based standards] (cexpm1l): Likewise.
34546         [C99-based standards] (clog10l): Likewise.
34547         [C99-based standards] (clog1pl): Likewise.
34548         [C99-based standards] (clog2l): Likewise.
34549         [C99-based standards] (clgammal): Likewise.
34550         [C99-based standards] (ctgammal): Likewise.
34551         * conform/data/inttypes.h-data [C99-based standards]: Include
34552         stdint.h-data.  Remove all expectations for stdint.h contents.
34553         [C99-based standards] (PRI*): Do not allow.
34554         [C99-based standards] (SCN*): Likewise.
34555         [C99-based standards] (*_t): Likewise.
34556         [C99-based-standards] (PRId8): Expect macro.
34557         [C99-based-standards] (PRIi8): Likewise.
34558         [C99-based-standards] (PRIo8): Likewise.
34559         [C99-based-standards] (PRIu8): Likewise.
34560         [C99-based-standards] (PRIx8): Likewise.
34561         [C99-based-standards] (PRIX8): Likewise.
34562         [C99-based-standards] (SCNd8): Likewise.
34563         [C99-based-standards] (SCNi8): Likewise.
34564         [C99-based-standards] (SCNo8): Likewise.
34565         [C99-based-standards] (SCNu8): Likewise.
34566         [C99-based-standards] (SCNx8): Likewise.
34567         [C99-based-standards] (PRIdLEAST8): Likewise.
34568         [C99-based-standards] (PRIiLEAST8): Likewise.
34569         [C99-based-standards] (PRIoLEAST8): Likewise.
34570         [C99-based-standards] (PRIuLEAST8): Likewise.
34571         [C99-based-standards] (PRIxLEAST8): Likewise.
34572         [C99-based-standards] (PRIXLEAST8): Likewise.
34573         [C99-based-standards] (SCNdLEAST8): Likewise.
34574         [C99-based-standards] (SCNiLEAST8): Likewise.
34575         [C99-based-standards] (SCNoLEAST8): Likewise.
34576         [C99-based-standards] (SCNuLEAST8): Likewise.
34577         [C99-based-standards] (SCNxLEAST8): Likewise.
34578         [C99-based-standards] (PRIdFAST8): Likewise.
34579         [C99-based-standards] (PRIiFAST8): Likewise.
34580         [C99-based-standards] (PRIoFAST8): Likewise.
34581         [C99-based-standards] (PRIuFAST8): Likewise.
34582         [C99-based-standards] (PRIxFAST8): Likewise.
34583         [C99-based-standards] (PRIXFAST8): Likewise.
34584         [C99-based-standards] (SCNdFAST8): Likewise.
34585         [C99-based-standards] (SCNiFAST8): Likewise.
34586         [C99-based-standards] (SCNoFAST8): Likewise.
34587         [C99-based-standards] (SCNuFAST8): Likewise.
34588         [C99-based-standards] (SCNxFAST8): Likewise.
34589         [C99-based-standards] (PRId16): Likewise.
34590         [C99-based-standards] (PRIi16): Likewise.
34591         [C99-based-standards] (PRIo16): Likewise.
34592         [C99-based-standards] (PRIu16): Likewise.
34593         [C99-based-standards] (PRIx16): Likewise.
34594         [C99-based-standards] (PRIX16): Likewise.
34595         [C99-based-standards] (SCNd16): Likewise.
34596         [C99-based-standards] (SCNi16): Likewise.
34597         [C99-based-standards] (SCNo16): Likewise.
34598         [C99-based-standards] (SCNu16): Likewise.
34599         [C99-based-standards] (SCNx16): Likewise.
34600         [C99-based-standards] (PRIdLEAST16): Likewise.
34601         [C99-based-standards] (PRIiLEAST16): Likewise.
34602         [C99-based-standards] (PRIoLEAST16): Likewise.
34603         [C99-based-standards] (PRIuLEAST16): Likewise.
34604         [C99-based-standards] (PRIxLEAST16): Likewise.
34605         [C99-based-standards] (PRIXLEAST16): Likewise.
34606         [C99-based-standards] (SCNdLEAST16): Likewise.
34607         [C99-based-standards] (SCNiLEAST16): Likewise.
34608         [C99-based-standards] (SCNoLEAST16): Likewise.
34609         [C99-based-standards] (SCNuLEAST16): Likewise.
34610         [C99-based-standards] (SCNxLEAST16): Likewise.
34611         [C99-based-standards] (PRIdFAST16): Likewise.
34612         [C99-based-standards] (PRIiFAST16): Likewise.
34613         [C99-based-standards] (PRIoFAST16): Likewise.
34614         [C99-based-standards] (PRIuFAST16): Likewise.
34615         [C99-based-standards] (PRIxFAST16): Likewise.
34616         [C99-based-standards] (PRIXFAST16): Likewise.
34617         [C99-based-standards] (SCNdFAST16): Likewise.
34618         [C99-based-standards] (SCNiFAST16): Likewise.
34619         [C99-based-standards] (SCNoFAST16): Likewise.
34620         [C99-based-standards] (SCNuFAST16): Likewise.
34621         [C99-based-standards] (SCNxFAST16): Likewise.
34622         [C99-based-standards] (PRId32): Likewise.
34623         [C99-based-standards] (PRIi32): Likewise.
34624         [C99-based-standards] (PRIo32): Likewise.
34625         [C99-based-standards] (PRIu32): Likewise.
34626         [C99-based-standards] (PRIx32): Likewise.
34627         [C99-based-standards] (PRIX32): Likewise.
34628         [C99-based-standards] (SCNd32): Likewise.
34629         [C99-based-standards] (SCNi32): Likewise.
34630         [C99-based-standards] (SCNo32): Likewise.
34631         [C99-based-standards] (SCNu32): Likewise.
34632         [C99-based-standards] (SCNx32): Likewise.
34633         [C99-based-standards] (PRIdLEAST32): Likewise.
34634         [C99-based-standards] (PRIiLEAST32): Likewise.
34635         [C99-based-standards] (PRIoLEAST32): Likewise.
34636         [C99-based-standards] (PRIuLEAST32): Likewise.
34637         [C99-based-standards] (PRIxLEAST32): Likewise.
34638         [C99-based-standards] (PRIXLEAST32): Likewise.
34639         [C99-based-standards] (SCNdLEAST32): Likewise.
34640         [C99-based-standards] (SCNiLEAST32): Likewise.
34641         [C99-based-standards] (SCNoLEAST32): Likewise.
34642         [C99-based-standards] (SCNuLEAST32): Likewise.
34643         [C99-based-standards] (SCNxLEAST32): Likewise.
34644         [C99-based-standards] (PRIdFAST32): Likewise.
34645         [C99-based-standards] (PRIiFAST32): Likewise.
34646         [C99-based-standards] (PRIoFAST32): Likewise.
34647         [C99-based-standards] (PRIuFAST32): Likewise.
34648         [C99-based-standards] (PRIxFAST32): Likewise.
34649         [C99-based-standards] (PRIXFAST32): Likewise.
34650         [C99-based-standards] (SCNdFAST32): Likewise.
34651         [C99-based-standards] (SCNiFAST32): Likewise.
34652         [C99-based-standards] (SCNoFAST32): Likewise.
34653         [C99-based-standards] (SCNuFAST32): Likewise.
34654         [C99-based-standards] (SCNxFAST32): Likewise.
34655         [C99-based-standards] (PRId64): Likewise.
34656         [C99-based-standards] (PRIi64): Likewise.
34657         [C99-based-standards] (PRIo64): Likewise.
34658         [C99-based-standards] (PRIu64): Likewise.
34659         [C99-based-standards] (PRIx64): Likewise.
34660         [C99-based-standards] (PRIX64): Likewise.
34661         [C99-based-standards] (SCNd64): Likewise.
34662         [C99-based-standards] (SCNi64): Likewise.
34663         [C99-based-standards] (SCNo64): Likewise.
34664         [C99-based-standards] (SCNu64): Likewise.
34665         [C99-based-standards] (SCNx64): Likewise.
34666         [C99-based-standards] (PRIdLEAST64): Likewise.
34667         [C99-based-standards] (PRIiLEAST64): Likewise.
34668         [C99-based-standards] (PRIoLEAST64): Likewise.
34669         [C99-based-standards] (PRIuLEAST64): Likewise.
34670         [C99-based-standards] (PRIxLEAST64): Likewise.
34671         [C99-based-standards] (PRIXLEAST64): Likewise.
34672         [C99-based-standards] (SCNdLEAST64): Likewise.
34673         [C99-based-standards] (SCNiLEAST64): Likewise.
34674         [C99-based-standards] (SCNoLEAST64): Likewise.
34675         [C99-based-standards] (SCNuLEAST64): Likewise.
34676         [C99-based-standards] (SCNxLEAST64): Likewise.
34677         [C99-based-standards] (PRIdFAST64): Likewise.
34678         [C99-based-standards] (PRIiFAST64): Likewise.
34679         [C99-based-standards] (PRIoFAST64): Likewise.
34680         [C99-based-standards] (PRIuFAST64): Likewise.
34681         [C99-based-standards] (PRIxFAST64): Likewise.
34682         [C99-based-standards] (PRIXFAST64): Likewise.
34683         [C99-based-standards] (SCNdFAST64): Likewise.
34684         [C99-based-standards] (SCNiFAST64): Likewise.
34685         [C99-based-standards] (SCNoFAST64): Likewise.
34686         [C99-based-standards] (SCNuFAST64): Likewise.
34687         [C99-based-standards] (SCNxFAST64): Likewise.
34688         [C99-based-standards] (PRIdMAX): Likewise.
34689         [C99-based-standards] (PRIiMAX): Likewise.
34690         [C99-based-standards] (PRIoMAX): Likewise.
34691         [C99-based-standards] (PRIuMAX): Likewise.
34692         [C99-based-standards] (PRIxMAX): Likewise.
34693         [C99-based-standards] (PRIXMAX): Likewise.
34694         [C99-based-standards] (SCNdMAX): Likewise.
34695         [C99-based-standards] (SCNiMAX): Likewise.
34696         [C99-based-standards] (SCNoMAX): Likewise.
34697         [C99-based-standards] (SCNuMAX): Likewise.
34698         [C99-based-standards] (SCNxMAX): Likewise.
34699         [C99-based-standards] (PRIdPTR): Likewise.
34700         [C99-based-standards] (PRIiPTR): Likewise.
34701         [C99-based-standards] (PRIoPTR): Likewise.
34702         [C99-based-standards] (PRIuPTR): Likewise.
34703         [C99-based-standards] (PRIxPTR): Likewise.
34704         [C99-based-standards] (PRIXPTR): Likewise.
34705         [C99-based-standards] (SCNdPTR): Likewise.
34706         [C99-based-standards] (SCNiPTR): Likewise.
34707         [C99-based-standards] (SCNoPTR): Likewise.
34708         [C99-based-standards] (SCNuPTR): Likewise.
34709         [C99-based-standards] (SCNxPTR): Likewise.
34710         * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
34711         allow.
34712         * conform/data/stdint.h-data: Update comments to clarify
34713         requirements.
34714         [C99-based standards] (INT8_MIN): Use macro-int-constant.  Specify
34715         type.
34716         [C99-based standards] (INT8_MAX): Likewise.
34717         [C99-based standards] (INT16_MIN): Likewise.
34718         [C99-based standards] (INT16_MAX): Likewise.
34719         [C99-based standards] (INT32_MIN): Likewise.
34720         [C99-based standards] (INT32_MAX): Likewise.
34721         [C99-based standards] (INT64_MIN): Likewise.
34722         [C99-based standards] (INT64_MAX): Likewise.
34723         [C99-based standards] (UINT8_MAX): Likewise.
34724         [C99-based standards] (UINT16_MAX): Likewise.
34725         [C99-based standards] (UINT32_MAX): Likewise.
34726         [C99-based standards] (UINT64_MAX): Likewise.
34727         [C99-based standards] (INT_LEAST8_MIN): Likewise.
34728         [C99-based standards] (INT_LEAST8_MAX): Likewise.
34729         [C99-based standards] (INT_LEAST16_MIN): Likewise.
34730         [C99-based standards] (INT_LEAST16_MAX): Likewise.
34731         [C99-based standards] (INT_LEAST32_MIN): Likewise.
34732         [C99-based standards] (INT_LEAST32_MAX): Likewise.
34733         [C99-based standards] (INT_LEAST64_MIN): Likewise.
34734         [C99-based standards] (INT_LEAST64_MAX): Likewise.
34735         [C99-based standards] (UINT_LEAST8_MAX): Likewise.
34736         [C99-based standards] (UINT_LEAST16_MAX): Likewise.
34737         [C99-based standards] (UINT_LEAST32_MAX): Likewise.
34738         [C99-based standards] (UINT_LEAST64_MAX): Likewise.
34739         [C99-based standards] (INT_FAST8_MIN): Likewise.
34740         [C99-based standards] (INT_FAST8_MAX): Likewise.
34741         [C99-based standards] (INT_FAST16_MIN): Likewise.
34742         [C99-based standards] (INT_FAST16_MAX): Likewise.
34743         [C99-based standards] (INT_FAST32_MIN): Likewise.
34744         [C99-based standards] (INT_FAST32_MAX): Likewise.
34745         [C99-based standards] (INT_FAST64_MIN): Likewise.
34746         [C99-based standards] (INT_FAST64_MAX): Likewise.
34747         [C99-based standards] (UINT_FAST8_MAX): Likewise.
34748         [C99-based standards] (UINT_FAST16_MAX): Likewise.
34749         [C99-based standards] (UINT_FAST32_MAX): Likewise.
34750         [C99-based standards] (UINT_FAST64_MAX): Likewise.
34751         [C99-based standards] (INTPTR_MIN): Likewise.
34752         [C99-based standards] (INTPTR_MAX): Likewise.
34753         [C99-based standards] (UINTPTR_MAX): Likewise.
34754         [C99-based standards] (INTMAX_MIN): Likewise.
34755         [C99-based standards] (INTMAX_MAX): Likewise.
34756         [C99-based standards] (UINTMAX_MAX): Likewise.
34757         [C99-based standards] (PTRDIFF_MIN): Likewise.
34758         [C99-based standards] (PTRDIFF_MAX): Likewise.
34759         [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
34760         [C99-based standards] (SIZE_MAX): Likewise.
34761         [C99-based standards] (WCHAR_MAX): Likewise.
34762         [C99-based standards] (WINT_MAX): Likewise.
34763         [C99-based standards] (SIG_ATOMIC_MIN): Likewise.  Do not specify
34764         constraint on value.
34765         [C99-based standards] (WCHAR_MIN): Likewise.
34766         [C99-based standards] (WINT_MIN): Likewise.
34767         [C99-based standards] (*_t): Allow.
34768         * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
34769         condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
34770         Include math.h-data and complex.h-data.  Remove all expectations
34771         of math.h and complex.h contents.
34772         * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
34773         at end of line.
34774         * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
34775         (struct tm): Expect tag.
34776         [C99-based-standards] (wcstof): Expect function.
34777         [C99-based-standards] (wcstold): Likewise.
34778         [C99-based-standards] (wcstoll): Likewise.
34779         [C99-based-standards] (wcstoull): Likewise.
34780         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
34781         macro-int-constant.  Specify type.
34782         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise.  Specify
34783         constraint on value.
34784         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
34785         Specify type.
34786         [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
34787         Specify value.
34788         [ISO C standards]: Do not allow headers.
34789         [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
34790         wcs[abcdefghijklmnopqrstuvwxyz]*.
34791         [ISO C standards] (*_t): Do not allow.
34792         * conform/data/wctype.h-data [C99-based standards] (iswblank):
34793         Expect function.
34794         [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
34795         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
34796         Specify type.
34797         [ISO C standards]: Do not allow headers.
34798         [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
34799         is[abcdefghijklmnopqrstuvwxyz]*.
34800         [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
34801         to[abcdefghijklmnopqrstuvwxyz]*.
34802         [ISO C standards] (*_t): Do not allow.
34803         * conform/data/stdalign.h-data: New file.
34804         * conform/data/stdbool.h-data: Likewise.
34805         * conform/data/stdnoreturn.h-data: Likewise.
34807 2012-11-07  Roland McGrath  <roland@hack.frob.com>
34809         [BZ #14815]
34810         * manual/filesys.texi (Directory Entries): Typo fix.
34811         Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
34813 2012-11-07  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
34815         * elf/elf.h (EM_AARCH64): New macro.
34816         (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
34817         (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
34818         (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
34819         (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
34820         (R_AARCH64_TLSDESC): Likewise.
34821         (NT_ARM_TLS): Likewise.
34822         (NT_ARM_HW_BREAK): Likewise.
34823         (NT_ARM_HW_WATCH): Likewise.
34825 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
34827         [BZ #14811]
34828         * sysdeps/i386/fpu/e_powl.S (pm79): New object.
34829         (__ieee754_powl): Saturate nonzero exponents with absolute value
34830         below 0x1p-79 to +/- 0x1p-79.
34831         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
34832         exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
34833         * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
34834         nonzero exponents with absolute value below 0x1p-32 to +/-
34835         0x1p-32.
34836         * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
34837         (__ieee754_powl): Saturate nonzero exponents with absolute value
34838         below 0x1p-79 to +/- 0x1p-79.
34839         * math/libm-test.inc (pow_test): Add more tests.
34841 2012-11-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
34843         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
34844         _dl_s390_cap_flags with kernel. Increase string length.
34845         (_dl_s390_platforms): Add z196 and zEC12.
34847 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
34849         * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
34850         Change XOPEN21K to XOPEN2K.
34852 2012-11-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
34854         * string/memmove.c: Use memcpy when possible.
34856 2012-11-06  Andreas Jaeger  <aj@suse.de>
34858         * po/eo.po: Update from translation team.
34860 2012-11-06  Joseph Myers  <joseph@codesourcery.com>
34862         [BZ #14793]
34863         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
34864         exponent and small x and y exponents, scale x or y up.  Increase
34865         by 2 the exponent used in scaling up.
34866         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
34867         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34868         * math/libm-test.inc (fma_test): Add more tests.
34869         (fma_test_towardzero): Likewise.
34870         (fma_test_downward): Likewise.
34871         (fma_test_upward): Likewise.
34873 2012-11-05  Joseph Myers  <joseph@codesourcery.com>
34875         [BZ #14805]
34876         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
34877         fenv_t *.
34879         [BZ #14801]
34880         * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
34881         namespace for names of struct fields.
34882         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
34883         fenv_t fields.
34884         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
34885         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
34887 2012-11-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
34889         [BZ #3665]
34890         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
34892 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
34894         * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
34895         PTR_DEMANGLE.
34897         [BZ #5246]
34898         * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
34899         PTR_DEMANGLE.
34901 2012-11-04  Joseph Myers  <joseph@codesourcery.com>
34903         [BZ #14797]
34904         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
34905         definitely overflow as x * y not x * y + z.
34906         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
34907         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34908         * math/libm-test.inc (fma_test): Add more tests.
34909         (fma_test_towardzero): Likewise.
34910         (fma_test_downward): Likewise.
34911         (fma_test_upward): Likewise.
34913 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
34915         [BZ #157]
34917         * include/stub-tag.h: Remove file.
34918         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
34919         '#include' of it.
34920         * manual/maint.texi (Porting): Don't reference it.
34921         * Makerules ($(objpfx)stubs): Likewise.
34922         * dirent/closedir.c: Don't include <stub-tag.h>.
34923         * dirent/dirfd.c: Likewise.
34924         * dirent/fdopendir.c: Likewise.
34925         * dirent/getdents.c: Likewise.
34926         * dirent/getdents64.c: Likewise.
34927         * dirent/opendir.c: Likewise.
34928         * dirent/readdir.c: Likewise.
34929         * dirent/readdir64.c: Likewise.
34930         * dirent/readdir64_r.c: Likewise.
34931         * dirent/readdir_r.c: Likewise.
34932         * dirent/rewinddir.c: Likewise.
34933         * dirent/seekdir.c: Likewise.
34934         * dirent/telldir.c: Likewise.
34935         * gmon/profil.c: Likewise.
34936         * grp/setgroups.c: Likewise.
34937         * inet/if_index.c: Likewise.
34938         * io/access.c: Likewise.
34939         * io/chdir.c: Likewise.
34940         * io/chmod.c: Likewise.
34941         * io/chown.c: Likewise.
34942         * io/close.c: Likewise.
34943         * io/dup.c: Likewise.
34944         * io/dup2.c: Likewise.
34945         * io/dup3.c: Likewise.
34946         * io/euidaccess.c: Likewise.
34947         * io/faccessat.c: Likewise.
34948         * io/fchdir.c: Likewise.
34949         * io/fchmod.c: Likewise.
34950         * io/fchmodat.c: Likewise.
34951         * io/fchown.c: Likewise.
34952         * io/fchownat.c: Likewise.
34953         * io/fcntl.c: Likewise.
34954         * io/flock.c: Likewise.
34955         * io/fstatfs.c: Likewise.
34956         * io/fstatfs64.c: Likewise.
34957         * io/fstatvfs.c: Likewise.
34958         * io/fstatvfs64.c: Likewise.
34959         * io/futimens.c: Likewise.
34960         * io/fxstat.c: Likewise.
34961         * io/fxstat64.c: Likewise.
34962         * io/fxstatat.c: Likewise.
34963         * io/fxstatat64.c: Likewise.
34964         * io/getcwd.c: Likewise.
34965         * io/isatty.c: Likewise.
34966         * io/lchmod.c: Likewise.
34967         * io/lchown.c: Likewise.
34968         * io/link.c: Likewise.
34969         * io/linkat.c: Likewise.
34970         * io/lseek.c: Likewise.
34971         * io/lseek64.c: Likewise.
34972         * io/lxstat64.c: Likewise.
34973         * io/mkdir.c: Likewise.
34974         * io/mkdirat.c: Likewise.
34975         * io/mkfifo.c: Likewise.
34976         * io/mkfifoat.c: Likewise.
34977         * io/open.c: Likewise.
34978         * io/open64.c: Likewise.
34979         * io/openat.c: Likewise.
34980         * io/openat64.c: Likewise.
34981         * io/pipe.c: Likewise.
34982         * io/pipe2.c: Likewise.
34983         * io/poll.c: Likewise.
34984         * io/posix_fadvise.c: Likewise.
34985         * io/posix_fadvise64.c: Likewise.
34986         * io/posix_fallocate.c: Likewise.
34987         * io/posix_fallocate64.c: Likewise.
34988         * io/read.c: Likewise.
34989         * io/readlink.c: Likewise.
34990         * io/readlinkat.c: Likewise.
34991         * io/rmdir.c: Likewise.
34992         * io/sendfile.c: Likewise.
34993         * io/sendfile64.c: Likewise.
34994         * io/statfs.c: Likewise.
34995         * io/statfs64.c: Likewise.
34996         * io/statvfs.c: Likewise.
34997         * io/statvfs64.c: Likewise.
34998         * io/symlink.c: Likewise.
34999         * io/symlinkat.c: Likewise.
35000         * io/ttyname.c: Likewise.
35001         * io/ttyname_r.c: Likewise.
35002         * io/umask.c: Likewise.
35003         * io/unlink.c: Likewise.
35004         * io/unlinkat.c: Likewise.
35005         * io/utime.c: Likewise.
35006         * io/utimensat.c: Likewise.
35007         * io/write.c: Likewise.
35008         * io/xmknod.c: Likewise.
35009         * io/xmknodat.c: Likewise.
35010         * io/xstat.c: Likewise.
35011         * io/xstat64.c: Likewise.
35012         * login/getpt.c: Likewise.
35013         * login/grantpt.c: Likewise.
35014         * login/unlockpt.c: Likewise.
35015         * math/e_acoshl.c: Likewise.
35016         * math/e_acosl.c: Likewise.
35017         * math/e_asinl.c: Likewise.
35018         * math/e_atan2l.c: Likewise.
35019         * math/e_atanhl.c: Likewise.
35020         * math/e_coshl.c: Likewise.
35021         * math/e_expl.c: Likewise.
35022         * math/e_fmodl.c: Likewise.
35023         * math/e_gammal_r.c: Likewise.
35024         * math/e_hypotl.c: Likewise.
35025         * math/e_j0l.c: Likewise.
35026         * math/e_j1l.c: Likewise.
35027         * math/e_jnl.c: Likewise.
35028         * math/e_lgammal_r.c: Likewise.
35029         * math/e_log10l.c: Likewise.
35030         * math/e_log2l.c: Likewise.
35031         * math/e_logl.c: Likewise.
35032         * math/e_powl.c: Likewise.
35033         * math/e_rem_pio2l.c: Likewise.
35034         * math/e_sinhl.c: Likewise.
35035         * math/e_sqrtl.c: Likewise.
35036         * math/fclrexcpt.c: Likewise.
35037         * math/fedisblxcpt.c: Likewise.
35038         * math/feenablxcpt.c: Likewise.
35039         * math/fegetenv.c: Likewise.
35040         * math/fegetexcept.c: Likewise.
35041         * math/fegetround.c: Likewise.
35042         * math/feholdexcpt.c: Likewise.
35043         * math/fesetenv.c: Likewise.
35044         * math/fesetround.c: Likewise.
35045         * math/feupdateenv.c: Likewise.
35046         * math/fgetexcptflg.c: Likewise.
35047         * math/fraiseexcpt.c: Likewise.
35048         * math/fsetexcptflg.c: Likewise.
35049         * math/ftestexcept.c: Likewise.
35050         * math/k_cosl.c: Likewise.
35051         * math/k_rem_pio2l.c: Likewise.
35052         * math/k_sinl.c: Likewise.
35053         * math/k_tanl.c: Likewise.
35054         * math/s_asinhl.c: Likewise.
35055         * math/s_atanl.c: Likewise.
35056         * math/s_cbrtl.c: Likewise.
35057         * math/s_erfl.c: Likewise.
35058         * math/s_expm1l.c: Likewise.
35059         * math/s_log1pl.c: Likewise.
35060         * math/s_tanhl.c: Likewise.
35061         * misc/acct.c: Likewise.
35062         * misc/brk.c: Likewise.
35063         * misc/chflags.c: Likewise.
35064         * misc/chroot.c: Likewise.
35065         * misc/fchflags.c: Likewise.
35066         * misc/fgetxattr.c: Likewise.
35067         * misc/flistxattr.c: Likewise.
35068         * misc/fremovexattr.c: Likewise.
35069         * misc/fsetxattr.c: Likewise.
35070         * misc/fsync.c: Likewise.
35071         * misc/ftruncate.c: Likewise.
35072         * misc/futimes.c: Likewise.
35073         * misc/futimesat.c: Likewise.
35074         * misc/getdomain.c: Likewise.
35075         * misc/getdtsz.c: Likewise.
35076         * misc/gethostid.c: Likewise.
35077         * misc/gethostname.c: Likewise.
35078         * misc/getloadavg.c: Likewise.
35079         * misc/getpagesize.c: Likewise.
35080         * misc/getsysstats.c: Likewise.
35081         * misc/getxattr.c: Likewise.
35082         * misc/gtty.c: Likewise.
35083         * misc/ioctl.c: Likewise.
35084         * misc/lgetxattr.c: Likewise.
35085         * misc/listxattr.c: Likewise.
35086         * misc/llistxattr.c: Likewise.
35087         * misc/lremovexattr.c: Likewise.
35088         * misc/lsetxattr.c: Likewise.
35089         * misc/lutimes.c: Likewise.
35090         * misc/madvise.c: Likewise.
35091         * misc/mincore.c: Likewise.
35092         * misc/mlock.c: Likewise.
35093         * misc/mlockall.c: Likewise.
35094         * misc/mmap.c: Likewise.
35095         * misc/mprotect.c: Likewise.
35096         * misc/msync.c: Likewise.
35097         * misc/munlock.c: Likewise.
35098         * misc/munlockall.c: Likewise.
35099         * misc/munmap.c: Likewise.
35100         * misc/preadv.c: Likewise.
35101         * misc/preadv64.c: Likewise.
35102         * misc/ptrace.c: Likewise.
35103         * misc/pwritev.c: Likewise.
35104         * misc/pwritev64.c: Likewise.
35105         * misc/readv.c: Likewise.
35106         * misc/reboot.c: Likewise.
35107         * misc/remap_file_pages.c: Likewise.
35108         * misc/removexattr.c: Likewise.
35109         * misc/revoke.c: Likewise.
35110         * misc/select.c: Likewise.
35111         * misc/setdomain.c: Likewise.
35112         * misc/setegid.c: Likewise.
35113         * misc/seteuid.c: Likewise.
35114         * misc/sethostid.c: Likewise.
35115         * misc/sethostname.c: Likewise.
35116         * misc/setregid.c: Likewise.
35117         * misc/setreuid.c: Likewise.
35118         * misc/setxattr.c: Likewise.
35119         * misc/sstk.c: Likewise.
35120         * misc/stty.c: Likewise.
35121         * misc/swapoff.c: Likewise.
35122         * misc/swapon.c: Likewise.
35123         * misc/sync.c: Likewise.
35124         * misc/syncfs.c: Likewise.
35125         * misc/syscall.c: Likewise.
35126         * misc/truncate.c: Likewise.
35127         * misc/ualarm.c: Likewise.
35128         * misc/usleep.c: Likewise.
35129         * misc/ustat.c: Likewise.
35130         * misc/utimes.c: Likewise.
35131         * misc/vhangup.c: Likewise.
35132         * misc/writev.c: Likewise.
35133         * posix/_exit.c: Likewise.
35134         * posix/alarm.c: Likewise.
35135         * posix/execve.c: Likewise.
35136         * posix/fexecve.c: Likewise.
35137         * posix/fork.c: Likewise.
35138         * posix/fpathconf.c: Likewise.
35139         * posix/getaddrinfo.c: Likewise.
35140         * posix/getegid.c: Likewise.
35141         * posix/geteuid.c: Likewise.
35142         * posix/getgid.c: Likewise.
35143         * posix/getgroups.c: Likewise.
35144         * posix/getlogin.c: Likewise.
35145         * posix/getlogin_r.c: Likewise.
35146         * posix/getpgid.c: Likewise.
35147         * posix/getpid.c: Likewise.
35148         * posix/getppid.c: Likewise.
35149         * posix/getresgid.c: Likewise.
35150         * posix/getresuid.c: Likewise.
35151         * posix/getsid.c: Likewise.
35152         * posix/getuid.c: Likewise.
35153         * posix/glob64.c: Likewise.
35154         * posix/nanosleep.c: Likewise.
35155         * posix/pathconf.c: Likewise.
35156         * posix/pause.c: Likewise.
35157         * posix/posix_madvise.c: Likewise.
35158         * posix/pread.c: Likewise.
35159         * posix/pread64.c: Likewise.
35160         * posix/pwrite.c: Likewise.
35161         * posix/pwrite64.c: Likewise.
35162         * posix/sched_getaffinity.c: Likewise.
35163         * posix/sched_getp.c: Likewise.
35164         * posix/sched_gets.c: Likewise.
35165         * posix/sched_primax.c: Likewise.
35166         * posix/sched_primin.c: Likewise.
35167         * posix/sched_rr_gi.c: Likewise.
35168         * posix/sched_setaffinity.c: Likewise.
35169         * posix/sched_setp.c: Likewise.
35170         * posix/sched_sets.c: Likewise.
35171         * posix/sched_yield.c: Likewise.
35172         * posix/setgid.c: Likewise.
35173         * posix/setlogin.c: Likewise.
35174         * posix/setpgid.c: Likewise.
35175         * posix/setresgid.c: Likewise.
35176         * posix/setresuid.c: Likewise.
35177         * posix/setsid.c: Likewise.
35178         * posix/setuid.c: Likewise.
35179         * posix/sleep.c: Likewise.
35180         * posix/spawni.c: Likewise.
35181         * posix/sysconf.c: Likewise.
35182         * posix/times.c: Likewise.
35183         * posix/wait.c: Likewise.
35184         * posix/wait3.c: Likewise.
35185         * posix/wait4.c: Likewise.
35186         * posix/waitpid.c: Likewise.
35187         * resolv/gai_sigqueue.c: Likewise.
35188         * resource/getpriority.c: Likewise.
35189         * resource/getrlimit.c: Likewise.
35190         * resource/getrusage.c: Likewise.
35191         * resource/nice.c: Likewise.
35192         * resource/setpriority.c: Likewise.
35193         * resource/setrlimit.c: Likewise.
35194         * resource/ulimit.c: Likewise.
35195         * rt/aio_cancel.c: Likewise.
35196         * rt/aio_fsync.c: Likewise.
35197         * rt/aio_read.c: Likewise.
35198         * rt/aio_sigqueue.c: Likewise.
35199         * rt/aio_suspend.c: Likewise.
35200         * rt/aio_write.c: Likewise.
35201         * rt/clock_getres.c: Likewise.
35202         * rt/clock_gettime.c: Likewise.
35203         * rt/clock_nanosleep.c: Likewise.
35204         * rt/clock_settime.c: Likewise.
35205         * rt/lio_listio.c: Likewise.
35206         * rt/mq_close.c: Likewise.
35207         * rt/mq_getattr.c: Likewise.
35208         * rt/mq_notify.c: Likewise.
35209         * rt/mq_open.c: Likewise.
35210         * rt/mq_receive.c: Likewise.
35211         * rt/mq_send.c: Likewise.
35212         * rt/mq_setattr.c: Likewise.
35213         * rt/mq_timedreceive.c: Likewise.
35214         * rt/mq_timedsend.c: Likewise.
35215         * rt/mq_unlink.c: Likewise.
35216         * rt/shm_open.c: Likewise.
35217         * rt/shm_unlink.c: Likewise.
35218         * rt/timer_create.c: Likewise.
35219         * rt/timer_delete.c: Likewise.
35220         * rt/timer_getoverr.c: Likewise.
35221         * rt/timer_gettime.c: Likewise.
35222         * rt/timer_settime.c: Likewise.
35223         * setjmp/__longjmp.c: Likewise.
35224         * setjmp/setjmp.c: Likewise.
35225         * signal/kill.c: Likewise.
35226         * signal/killpg.c: Likewise.
35227         * signal/raise.c: Likewise.
35228         * signal/sigaction.c: Likewise.
35229         * signal/sigaltstack.c: Likewise.
35230         * signal/sigblock.c: Likewise.
35231         * signal/sigignore.c: Likewise.
35232         * signal/sigintr.c: Likewise.
35233         * signal/signal.c: Likewise.
35234         * signal/sigpause.c: Likewise.
35235         * signal/sigpending.c: Likewise.
35236         * signal/sigqueue.c: Likewise.
35237         * signal/sigreturn.c: Likewise.
35238         * signal/sigset.c: Likewise.
35239         * signal/sigsetmask.c: Likewise.
35240         * signal/sigstack.c: Likewise.
35241         * signal/sigsuspend.c: Likewise.
35242         * signal/sigtimedwait.c: Likewise.
35243         * signal/sigvec.c: Likewise.
35244         * signal/sigwait.c: Likewise.
35245         * signal/sigwaitinfo.c: Likewise.
35246         * signal/sysv_signal.c: Likewise.
35247         * socket/accept.c: Likewise.
35248         * socket/accept4.c: Likewise.
35249         * socket/bind.c: Likewise.
35250         * socket/connect.c: Likewise.
35251         * socket/getpeername.c: Likewise.
35252         * socket/getsockname.c: Likewise.
35253         * socket/getsockopt.c: Likewise.
35254         * socket/isfdtype.c: Likewise.
35255         * socket/listen.c: Likewise.
35256         * socket/recv.c: Likewise.
35257         * socket/recvfrom.c: Likewise.
35258         * socket/recvmsg.c: Likewise.
35259         * socket/send.c: Likewise.
35260         * socket/sendmsg.c: Likewise.
35261         * socket/sendto.c: Likewise.
35262         * socket/setsockopt.c: Likewise.
35263         * socket/shutdown.c: Likewise.
35264         * socket/sockatmark.c: Likewise.
35265         * socket/socket.c: Likewise.
35266         * socket/socketpair.c: Likewise.
35267         * stdio-common/ctermid.c: Likewise.
35268         * stdio-common/cuserid.c: Likewise.
35269         * stdio-common/remove.c: Likewise.
35270         * stdio-common/rename.c: Likewise.
35271         * stdio-common/renameat.c: Likewise.
35272         * stdio-common/tempname.c: Likewise.
35273         * stdlib/getcontext.c: Likewise.
35274         * stdlib/makecontext.c: Likewise.
35275         * stdlib/setcontext.c: Likewise.
35276         * stdlib/swapcontext.c: Likewise.
35277         * stdlib/system.c: Likewise.
35278         * streams/fattach.c: Likewise.
35279         * streams/fdetach.c: Likewise.
35280         * streams/getmsg.c: Likewise.
35281         * streams/getpmsg.c: Likewise.
35282         * streams/putmsg.c: Likewise.
35283         * streams/putpmsg.c: Likewise.
35284         * sysdeps/unix/bsd/getpt.c: Likewise.
35285         * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
35286         * sysdeps/unix/sysv/linux/futimens.c: Likewise.
35287         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
35288         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
35289         Likewise.
35290         * sysdeps/unix/sysv/linux/readahead.c: Likewise.
35291         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
35292         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
35293         * sysvipc/msgctl.c: Likewise.
35294         * sysvipc/msgget.c: Likewise.
35295         * sysvipc/msgrcv.c: Likewise.
35296         * sysvipc/msgsnd.c: Likewise.
35297         * sysvipc/semctl.c: Likewise.
35298         * sysvipc/semget.c: Likewise.
35299         * sysvipc/semop.c: Likewise.
35300         * sysvipc/semtimedop.c: Likewise.
35301         * sysvipc/shmat.c: Likewise.
35302         * sysvipc/shmctl.c: Likewise.
35303         * sysvipc/shmdt.c: Likewise.
35304         * sysvipc/shmget.c: Likewise.
35305         * termios/tcdrain.c: Likewise.
35306         * termios/tcflow.c: Likewise.
35307         * termios/tcflush.c: Likewise.
35308         * termios/tcgetattr.c: Likewise.
35309         * termios/tcgetpgrp.c: Likewise.
35310         * termios/tcsendbrk.c: Likewise.
35311         * termios/tcsetattr.c: Likewise.
35312         * termios/tcsetpgrp.c: Likewise.
35313         * time/adjtime.c: Likewise.
35314         * time/clock.c: Likewise.
35315         * time/getitimer.c: Likewise.
35316         * time/gettimeofday.c: Likewise.
35317         * time/setitimer.c: Likewise.
35318         * time/settimeofday.c: Likewise.
35319         * time/stime.c: Likewise.
35320         * time/time.c: Likewise.
35322 2012-11-04  Pino Toscano  <toscano.pino@tiscali.it>
35324         * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
35325         /usr/old/bin.
35327         * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
35328         instead of spaces.
35329         * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
35331 2012-11-03  Joseph Myers  <joseph@codesourcery.com>
35333         [BZ #14796]
35334         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
35335         FE_TONEAREST before applying Dekker multiplication and Knuth
35336         addition.  Clear inexact exceptions and check for exact zero
35337         results afterwards.
35338         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
35339         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
35340         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
35341         * math/libm-test.inc (fma_test): Add more tests.
35342         (fma_test_towardzero): Likewise.
35343         (fma_test_downward): Likewise.
35344         (fma_test_upward): Likewise.
35345         * sysdeps/generic/math_private.h (default_libc_fesetround): New
35346         function.
35347         (libc_fesetround): New macro.
35348         (libc_fesetroundf): Likewise.
35349         (libc_fesetroundl): Likewise.
35350         * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
35351         function.
35352         (libc_fesetround_387): Likewise.
35353         (libc_fesetroundf): New macro.
35354         (libc_fesetround): Likewise.
35355         (libc_fesetroundl): Likewise.
35356         * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
35357         function.
35358         (libc_fesetroundf): New macro.
35359         (libc_fesetround): Likewise.
35360         (libc_fesetroundl): Likewise.
35361         * include/fenv.h (feclearexcept): Add libm_hidden_proto.
35362         * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
35363         * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
35364         libm_hidden_ver.
35365         * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
35366         * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
35367         libm_hidden_def.
35368         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
35369         * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
35370         libm_hidden_ver.
35371         * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
35372         libm_hidden_def.
35374         [BZ #3439]
35375         * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
35376         integer constant usable in #if and use that to give value to enum
35377         constant.
35378         (FE_DIVBYZERO): Likewise.
35379         (FE_UNDERFLOW): Likewise.
35380         (FE_OVERFLOW): Likewise.
35381         (FE_INVALID): Likewise.
35382         (FE_INVALID_SNAN): Likewise.
35383         (FE_INVALID_ISI): Likewise.
35384         (FE_INVALID_IDI): Likewise.
35385         (FE_INVALID_ZDZ): Likewise.
35386         (FE_INVALID_IMZ): Likewise.
35387         (FE_INVALID_COMPARE): Likewise.
35388         (FE_INVALID_SOFTWARE): Likewise.
35389         (FE_INVALID_SQRT): Likewise.
35390         (FE_INVALID_INTEGER_CONVERSION): Likewise.
35391         (FE_TONEAREST): Likewise.
35392         (FE_TOWARDZERO): Likewise.
35393         (FE_UPWARD): Likewise.
35394         (FE_DOWNWARD): Likewise.
35395         * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
35396         (FE_DIVBYZERO): Likewise.
35397         (FE_OVERFLOW): Likewise.
35398         (FE_UNDERFLOW): Likewise.
35399         (FE_INEXACT): Likewise.
35400         (FE_TONEAREST): Likewise.
35401         (FE_DOWNWARD): Likewise.
35402         (FE_UPWARD): Likewise.
35403         (FE_TOWARDZERO): Likewise.
35404         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
35405         (FE_UNDERFLOW): Likewise.
35406         (FE_OVERFLOW): Likewise.
35407         (FE_DIVBYZERO): Likewise.
35408         (FE_INVALID): Likewise.
35409         (FE_TONEAREST): Likewise.
35410         (FE_TOWARDZERO): Likewise.
35411         * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
35412         (FE_OVERFLOW): Likewise.
35413         (FE_UNDERFLOW): Likewise.
35414         (FE_DIVBYZERO): Likewise.
35415         (FE_INEXACT): Likewise.
35416         (FE_TONEAREST): Likewise.
35417         (FE_TOWARDZERO): Likewise.
35418         (FE_UPWARD): Likewise.
35419         (FE_DOWNWARD): Likewise.
35420         * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
35421         (FE_DIVBYZERO): Likewise.
35422         (FE_OVERFLOW): Likewise.
35423         (FE_UNDERFLOW): Likewise.
35424         (FE_INEXACT): Likewise.
35425         (FE_TONEAREST): Likewise.
35426         (FE_DOWNWARD): Likewise.
35427         (FE_UPWARD): Likewise.
35428         (FE_TOWARDZERO): Likewise.
35430 2012-11-02  Chris Metcalf  <cmetcalf@tilera.com>
35432         * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
35434 2012-11-03  Andreas Schwab  <schwab@linux-m68k.org>
35436         * scripts/cross-test-ssh.sh (command): Use newlines to separate
35437         commands.  Quote $PWD.
35438         (blacklist_exports): Don't use remove_newlines.  Replace "declare
35439         -x" by "export".
35440         (remove_newlines): Remove.
35442 2012-11-02  H.J. Lu  <hongjiu.lu@intel.com>
35444         * stdlib/Makefile (headers): Add bits/stdlib-float.h.
35445         * stdlib/stdlib.h (atof): Moved to ...
35446         * include/bits/stdlib-float.h: Here.  New file.
35447         * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
35448         * stdlib/bits/stdlib-float.h: New file.
35449         * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
35450         -mno-sse -mno-mmx.
35451         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
35452         <xmmintrin.h>.
35454 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
35456         * conform/conformtest.pl (@headers): Add fenv.h.
35457         * conform/data/fenv.h-data: New file.
35458         * include/fenv.h [_ISOMAC]: Disable all contents of file except
35459         include of <math/fenv.h>.
35461         * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
35462         POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
35463         && !UNIX98].  Enables tests for XOPEN2K8.
35464         * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
35465         POSIX2008]: Likewise.
35467         * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
35468         (struct rusage): Do not expect type or its members.
35470         [BZ #3439]
35471         * math/math.h (FP_NAN): Define macro to integer constant usable in
35472         #if and use that to give value to enum constant.
35473         (FP_INFINITE): Likewise.
35474         (FP_ZERO): Likewise.
35475         (FP_SUBNORMAL): Likewise.
35476         (FP_NORMAL): Likewise.
35478 2012-11-02  Andreas Schwab  <schwab@linux-m68k.org>
35480         * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
35481         * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
35482         arguments.
35484 2012-11-02  Roland McGrath  <roland@hack.frob.com>
35486         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
35487         Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
35488         autoconf-time if not.
35489         * configure.in: Remove AC_PREREQ.
35491 2012-11-02  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
35493         * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
35494         __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
35495         of the internal implementation.
35497 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
35499         * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
35500         except include of <misc/sys/syslog.h>.
35502 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
35504         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
35505         function returns with a NULL context exit with zero.
35507 2012-11-01  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
35509         * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
35511 2012-11-01  H.J. Lu  <hongjiu.lu@intel.com>
35513         * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
35514         (run_program_cmd): This.
35515         * localedata/tst-langinfo.sh (run_program_prefix): Removed.
35516         (tst_langinfo): New variable.  Use it.
35518 2012-11-01  Sebastan Andrzej Siewior  <bigeasy@linutronix.de>
35520         * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
35521         floating point opcodes.
35523 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
35525         * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
35526         variable.
35528         * elf/dl-support.c: Unconditionally include "setup-vdso.h".
35530         * sysdeps/mach/hurd/powerpc: Remove directory.
35531         * sysdeps/mach/powerpc: Likewise.
35533 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
35535         * scripts/check-local-headers.sh: Ignore c++ headers.
35537 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
35539         * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
35540         __libc_cleanup_region_start argument.
35542 2012-11-01  Joseph Myers  <joseph@codesourcery.com>
35544         [BZ #14784]
35545         [BZ #14785]
35546         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
35547         x * y using scaling, not as x * y + z.
35548         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
35549         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
35550         * math/libm-test.inc (fma_test): Add more tests.
35551         (fma_test_towardzero): Likewise.
35552         (fma_test_downward): Likewise.
35553         (fma_test_upward): Likewise.
35555 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
35557         * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
35559 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
35561         * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
35562         New variable.
35564 2012-10-31  Thomas Schwinge  <thomas@codesourcery.com>
35566         * rt/tst-shm.c (worker): Correct checking for mmap failure.
35568 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
35570         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
35571         Fix sort order.
35572         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
35573         Likewise.
35575 2012-10-31  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
35577         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
35578         Fix the order of the list for glibc 2.17.
35579         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
35580         Likewise.
35582 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
35584         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
35586 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
35588         [BZ #14610]
35589         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
35590         for low part of x being zero before using __atanl (y).
35591         * math/libm-test.inc (atan2_test): Add another test.
35593         * manual/install.texi (Configuring and compiling): Document
35594         general use of test-wrapper and test-wrapper-env.
35595         * INSTALL: Regenerated.
35597         * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
35598         (__fma): Do not extract and scale down low bits on after-rounding
35599         systems when result rounded to normal precision would have normal
35600         exponent.
35601         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
35602         (__fmal): Do not extract and scale down low bits on after-rounding
35603         systems when result rounded to normal precision would have normal
35604         exponent.
35605         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
35606         (__fmal): Do not extract and scale down low bits on after-rounding
35607         systems when result rounded to normal precision would have normal
35608         exponent.
35609         * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
35610         macro.
35611         (fma_test): Add more tests.
35612         (fma_test_towardzero): Likewise.
35613         (fma_test_downward): Likewise.
35614         (fma_test_upward): Likewise.
35616 2012-10-30  H.J. Lu  <hongjiu.lu@intel.com>
35618         * sysdeps/i386/tininess.h: Renamed to ...
35619         * sysdeps/x86/tininess.h: This.
35620         * sysdeps/x86_64/tininess.h: Removed.
35622 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
35624         * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
35625         input.  Use $(build-program-cmd).
35626         ($(objpfx)tst-array1-static.out): Likewise.
35627         ($(objpfx)tst-array2.out): Likewise.
35628         ($(objpfx)tst-array3.out): Likewise.
35629         ($(objpfx)tst-array4.out): Likewise.
35630         ($(objpfx)tst-array5.out): Likewise.
35631         ($(objpfx)tst-array5-static.out): Likewise.
35633 2012-10-30  Chris Metcalf  <cmetcalf@tilera.com>
35635         * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
35636         if defined.
35638         * nss/nsswitch.h (nss_interface_function): Provide new
35639         macro for use with NSS functions.
35640         * grp/initgroups.c: Use new macro.
35641         * nss/getXXbyYY.c: Likewise.
35642         * nss/getXXbyYY_r.c: Likewise.
35643         * nss/getXXent.c: Likewise.
35644         * nss/getXXent_r.c: Likewise.
35645         * sysdeps/posix/getaddrinfo.c: Likewise.
35647 2012-10-30  Andreas Jaeger  <aj@suse.de>
35649         * po/ru.po: Update Russion translation from translation project.
35651 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
35653         [BZ #14152]
35654         [BZ #14783]
35655         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
35656         result and shift together with sticky bit instead of replicating
35657         round-to-nearest rounding.
35658         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
35659         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
35660         * math/libm-test.inc (fma_test): Add more tests.  Do not permit
35661         missing underflow exceptions.
35662         (fma_test_towardzero): Add more tests.
35663         (fma_test_downward): Likewise.
35664         (fma_test_upward): Likewise.
35666         [BZ #14047]
35667         * sysdeps/generic/tininess.h: New file.
35668         * sysdeps/i386/tininess.h: Likewise.
35669         * sysdeps/sh/tininess.h: Likewise.
35670         * sysdeps/x86_64/tininess.h: Likewise.
35671         * stdlib/tst-strtod-underflow.c: Likewise.
35672         * stdlib/tst-tininess.c: Likewise.
35673         * stdlib/strtod_l.c: Include <tininess.h>.
35674         (round_and_return): Do not set errno for exact underflow cases.
35675         Force an underflow exception when setting errno for underflow.
35676         Determine underflow based on rounding to normal precision if
35677         TININESS_AFTER_ROUNDING.
35678         * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
35679         ERANGE for exact underflow cases.
35680         * stdlib/Makefile (tests): Add tst-tininess and
35681         tst-strtod-underflow.
35682         ($(objpfx)tst-tininess): Use $(link-libm).
35683         ($(objpfx)tst-strtod-underflow): Likewise.
35685 2012-10-30  Andreas Jaeger  <aj@suse.de>
35687         [BZ#14767]
35688         * elf/Makefile (tests): Remove conditional for have-initfini-array
35689         since this is now always required and the variable does not exist
35690         anymore.
35691         (tests-static): Likewise.
35692         (modules-names): Likewise.
35694         * po/eo.po: Add Esperanto translation from translation project.
35696         * elf/tst-array1.c (fini_array): Make writeable so that it can be
35697         merged with constructor/destructor.
35698         (init_array): Likewise.
35699         * elf/tst-array2dep.c (fini_array): Likewise.
35700         (init_array): Likewise.
35702 2012-10-29  Mike Frysinger  <vapier@gentoo.org>
35704         * manual/message.texi: Delete @cartouche tags.
35706 2012-10-29  Pino Toscano  <toscano.pino@tiscali.it>
35708         * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
35709         EOPNOTSUPP.
35710         * sysdeps/mach/hurd/fsync.c: Likewise.
35712         * sysdeps/pthread/aio_notify.c (__aio_notify_only)
35713         [_POSIX_REALTIME_SIGNALS]: Change condition to
35714         [_POSIX_REALTIME_SIGNALS > 0].
35716 2012-10-27  Andreas Jaeger  <aj@suse.de>
35718         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
35719         [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
35720         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
35721         [__WORDSIZE != 64]: Likewise.
35723 2012-10-26  H.J. Lu  <hongjiu.lu@intel.com>
35725         *  iconvdata/tst-table.sh: Remove ${SHELL}.
35726         *  iconvdata/tst-tables.sh: Likewise.
35728 2012-10-25  David S. Miller  <davem@davemloft.net>
35730         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
35731         (__get_clockfreq_via_proc_openprom): Use strtoumax instead
35732         of strtoull.
35734         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
35735         ifunc-impl-list.c
35736         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
35737         * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
35738         * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
35739         file.
35741 2012-10-25  Roland McGrath  <roland@hack.frob.com>
35743         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
35744         (__get_clockfreq_via_proc_openprom): Use __getdents instead of
35745         __getdirentries.
35747 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
35748             Jim Blandy  <jimb@codesourcery.com>
35750         * scripts/cross-test-ssh.sh: New file.
35751         * manual/install.texi (Configuring and compiling): Document use of
35752         cross-test-ssh.sh.
35753         * INSTALL: Regenerated.
35755 2012-10-25  Pino Toscano  <toscano.pino@tiscali.it>
35757         * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
35758         EOPNOTSUPP.
35760 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
35762         * Makeconfig (run-program-prefix): Fix comment.
35764 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
35765             Jim Blandy  <jimb@codesourcery.com>
35767         * Makeconfig (test-wrapper): New variable,
35768         (test-wrapper-env): Likewise.
35769         [$(cross-compiling) = yes && $(test-wrapper) != ""]
35770         (run-built-tests): Define to yes.
35771         (run-program-prefix): Use $(test-wrapper).
35772         (built-program-cmd): Likewise.
35773         * Rules (make-test-out): Use $(test-wrapper-env) and
35774         $(host-built-program-cmd).
35775         * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
35776         ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
35777         tst-pathopt.sh.
35778         ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
35779         $(test-wrapper-env) to tst-rtld-load-self.sh.
35780         ($(objpfx)order2.out): Use $(test-wrapper).
35781         ($(objpfx)tst-initorder.out): Likewise.
35782         ($(objpfx)tst-initorder2.out): Likewise.
35783         ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
35784         * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
35785         (test_wrapper_env): New variable.  Use it to run ld.so.
35786         * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
35787         Use it to run ld.so.
35788         (test_wrapper_env): Likewise.
35789         * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
35790         $(test-wrapper) to run-iconv-test.sh.
35791         * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
35792         (ICONV): Use $test_wrapper.
35793         * posix/Makefile ($(objpfx)globtest.out): Pass
35794         $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
35795         globtest.sh, not $(run-program-prefix).
35796         * posix/globtest.sh (run_via_rtld_prefix): New variable.
35797         (test_wrapper): Likewise.
35798         (test_wrapper_env): Likewise.  Use it to run globtest with HOME
35799         set together with run_via_rtld_prefix.
35800         (run_program_prefix): Define in terms of test_wrapper and
35801         run_via_rtld_prefix.
35803 2012-10-24  Roland McGrath  <roland@hack.frob.com>
35805         * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
35806         * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
35807         Targets removed.
35809         [BZ #14743]
35810         * include/time.h: Remove librt_hidden_proto (clock_gettime).
35811         Declare __clock_getres, __clock_gettime, __clock_settime,
35812         __clock_nanosleep, and __clock_getcpuclockid.
35813         * rt/clock_gettime.c: Define __clock_gettime as an alias.
35814         Remove librt_hidden_def (clock_gettime).
35815         * sysdeps/unix/clock_gettime.c: Likewise.
35816         * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
35817         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
35818         * rt/clock_getres.c: Define __clock_getres as an alias.
35819         * sysdeps/posix/clock_getres.c: Likewise.
35820         * rt/clock_settime.c: Define __clock_settime as an alias.
35821         * sysdeps/unix/clock_settime.c: Likewise.
35822         * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
35823         * sysdeps/unix/clock_nanosleep.c: Likewise.
35824         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
35825         * rt/clock-compat.c: New file.
35826         * rt/Makefile (librt-routines): Add clock-compat and move
35827         $(clock-routines) to ...
35828         (routines): ... here, new variable.
35829         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
35830         Don't add get_clockfreq here.
35831         * rt/Versions (libc: GLIBC_2.17): New version set.
35832         Add clock_* symbols here.
35833         (libc: GLIBC_PRIVATE): New version set.  Add __clock_* symbols here.
35834         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
35835         (GLIBC_2.17): Add clock_* symbols.
35836         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
35837         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
35838         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
35839         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
35840         Likewise.
35841         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
35842         Likewise.
35843         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
35844         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
35845         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
35846         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
35847         * NEWS: Mention the move.
35849         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
35850         Use __open, __read, __close rather than their public counterparts.
35851         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
35852         (__get_clockfreq_via_cpuinfo): Likewise.
35853         (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
35854         (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
35856         * config.h.in (HAVE_IFUNC): New #undef.
35857         * configure.in: Define it if libc_cv_ld_gnu_indirect_function
35858         was successful.
35859         * configure: Regenerated.
35861 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
35863         * configure.in: Move READELF check to start of file.
35864         (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
35865         libc_cv_asm_gnu_indirect_function in the process.
35866         * configure: Regenerated.
35868 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
35870         * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
35871         send the output to /dev/null.
35872         (libc_cv_cc_with_libunwind): Likewise.
35873         (libc_cv_as_noexecstack): Likewise.
35874         * configure: Regenerate.
35876 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
35878         * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
35880         * posix/globtest.sh (TMPDIR): Do not set.
35881         (testdir): Define using ${common_objpfx}posix not $TMPDIR.
35882         (testout): Likewise.
35884 2012-10-24  Andreas Jaeger  <aj@suse.de>
35886         * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
35887         types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
35888         [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
35889         [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
35890         posix_fadvise64, posix_fallocate64.
35892         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
35893         (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
35894         (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
35895         Likewise.
35896         (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
35897         Likewise.
35898         (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
35900         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
35901         (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
35902         <bits/fcntl-linux.h>.
35903         (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
35905         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
35906         (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
35907         (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
35908         (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
35909         [__WORDSIZE != 64]: Likewise.
35911 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
35913         * Makeconfig (run-built-tests): New variable.
35914         * Rules [$(cross-compiling) = yes]: Change condition to
35915         [$(run-built-tests) = no].
35916         * catgets/Makefile [$(cross-compiling) != yes]: Change condition
35917         to [$(run-built-tests) = yes].
35918         * elf/Makefile [$(cross-compiling) = no]: Likewise
35919         * grp/Makefile [$(cross-compiling) = no]: Likewise.
35920         * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
35921         * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
35922         * intl/Makefile [$(cross-compiling) = no]: Likewise.
35923         * io/Makefile [$(cross-compiling) = no]: Likewise.
35924         * libio/Makefile [$(cross-compiling) = no]: Likewise.
35925         * malloc/Makefile [$(cross-compiling) = no]: Likewise.
35926         * misc/Makefile [$(cross-compiling) = no]: Likewise.
35927         * posix/Makefile [$(cross-compiling) = no]: Likewise.
35928         * resolv/Makefile [$(cross-compiling) = no]: Likewise.
35929         * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
35930         * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
35931         * string/Makefile [$(cross-compiling) = no]: Likewise.
35933         * posix/Makefile ($(objpfx)globtest.out): Pass
35934         $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
35935         $(rtld-installed-name).
35936         * posix/globtest.sh (elf_objpfx): Remove variable.
35937         (rtld_installed_name): Likewise.
35938         (library_path): Likewise.
35939         (run_program_prefix): New variable.  Use for running globtest
35940         binary.
35942 2012-10-23  Jim Blandy  <jimb@codesourcery.com>
35943             Joseph Myers  <joseph@codesourcery.com>
35945         * Makeconfig (host-built-program-cmd): New variable.
35946         * elf/Makefile (tst-stackguard1-ARGS): Use
35947         $(host-built-program-cmd).
35948         * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
35949         (tst-spawn-ARGS): Likewise.
35950         * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
35952 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
35953             Jim Blandy  <jimb@codesourcery.com>
35955         * Makeconfig (run-via-rtld-prefix): New variable.
35956         (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
35957         (built-program-cmd): Likewise.
35959 2012-10-22  Andreas Jaeger  <aj@suse.de>
35961         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
35962         __O_RSYNC if it exists, otherwise to O_SYNC.
35964 2012-10-22  Jim Blandy  <jimb@codesourcery.com>
35965             Joseph Myers  <joseph@codesourcery.com>
35967         * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
35968         /dev/null.
35969         * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
35970         from /dev/null
35971         * posix/tst-getconf.sh: Redirect getconf stdin in loop from
35972         /dev/null.
35974 2012-10-22  Andreas Jaeger  <aj@suse.de>
35976         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
35977         Define always.
35978         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
35980         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
35981         bits/fcntl-linux.h.
35983         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
35984         (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
35986         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
35987         to __O_LARGEFILE.
35988         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
35989         to __O_LARGEFILE.
35991 2012-10-21  Jim Blandy  <jimb@codesourcery.com>
35992             Joseph Myers  <joseph@codesourcery.com>
35994         * config.make.in (NM): New variable.
35996 2012-10-21  Andreas Jaeger  <aj@suse.de>
35998         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
35999         definitions and declarations that are provided by
36000         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
36002 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
36004         [BZ #14683]
36005         * elf/Makefile (tests-static): Add tst-leaks1-static.
36006         (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
36007         ($(objpfx)tst-leaks1-static): New rule.
36008         ($(objpfx)tst-leaks1-static-mem): Likewise.
36009         (tst-leaks1-static-ENV): New macro.
36010         * elf/dl-open.c (dl_open_worker): Check the main application
36011         only if SHARED is defined.
36012         * elf/tst-leaks1-static.c: New file.
36014 2012-10-20  Andreas Jaeger  <aj@suse.de>
36016         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
36017         generic values for Linux.
36018         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
36019         and declarations that are provided by <bits/fcntl-linux.h> and
36020         include <bits/fcntl-linux.h>.
36021         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
36022         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
36024 2012-10-20  Roland McGrath  <roland@hack.frob.com>
36026         * io/fcntl.h: Move include of <bits/types.h> to the top and
36027         include it unconditionally.
36029 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
36031         * wcsmbs/Makefile (tests-ifunc): New variable.
36032         (tests): Add $(tests-ifunc).
36033         * wcsmbs/test-wcschr-ifunc.c: New file.
36034         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
36035         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
36036         * wcsmbs/test-wcslen-ifunc.c: Likewise.
36037         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
36038         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
36040         * string/Makefile (tests-ifunc): New variable.
36041         (tests): Add $(tests-ifunc).
36042         * string/test-memccpy.c (TEST_NAME): New macro.
36043         * string/test-memchr.c (TEST_NAME): Likewise.
36044         * string/test-memcmp.c (TEST_NAME): Likewise.
36045         * string/test-memcpy.c (TEST_NAME): Likewise.
36046         * string/test-memmem.c (TEST_NAME): Likewise.
36047         * string/test-memmove.c (TEST_NAME): Likewise.
36048         * string/test-memset.c (TEST_NAME): Likewise.
36049         * string/test-rawmemchr.c (TEST_NAME): Likewise.
36050         * string/test-stpcpy.c (TEST_NAME): Likewise.
36051         * string/test-stpncpy.c (TEST_NAME): Likewise.
36052         * string/test-strcasecmp.c (TEST_NAME): Likewise.
36053         * string/test-strcasestr.c (TEST_NAME): Likewise.
36054         * string/test-strcat.c (TEST_NAME): Likewise.
36055         * string/test-strchr.c (TEST_NAME): Likewise.
36056         * string/test-strcmp.c(TEST_NAME): Likewise.
36057         * string/test-strcpy.c (TEST_NAME): Likewise.
36058         * string/test-strcspn.c (TEST_NAME): Likewise.
36059         * string/test-strlen.c (TEST_NAME): Likewise.
36060         * string/test-strncasecmp.c (TEST_NAME): Likewise.
36061         * string/test-strncmp.c (TEST_NAME): Likewise.
36062         * string/test-strncpy.c (TEST_NAME): Likewise.
36063         * string/test-strnlen.c (TEST_NAME): Likewise.
36064         * string/test-strpbrk.c (TEST_NAME): Likewise.
36065         * string/test-strrchr.c (TEST_NAME): Likewise.
36066         * string/test-strspn.c (TEST_NAME): Likewise.
36067         * string/test-strstr.c (TEST_NAME): Likewise.
36068         * string/test-bcopy-ifunc.c: New file.
36069         * string/test-bzero-ifunc.c: Likewise.
36070         * string/test-memccpy-ifunc.c: Likewise.
36071         * string/test-memchr-ifunc.c: Likewise.
36072         * string/test-memcmp-ifunc.c: Likewise.
36073         * string/test-memcpy-ifunc.c: Likewise.
36074         * string/test-memmem-ifunc.c: Likewise.
36075         * string/test-memmove-ifunc.c: Likewise.
36076         * string/test-mempcpy-ifunc.c: Likewise.
36077         * string/test-memset-ifunc.c: Likewise.
36078         * string/test-rawmemchr-ifunc.c: Likewise.
36079         * string/test-stpcpy-ifunc.c: Likewise.
36080         * string/test-stpncpy-ifunc.c: Likewise.
36081         * string/test-strcasecmp-ifunc.c: Likewise.
36082         * string/test-strcasestr-ifunc.c: Likewise.
36083         * string/test-strcat-ifunc.c: Likewise.
36084         * string/test-strchr-ifunc.c: Likewise.
36085         * string/test-strchrnul-ifunc.c: Likewise.
36086         * string/test-strcmp-ifunc.c: Likewise.
36087         * string/test-strcpy-ifunc.c: Likewise.
36088         * string/test-strcspn-ifunc.c: Likewise.
36089         * string/test-strlen-ifunc.c: Likewise.
36090         * string/test-strncasecmp-ifunc.c: Likewise.
36091         * string/test-strncat-ifunc.c: Likewise.
36092         * string/test-strncmp-ifunc.c: Likewise.
36093         * string/test-strncpy-ifunc.c: Likewise.
36094         * string/test-strnlen-ifunc.c: Likewise.
36095         * string/test-strpbrk-ifunc.c: Likewise.
36096         * string/test-strrchr-ifunc.c: Likewise.
36097         * string/test-strspn-ifunc.c: Likewise.
36098         * string/test-strstr-ifunc.c: Likewise.
36100         * debug/Makefile (tests-ifunc): New variable.
36101         (tests): Add $(tests-ifunc).
36102         * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
36103         * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
36104         * debug/test-stpcpy_chk-ifunc.c: New file.
36105         * debug/test-strcpy_chk-ifunc.c: Likewise.
36107 2012-10-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
36109         [BZ #13601]
36110         * elf/dl-load.c (open_verify): Retry read if the entire ELF
36111         header is not read in.
36113 2012-10-19  Joseph Myers  <joseph@codesourcery.com>
36115         * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh.  Pass
36116         script to $(SHELL) as $<.  Pass $(common-objpfx) to script
36117         directly.  Pass built executable to script as
36118         $(built-program-cmd).
36119         * io/ftwtest-sh (ldso): Remove variable.  Run ftwtest directly as
36120         $testprogram without using LD_LIBRARY_PATH and $ldso.
36122         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
36123         $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
36124         $(rtld-installed-name).
36125         * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
36126         (rtld_installed_name): Likewise.
36127         (library_path): Likewise.
36128         (run_program_prefix): New variable.  Use it to run tst_fgetgrent.
36129         * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
36130         $(run-program-prefix) to tst-tables.sh.
36131         * iconvdata/tst-table.sh (run_program_prefix): New variable.  Use
36132         it to run tst-table-from and tst-table-to.
36133         * iconvdata/tst-tables.sh (run_program_prefix): New variable.
36134         Pass it to tst-table.sh.
36135         * intl/Makefile ($(objpfx)tst-gettext.out): Pass
36136         $(run-program-prefix) to tst-gettext.sh.
36137         ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
36138         tst-translit.sh.
36139         ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
36140         tst-gettext2.sh.
36141         * intl/tst-gettext.sh (run_program_prefix): New variable.  Use it
36142         to run tst-gettext.
36143         * intl/tst-gettext2.sh (run_program_prefix): New variable.  Use it
36144         to run tst-gettext2.
36145         * intl/tst-translit.sh (run_program_prefix): New variable.  Use it
36146         to run tst-translit.
36147         * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
36148         $(run-program-prefix) to tst-mtrace.sh.
36149         * malloc/tst-mtrace.sh (run_program_prefix): New variable.  Use it
36150         to run tst-mtrace.
36151         * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
36152         $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
36153         $(rtld-installed-name).
36154         * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
36155         (rtld_installed_name): Likewise.
36156         (run_program_prefix): New variable.  Use it to run wordexp-test.
36158         * Makeconfig (ARCH): Remove all definitions.
36159         (machine): Likewise.
36160         [ARCH]: Remove conditional code.
36161         [!objdir]: Give error.
36162         [!objdir] (objpfx): Remove.
36163         [!objdir] (common-objpfx): Likewise.
36164         [!objdir] (common-objdir): Likewise.
36165         * configure.in (config_makefile): Remove.  Hardcode Makefile in
36166         AC_CONFIG_FILES call.
36167         * configure: Regenerated.
36169         [BZ #13888]
36170         * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
36171         or TMPDIR.
36172         (testout): Likewise.
36174         * posix/Makefile ($(objpfx)tst-getconf.out): Pass
36175         $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
36176         $(rtld-installed-name).
36177         * posix/tst-getconf.sh (elf_objpfx): Remove variable.
36178         (rtld_installed_name): Likwise.
36179         (runit): Remove function.
36180         (run_getconf): New variable,  Use it for running getconf binary.
36182 2012-10-18  H.J. Lu  <hongjiu.lu@intel.com>
36184         [BZ #14716]
36185         * string/test-memmem.c (check_result): New function.
36186         (do_one_test): Use it.
36187         (check1): New function.
36188         (test_main): Use it.
36190 2012-10-18  Markus Trippelsdorf  <markus@trippelsdorf.de>
36192         * math/Makefile: Comment on slow compilation of test-tgmath2.c.
36194 2012-10-18  Joseph Myers  <joseph@codesourcery.com>
36196         * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
36197         (_G_LSEEK64): Likewise.
36198         (_G_MMAP64): Likewise.
36199         (_G_FSTAT64): Likewise.
36200         * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
36201         (_G_LSEEK64): Likewise.
36202         (_G_MMAP64): Likewise.
36203         (_G_FSTAT64): Likewise.
36204         * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
36205         unconditional.  Call __mmap64 directly.
36206         (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
36207         (mmap_remap_check) [_G_LSEEK64]: Make code unconditional.  Call
36208         __lseek64 directly.
36209         (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
36210         (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional.  Call
36211         __mmap64 directly.
36212         (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
36213         (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional.  Call
36214         __lseek64 directly.
36215         (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
36216         (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional.  Call
36217         __lseek64 directly.
36218         (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
36219         (_IO_file_seek) [_G_LSEEK64]: Make code unconditional.  Call
36220         __lseek64 directly.
36221         (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
36222         (_IO_file_stat) [_G_FSTAT64]: Make code unconditional.  Call
36223         __fxstat64 directly.
36224         (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
36225         * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
36226         unconditional.
36227         (freopen64) [!_G_OPEN64]: Remove conditional code.
36228         * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
36229         unconditional.
36230         (fseeko64) [!_G_LSEEK64]: Remove conditional code.
36231         * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
36232         unconditional.
36233         (ftello64) [!_G_LSEEK64]: Remove conditional code.
36234         * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
36235         unconditional.
36236         (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
36237         * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
36238         unconditional.
36239         (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
36240         * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
36241         unconditional.
36242         (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
36243         * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
36244         unconditional.
36245         (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
36246         * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
36247         unconditional.
36248         (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
36250 2012-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
36252         [BZ #12140]
36253         * manual/memory.texi (Malloc Tunable Parameters): Add note
36254         about free list pointers overwriting some perturb bytes.
36255         Wording suggested by Roland McGrath.
36257 2012-10-17  Joseph Myers  <joseph@codesourcery.com>
36259         * math/libm-test.inc (gamma_test): Do not call feclearexcept.
36260         (lgamma_test): Likewise.
36261         (tgamma_test): Likewise.
36263 2012-10-16  Florian Weimer  <fweimer@redhat.com>
36265         [BZ #14700]
36266         * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
36267         (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
36269 2012-10-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
36271         * NEWS: Mention BZ #14716.
36272         * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
36273         when removing AVAILABLE1_USES_J macro.
36275 2012-10-12  H.J. Lu  <hongjiu.lu@intel.com>
36277         * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
36278         (__bswap_64): __uint64_t for unsigned 64-bit int.
36280 2012-10-12  Andreas Schwab  <schwab@linux-m68k.org>
36282         * include/string.h (memmem): Declare libc hidden alias.
36283         * string/memmem.c (memmem): Define libc hidden alias.
36284         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
36285         __read, __close instead of open, read, close.
36287 2012-10-11  H.J. Lu  <hongjiu.lu@intel.com>
36289         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
36290         * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
36291         global and hidden.
36292         * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
36293         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
36294         * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
36295         Likewise.
36296         (__rawmemchr_sse2): Likewise.
36297         * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
36298         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
36299         (__strchr_sse2): Likewise.
36300         * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
36301         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
36302         (__strcasecmp_sse2): Likewise.
36303         (__strncasecmp_sse2): Likewise.
36304         * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
36305         * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
36306         * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
36307         * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
36308         (__strrchr_sse2): Likewise.
36309         * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
36310         ifunc-impl-list.c.
36311         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
36312         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
36313         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
36314         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
36315         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
36316         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
36317         * sysdeps/x86_64/multiarch/memset.S: Likewise.
36318         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
36319         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
36320         * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
36321         * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
36322         * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
36323         * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
36324         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
36325         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
36326         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
36327         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
36328         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
36329         * sysdeps/x86_64/multiarch/strlen.S: Likewise.
36330         * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
36331         * sysdeps/x86_64/multiarch/strncat.S: Likewise.
36332         * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
36333         * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
36334         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
36335         * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
36336         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
36337         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
36338         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
36339         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
36340         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
36342         * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
36343         global and hidden.
36344         * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
36345         * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
36346         * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
36347         * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
36348         Likewise.
36349         * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
36350         Likewise.
36351         * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
36352         * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
36353         * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
36354         * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
36355         ifunc-impl-list.c.
36356         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
36357         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
36358         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
36359         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
36360         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
36361         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
36362         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
36363         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
36364         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
36365         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
36366         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
36367         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
36368         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
36369         * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
36370         * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
36371         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
36372         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
36373         * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
36374         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
36375         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
36376         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
36377         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
36378         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
36379         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
36380         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
36381         * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
36382         * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
36383         * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
36384         * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
36385         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
36386         * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
36387         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
36388         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
36389         * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
36390         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
36391         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
36392         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
36393         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
36394         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
36395         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
36396         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
36398         * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
36399         [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
36400         * include/ifunc-impl-list.h: New file.
36401         * misc/ifunc-impl-list.c: Likewise.
36402         * misc/Makefile (routines): Add ifunc-impl-list.
36403         * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
36404         * string/test-string.h: Include <ifunc-impl-list.h>.
36405         (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
36406         TEST_NAME]: New variables.
36407         (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
36408         are defined.
36409         (test_init): Call __libc_ifunc_impl_list to initialize
36410         func_list if TEST_IFUNC and TEST_NAME are defined.
36412         * string/Makefile (strop-tests): Add bcopy and bzero.
36413         * string/test-bcopy.c: New file.
36414         * string/test-bzero.c: Likewise.
36415         * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
36416         defined.
36417         * string/test-memset.c: Support bzero test if TEST_BZERO is
36418         defined.
36419         * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
36420         __libc_memmove.
36421         * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
36422         __libc_memset.
36423         * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
36424         of memset.
36426 2012-10-10  Joseph Myers  <joseph@codesourcery.com>
36428         * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
36429         * configure: Regenerated.
36431         * Makeconfig (+link-static-before-libc): Don't include
36432         $(link-static-libc).
36434         * libio/libio.h (_IO_pos_t): Remove.
36436 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
36438         * NEWS: Add note about FIPS mode.  Wording suggested by Roland
36439         McGrath.
36441 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
36443         * crypt/crypt-entry.c: Include fips-private.h.
36444         (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
36445         * crypt/md5c-test.c (main): Tolerate disabled MD5.
36446         * sysdeps/unix/sysv/linux/fips-private.h: New file.
36447         * sysdeps/generic/fips-private.h: New file, dummy fallback.
36449 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
36451         * crypt/crypt-private.h: Include stdbool.h.
36452         (_ufc_setup_salt_r): Return bool.
36453         * crypt/crypt-entry.c: Include errno.h.
36454         (__crypt_r): Return NULL with EINVAL for bad salt.
36455         * crypt/crypt_util.c (bad_for_salt): New.
36456         (_ufc_setup_salt_r): Check that salt is long enough and within
36457         the specified alphabet.
36458         * crypt/badsalttest.c: New file.
36459         * crypt/Makefile (tests): Add it.
36460         ($(objpfx)badsalttest): New.
36462 2012-10-09  Maxim Kuvyrkov  <maxim@codesourcery.com>
36464         * NEWS: Add entry for BZ #14602.
36466 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
36468         * math/gen-libm-test.pl (parse_args): Handle comparison macros as
36469         type-generic.
36470         * math/libm-test.inc: Update comment listing what functions and
36471         macros are tested.
36472         (isgreater_test): New function.
36473         (isgreaterequal_test): Likewise.
36474         (isless_test): Likewise.
36475         (islessequal_test): Likewise.
36476         (islessgreater_test): Likewise.
36477         (isunordered_test): Likewise.
36478         (main): Call the new functions.
36480 2012-10-09  Roland McGrath  <roland@hack.frob.com>
36482         * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
36483         _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
36484         AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
36485         * sysdeps/i386/configure: Regenerated.
36486         * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
36487         * sysdeps/mach/configure: Regenerated.
36488         * sysdeps/mach/hurd/configure: Regenerated.
36489         * sysdeps/powerpc/configure: Regenerated.
36490         * sysdeps/powerpc/powerpc32/configure: Regenerated.
36491         * sysdeps/powerpc/powerpc64/configure: Regenerated.
36492         * sysdeps/s390/s390-32/configure: Regenerated.
36493         * sysdeps/s390/s390-64/configure: Regenerated.
36494         * sysdeps/sh/configure: Regenerated.
36495         * sysdeps/sparc/configure: Regenerated.
36496         * sysdeps/unix/sysv/linux/configure: Regenerated.
36497         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
36498         * sysdeps/x86_64/configure: Regenerated.
36500         * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
36501         defined.  Don't check if MAP is NULL.
36503 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
36505         * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
36506         (_G_stat64): Likewise.
36507         * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
36508         (_G_stat64): Likewise.
36509         * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
36510         instead of struct _G_stat64.
36511         * libio/fileops.c (mmap_remap_check): Likewise.
36512         (decide_maybe_mmap): Likewise.
36513         (_IO_new_file_seekoff): Likewise.
36514         (_IO_file_stat): Likewise.
36515         * libio/libio.h (_IO_off64_t): Define to __off64_t, not
36516         _G_off64_t.
36517         * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
36518         instead of struct _G_stat64.
36519         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
36521 2012-10-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
36523         [BZ #14602]
36524         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
36525         Replace with ...
36526         (CHECK_EOL): New macro.
36527         (two_way_short_needle): Check beginning of haystack for EOL.  Use
36528         CHECK_EOL.
36529         * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
36530         Replace with CHECK_EOL.
36531         * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
36532         Replace with CHECK_EOL.
36534 2012-10-08  Joseph Myers  <joseph@codesourcery.com>
36536         * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
36537         type-generic.
36538         * math/libm-test.inc: Update comment listing what functions and
36539         macros are tested.
36540         (finite_test): New function.
36541         (isinf_test): Likewise.
36542         (isnan_test): Likewise.
36543         (fpclassify_test): Test subnormal input.
36544         (isfinite_test): Likewise.
36545         (isnormal_test): Likewise.
36546         (main): Call the new functions.
36548 2012-10-08  Jonathan Nieder  <jrnieder@gmail.com>
36550         [BZ #14660]
36551         * Makerules (%.dynsym): Force C locale when running
36552         $(OBJDUMP) --dynamic-syms.
36554 2012-10-08  Andreas Schwab  <schwab@linux-m68k.org>
36556         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
36557         <stdint.h>.
36559 2012-10-06  David S. Miller  <davem@davemloft.net>
36561         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
36562         upper 32-bits of the length value in %o2 since we use branch-on-register
36563         tests which consider the entire 64-bit register.
36565 2012-10-06  H.J. Lu  <hongjiu.lu@intel.com>
36567         * string/test-strstr.c (check2): Add a test for page boundary.
36569 2012-10-05  David S. Miller  <davem@davemloft.net>
36571         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
36572         * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
36573         file.
36574         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
36575         sysdep_routines.
36576         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
36577         * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
36578         and bzero when HWCAP_SPARC_CRYPTO is present.
36580 2012-10-05  H.J. Lu  <hongjiu.lu@intel.com>
36582         [BZ #14602]
36583         * string/test-strstr.c (check2): New function.
36584         (test_main): Call check2.
36586         * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
36587         and bug-strchr1.
36588         * string/bug-strcasestr1.c (do_test): Moved to ...
36589         * string/test-strcasestr.c (check1): Here.  New function.
36590         (do_one_test): Break out result checking code into ...
36591         (check_result): This.  New function.
36592         (do_one_test): Call check_result.
36593         (test_main): Call check1.
36594         * string/bug-strchr1.c (do_test): Moved to ...
36595         * string/test-strchr.c (check1): Here.  New function.
36596         (do_one_test): Break out result checking code into ...
36597         (check_result): This.  New function.
36598         (do_one_test): Call check_result.
36599         (test_main): Call check1.
36600         * string/bug-strstr1.c (main): Moved to ...
36601         * string/test-strstr.c (check1): Here.  New function.
36602         (do_one_test): Break out result checking code into ...
36603         (check_result): This.  New function.
36604         (do_one_test): Call check_result.
36605         (test_main): Call check1.
36606         * string/bug-strcasestr1.c: Removed.
36607         * string/bug-strchr1.c: Likewise.
36608         * string/bug-strstr1.c: Likewise.
36610         * elf/Makefile (dl-routines): Add hwcaps.
36611         * elf/dl-support.c (_dl_important_hwcaps): Removed.
36612         * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
36613         (_dl_important_hwcaps): Moved to ...
36614         * elf/dl-hwcaps.c: Here.  New file.
36615         * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
36617         [BZ #14557]
36618         * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
36619         if IS_IN_rtld isn't defined.
36621         * elf/dl-support.c (_dl_sysinfo_map): New.
36622         Include "get-dynamic-info.h" and "setup-vdso.h".
36623         (_dl_non_dynamic_init): Call setup_vdso.
36624         * elf/dynamic-link.h: Don't include <assert.h>.
36625         (elf_get_dynamic_info): Moved to ...
36626         * elf/get-dynamic-info.h: Here.  New file.
36627         * elf/dynamic-link.h: Include "get-dynamic-info.h".
36628         * elf/rtld.c (dl_main): Break out vDSO setup code into ...
36629         * elf/setup-vdso.h: Here.  New file.
36630         * elf/rtld.c: Include "setup-vdso.h".
36631         (dl_main): Call setup_vdso.
36633 2012-10-05  Joseph Myers  <joseph@codesourcery.com>
36635         * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
36636         creal in comment listing functions tested.  List finite, isinf,
36637         isnan, isless, islessequal, isgreater, isgreaterequal,
36638         islessgreater, isunordered, lgamma_r and pow10 as functions and
36639         macros not tested.  Mention which functions not tested are aliases
36640         for other functions.  Fix typo.  Note that signs of NaNs are not
36641         tested.
36643         * scripts/config.guess: Update from config.git.
36644         * scripts/config.sub: Likewise.
36646 2012-10-04  Roland McGrath  <roland@hack.frob.com>
36648         * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
36649         * misc/madvise.c (madvise): Renamed to __madvise.
36650         Make madvise a weak alias.
36651         * include/sys/mman.h: Declare __madvise.
36652         Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
36653         * sysdeps/unix/syscalls.list
36654         (madvise): Make __madvise the strong name, and madvise a weak alias.
36655         * sysdeps/unix/sysv/linux/syscalls.list
36656         (madvise, mmap): Remove redundant entries.
36657         * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
36658         * malloc/malloc.c (mtrim): Likewise.
36659         * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
36661 2012-10-03  Roland McGrath  <roland@hack.frob.com>
36663         * sysdeps/mach/hurd/dl-cache.c: File removed.
36664         * config.h.in (USE_LDCONFIG): New #undef.
36665         * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
36666         * configure: Regenerated.
36667         * elf/Makefile (dl-routines): Add dl-cache only under
36668         [$(use-ldconfig) = yes].
36669         * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
36670         cache on [USE_LDCONFIG].
36671         * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
36672         [USE_LDCONFIG].
36673         * elf/rtld.c (dl_main): Likewise.
36675 2012-10-03  Pino Toscano  <toscano.pino@tiscali.it>
36677         * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
36678         _SC_LEVEL4_CACHE_LINESIZE.
36680 2012-10-03  Roland McGrath  <roland@hack.frob.com>
36682         * sysdeps/unix/bsd/confstr.h: File removed.
36684 2012-10-02  Alexandre Oliva <aoliva@redhat.com>
36686         * scripts/check-local-headers.sh: Exclude sys/sdt.h and
36687         sys/sdt-config.h.
36689 2012-10-02  Roland McGrath  <roland@hack.frob.com>
36691         * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
36692         Make 'mapoff' field ElfW(Off) rather than off_t.
36694 2012-10-02  Dmitry V. Levin  <ldv@altlinux.org>
36696         * nscd/Makefile: Remove nscd-cflags and all its users.
36697         (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
36698         (CFLAGS-nonlib): Add compiler flags for nscd modules.
36700         [BZ #10631]
36701         * malloc.c (malloc_printerr): Clarify error message.
36703 2012-10-02  H.J. Lu  <hongjiu.lu@intel.com>
36705         [BZ #14648]
36706         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
36707         Set bit_FMA_Usable if FMA is supported.
36708         * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
36709         macro.
36710         (bit_FMA4_Usable): Updated.
36711         (index_FMA_Usable): New macro.
36712         (CPUID_FMA): Likewise
36713         (HAS_FMA): Defined with bit_FMA_Usable.
36715 2012-10-01  Roland McGrath  <roland@hack.frob.com>
36717         * bits/types.h (__swblk_t): Type removed.
36718         * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
36719         * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
36720         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
36721         (__SWBLK_T_TYPE): Likewise.
36722         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
36723         (__SWBLK_T_TYPE): Likewise.
36724         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
36725         (__SWBLK_T_TYPE): Likewise.
36726         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
36727         (__SWBLK_T_TYPE): Likewise.
36729 2012-10-01  Patsy Franklin <pfrankli@redhat.com>
36730             Honza Horak <hhorak@redhat.com>
36732         * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
36733         (xdr_mapname): Use YPMAXMAP as maxsize.
36734         (xdr_peername): Use YPMAXPEER as maxsize.
36735         (xdr_keydat): Use YPAXRECORD as maxsize.
36736         (xdr_valdat): Use YPMAXRECORD as maxsize.
36738 2012-10-01  Roland McGrath  <roland@hack.frob.com>
36740         * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
36742         * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
36743         * csu/init-first.c: ... here.
36744         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
36745         * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
36746         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
36747         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
36748         * sysdeps/i386/init-first.c: File removed.
36749         * sysdeps/sh/init-first.c: File removed.
36751 2012-10-01  Joseph Myers  <joseph@codesourcery.com>
36753         [BZ #14645]
36754         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
36755         if x * y might underflow to zero and z is zero.
36756         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
36757         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
36758         * math/libm-test.inc (min_subnorm_value): New variable.
36759         (fma_test): Add more tests.
36760         (fma_test_towardzero): Likewise.
36761         (fma_test_downward): Likewise
36762         (fma_test_upward): Likewise.
36763         (initialize): Set min_subnorm_value.
36765 2012-09-29  Joseph Myers  <joseph@codesourcery.com>
36767         [BZ #14638]
36768         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
36769         0 + 0.
36770         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
36771         mode for addition resulting in exact zero.
36772         * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
36773         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
36774         exact 0 + 0.
36775         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
36776         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
36777         * math/libm-test.inc (fma_test): Add more tests.
36778         (fma_test_towardzero): New function.
36779         (fma_test_downward): Likewise.
36780         (fma_test_upward): Likewise.
36781         (main): Call the new functions.
36783 2012-09-28  David S. Miller  <davem@davemloft.net>
36785         * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
36787 2012-09-28  Roland McGrath  <roland@hack.frob.com>
36789         * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
36790         instead of SIGALRM.
36792         * sysdeps/gnu/_G_config.h: Moved to ...
36793         * sysdeps/unix/sysv/linux/_G_config.h: ... here.
36794         * sysdeps/mach/hurd/_G_config.h: Moved to ...
36795         * sysdeps/generic/_G_config.h: ... here.
36797         * io/open.c (__open): Renamed to __libc_open.  Make __open an alias.
36799         * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
36801         * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
36802         Conditionalize target on [libnss_test1.so-version].
36804         * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
36806         * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
36807         (elfobjdir): Move out of conditionals.
36809         * nss/nsswitch.c (nss_new_service): Conditionalize definition and
36810         declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
36811         (__nss_lookup_function): Conditionalize label remove_from_tree on
36812         [!DO_STATIC_NSS || SHARED], matching its only use.
36814 2012-09-28  David S. Miller  <davem@davemloft.net>
36816         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
36817         * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
36818         file.
36819         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
36820         sysdep_routines.
36821         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
36822         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
36823         when HWCAP_SPARC_CRYPTO is present.
36825 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
36827         * io/tst-mknodat.c: Create a FIFO instead of a socket.
36829 2012-09-28  Andreas Schwab  <schwab@linux-m68k.org>
36831         [BZ #6530]
36832         * stdio-common/vfprintf.c (process_string_arg): Revert
36833         2000-07-22 change.
36835 2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>
36837         * stdio-common/Makefile (tst-sprintf-ENV): Set environment
36838         for testcase.
36839         * stdio-common/tst-sprintf.c: Include <locale.h>
36840         (main): Test sprintf's handling of incomplete multibyte
36841         characters.
36843 2012-09-28  H.J. Lu  <hongjiu.lu@intel.com>
36845         * elf/dl-runtime.c (VERSYMIDX): Removed.
36846         * elf/dl-version.c (VERSYMIDX): Likewise.
36847         * elf/do-rel.h (VERSYMIDX): Likewise.
36848         (VALIDX): Likewise.
36849         * elf/dynamic-link.h (VERSYMIDX): Likewise.
36850         * elf/rtld.c (VALIDX): Likewise.
36851         (ADDRIDX): Likewise.
36852         * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
36853         * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
36854         * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
36855         * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
36856         (VALIDX): Likewise.
36857         (ADDRIDX): Likewise.
36859 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
36861         * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
36863 2012-09-28  Dmitry V. Levin  <ldv@altlinux.org>
36865         [BZ #11438]
36866         * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
36867         to global scope.
36868         * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
36869         addresses are in the same scope as 192.0.2/24.
36870         * posix/gai.conf: Document new scope table defaults.
36872 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
36874         [BZ #5298]
36875         * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
36876         for ftell.  Compute offsets from write pointers instead.
36877         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
36879 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
36881         [BZ #14543]
36882         * libio/Makefile (tests): New test case tst-fseek.
36883         * libio/tst-fseek.c: New test case to verify that fseek/ftell
36884         combination works in wide mode.
36885         * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
36886         state when the external buffer state changes.
36888 2012-09-27  David S. Miller  <davem@davemloft.net>
36890         [BZ #14376]
36891         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
36892         pass reloc->r_addend in as the 'high' argument to
36893         sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
36895         * sysdeps/sparc/fpu/libm-test-ulps: Update.
36897 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
36899         * rt/tst-aio2.c: Include <pthread.h>.
36900         * rt/tst-aio3.c: Likewise.
36902 2012-09-27  Steve Ellcey  <sellcey@mips.com>
36904         * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
36906 2012-09-27  H.J. Lu  <hongjiu.lu@intel.com>
36908         * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
36909         contents on [SHARED].
36911 2012-09-26  Marek Polacek  <polacek@redhat.com>
36913         [BZ #14530]
36914         [BZ #13741]
36915         * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
36916         for C++ and GCC <4.3 as well as for non GCC compilers.
36918 2012-09-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
36920         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36922 2012-09-25  Roland McGrath  <roland@hack.frob.com>
36924         * Makefile.in (all, install): Declare with .PHONY.
36925         Reported by Michael Hope <michael.hope@linaro.org>.
36927 2012-09-25  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
36929         * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
36930         * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
36931         system header.
36932         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
36933         Likewise.
36934         (sydep_routines): Add the new and the internal functions.
36935         * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
36936         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
36937         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
36938         (GLIBC_2.17): Add the new function.
36939         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
36940         (GLIBC_2.17): Likewise.
36941         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
36942         (GLIBC_2.17): Likewise.
36943         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
36944         (GLIBC_2.17): Likewise.
36945         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
36947 2012-09-25  Alan Modra  <amodra@gmail.com>
36949         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
36950         Add release barrier before setting once_control to say
36951         initialisation is done.  Add hints on lwarx.  Use macro in
36952         place of isync.
36953         (clear_once_control): Add release barrier.
36955 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
36957         [BZ #13629]
36958         * math/s_clog.c (__clog): Handle more values close to |z| = 1
36959         specially.
36960         * math/s_clog10.c (__clog10): Likewise.
36961         * math/s_clog10f.c (__clog10f): Likewise.
36962         * math/s_clog10l.c (__clog10l): Likewise.
36963         * math/s_clogf.c (__clogf): Likewise.
36964         * math/s_clogl.c (__clogl): Likewise.
36965         * math/Makefile (libm-calls): Add x2y2m1.
36966         * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
36967         (__x2y2m1): Likewise.
36968         (__x2y2m1l): Likewise.
36969         * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
36970         * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
36971         * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
36972         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
36973         * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
36974         * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
36975         * math/libm-test.inc (clog_test, clog10_test): Add more tests.
36976         * sysdeps/i386/fpu/libm-test-ulps: Update.
36977         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36979         [BZ #14621]
36980         * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
36981         int as type of variable DEPTH.
36982         (glob): Use size_t instead of int as type of variables NEWCOUNT
36983         and OLD_PATHC.
36985 2012-09-25  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
36987         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
36988         Add s_sincosf-sse2.
36989         * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
36990         * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
36991         * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
36992         macros for using routine as __sincosf_ia32.
36993         Use macro for function declaration and weak_alias.
36994         * sysdeps/i386/fpu/libm-test-ulps: Update.
36996         * sysdeps/x86_64/fpu/s_sincosf.S: New file.
36997         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36999         * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
37000         subnormal argument.
37001         * math/s_cexpf.c (__cexpf): Likewise.
37002         * math/s_csinf.c (__csinf): Likewise.
37003         * math/s_csinhf.c (__csinhf): Likewise.
37004         * math/s_ctanf.c (__ctanf): Likewise.
37005         * math/s_ctanhf.c (__ctanhf): Likewise.
37006         * math/s_ccosh.c (__ccoshf): Likewise.
37007         * math/s_cexp.c (__cexpl): Likewise.
37008         * math/s_csin.c (__csin): Likewise.
37009         * math/s_csinh.c (__csinh): Likewise.
37010         * math/s_ctan.c (__ctan): Likewise.
37011         * math/s_ctanh.c (ctanh): Likewise.
37012         * math/s_ccoshl.c (__ccoshl): Likewise.
37013         * math/s_cexpl.c (__cexpl): Likewise.
37014         * math/s_csinl.c (__csinl): Likewise.
37015         * math/s_csinhl.c (__csinhl): Likewise.
37016         * math/s_ctanl.c (__ctanl): Likewise.
37017         * math/s_ctanhl.c (__ctanhl): Likewise.
37019 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
37021         * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
37022         (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
37023         (_IO_off_t): Define to __off_t, not _G_off_t.
37024         (_IO_pid_t): Define to __pid_t, not _G_pid_t.
37025         (_IO_uid_t): Define to __uid_t, not _G_uid_t.
37026         (_IO_wint_t): Define to wint_t, not _G_wint_t.
37027         * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
37028         type of __dummy and __dummy2 fields.
37029         * sysdeps/generic/_G_config.h (_G_size_t): Remove.
37030         (_G_ssize_t): Likewise.
37031         (_G_off_t): Likewise.
37032         (_G_pid_t): Likewise.
37033         (_G_uid_t): Likewise.
37034         (_G_wchar_t): Likewise.
37035         (_G_wint_t): Likewise.
37036         * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
37037         (_G_ssize_t): Likewise.
37038         (_G_off_t): Likewise.
37039         (_G_pid_t): Likewise.
37040         (_G_uid_t): Likewise.
37041         (_G_wchar_t): Likewise.
37042         (_G_wint_t): Likewise.
37043         * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
37044         (_G_ssize_t): Likewise.
37045         (_G_off_t): Likewise.
37046         (_G_pid_t): Likewise.
37047         (_G_uid_t): Likewise.
37048         (_G_wchar_t): Likewise.
37049         (_G_wint_t): Likewise.
37051 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
37053         * malloc/arena.c: Include malloc-sysdep.h.
37054         (shrink_heap): Use check_may_shrink_heap to decide if madvise
37055         is sufficient to shrink the heap or an unmap is needed.
37056         * sysdeps/generic/malloc-sysdep.h: New file.  Define
37057         new function check_may_shrink_heap.
37058         * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file.  Define
37059         new function check_may_shrink_heap.
37061 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
37063         * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
37064         comments.
37066 2012-09-24  Dmitry V. Levin  <ldv@altlinux.org>
37068         * catgets/test-gencat.sh: Add "set -e".
37069         * elf/tst-pathopt.sh: Likewise.
37070         * grp/tst_fgetgrent.sh: Likewise.
37071         * iconvdata/run-iconv-test.sh: Likewise.
37072         * intl/tst-gettext.sh: Likewise.
37073         * intl/tst-gettext2.sh: Likewise.
37074         * intl/tst-gettext4.sh: Likewise.
37075         * intl/tst-gettext6.sh: Likewise.
37076         * intl/tst-translit.sh: Likewise.
37077         * io/ftwtest-sh: Likewise.
37078         * libio/test-freopen.sh: Likewise.
37079         * malloc/tst-mtrace.sh: Likewise.
37080         * posix/globtest.sh: Likewise.
37081         * posix/tst-getconf.sh: Likewise.
37082         * posix/wordexp-tst.sh: Likewise.
37083         * stdio-common/tst-printf.sh: Likewise.
37084         * stdio-common/tst-unbputc.sh: Likewise.
37085         * stdlib/tst-fmtmsg.sh: Likewise.
37086         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
37087         * catgets/Makefile: Do not specify -e option when running
37088         testsuite shell scripts.
37089         * elf/Makefile: Likewise.
37090         * grp/Makefile: Likewise.
37091         * iconvdata/Makefile: Likewise.
37092         * intl/Makefile: Likewise.
37093         * io/Makefile: Likewise.
37094         * libio/Makefile: Likewise.
37095         * malloc/Makefile: Likewise.
37096         * posix/Makefile: Likewise.
37097         * stdio-common/Makefile: Likewise.
37098         * stdlib/Makefile: Likewise.
37099         * sysdeps/x86_64/Makefile: Likewise.
37101         * io/ftwtest-sh: Add copyright header.
37102         * posix/globtest.sh: Likewise.
37103         * posix/tst-getconf.sh: Likewise.
37104         * posix/wordexp-tst.sh: Likewise.
37105         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
37107 2012-09-24  H.J. Lu  <hongjiu.lu@intel.com>
37109         [BZ #13679]
37110         * Makeconfig (+link): Defined as $(+link-static) if
37111         $(build-shared) isn't yes.
37112         (link-tests): Defined as $(+link-static-tests) if $(build-shared)
37113         isn't yes.
37114         (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
37116         * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
37118         [BZ #14562]
37119         * malloc/arena.c (heap_trim): Properly get fencepost and adjust
37120         new chunk size with MALLOC_ALIGN_MASK.
37122 2012-09-24  Joseph Myers  <joseph@codesourcery.com>
37124         [BZ #5044]
37125         * stdio-common/printf_fphex.c: Include <stdbool.h> and
37126         <rounding-mode.h>.
37127         (__printf_fphex): Determine rounding using get_rounding_mode and
37128         round_away.
37129         * stdio-common/tst-printf-round.c (struct hex_test): New
37130         structure.
37131         (hex_tests): New variable.
37132         (test_hex_in_one_mode): New function.
37133         (do_test): Also run tests for hex float output.
37135 2012-09-21  Joseph Myers  <joseph@codesourcery.com>
37137         * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
37138         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
37139         * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
37140         * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
37141         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
37142         * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
37143         * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
37144         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
37146 2012-09-20  Joseph Myers  <joseph@codesourcery.com>
37148         * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
37149         * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
37150         * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
37151         * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
37153 2012-09-19  Dmitry V. Levin  <ldv@altlinux.org>
37155         [BZ #14579]
37156         * elf/rtld.c (dl_main): Limit the check for self loading to normal
37157         mode only.
37158         * elf/tst-rtld-load-self.sh: New test.
37159         * elf/Makefile: Run it.
37161 2012-09-18  Joseph Myers  <joseph@codesourcery.com>
37163         * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
37164         (tst-writev-ENV): Remove.
37165         * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
37167 2012-09-17  Chris Metcalf  <cmetcalf@tilera.com>
37169         * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
37171 2012-09-17  Joseph Myers  <joseph@codesourcery.com>
37173         * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
37174         unconditional.
37175         * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
37176         Likewise.
37177         * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
37178         * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
37179         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
37180         Likewise.
37182 2012-09-14  H.J. Lu  <hongjiu.lu@intel.com>
37184         [BZ #14587]
37185         * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
37186         * config.make.in (have-cpp-asm-debuginfo): Removed.
37187         * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
37188         * configure: Regenerated.
37190 2012-09-14  Joseph Myers  <joseph@codesourcery.com>
37192         [BZ #5044]
37193         * stdio-common/printf_fp.c: Include <stdbool.h> and
37194         <rounding-mode.h>.
37195         (___printf_fp): Determine rounding using get_rounding_mode and
37196         round_away.
37197         * stdio-common/tst-printf-round.c: New file.
37198         * stdio-common/Makefile (tests): Add tst-printf-round.
37199         (link-libm): New variable.
37200         ($(objpfx)tst-printf-round): Depend in $(link-libm).
37202 2012-09-13  H.J. Lu  <hongjiu.lu@intel.com>
37204         [BZ #14576]
37205         * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
37206         * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
37207         Likewise.
37208         * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
37209         Likewise.
37211 2012-09-13  Joseph Myers  <joseph@codesourcery.com>
37213         * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
37214         * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
37215         * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
37216         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
37218 2012-09-12  Joseph Myers  <joseph@codesourcery.com>
37220         [BZ #14518]
37221         * include/rounding-mode.h: New file.
37222         * sysdeps/generic/get-rounding-mode.h: Likewise.
37223         * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
37224         * stdlib/strtod_l.c: Include <rounding-mode.h>.
37225         (MAX_VALUE): New macro.
37226         (MIN_VALUE): Likewise.
37227         (overflow_value): New function.
37228         (underflow_value): Likewise.
37229         (round_and_return): Use overflow_value and underflow_value to
37230         determine return values in overflow and underflow cases.  Use
37231         round_away to determine rounding depending on rounding mode.
37232         (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
37233         determine return values in overflow and underflow cases.
37234         * stdlib/tst-strtod-round.c: Include <fenv.h>.
37235         (struct test_results): New structure.
37236         (struct test): Use struct test_results to store expected results
37237         for all rounding modes.
37238         (TEST): Include expected results for all rounding modes.
37239         (test_in_one_mode): New function.
37240         (do_test): Use test_in_one_mode to compute and check results.
37241         Check results for all rounding modes.
37242         * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
37243         $(link-libm).
37245 2012-12-09  Allan McRae  <allan@archlinux.org>
37247         * sysdeps/i386/fpu/libm-test-ulps: Update
37249 2012-09-11  Joseph Myers  <joseph@codesourcery.com>
37251         * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
37252         (_G_int32_t): Likewise.
37253         (_G_uint16_t): Likewise.
37254         (_G_uint32_t): Likewise.
37255         (_G_HAVE_BOOL): Likewise.
37256         (_G_HAVE_ATEXIT): Likewise.
37257         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
37258         (_G_HAVE_IO_FILE_OPEN): Likewise.
37259         * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
37260         (_G_int32_t): Likewise.
37261         (_G_uint16_t): Likewise.
37262         (_G_uint32_t): Likewise.
37263         (_G_HAVE_BOOL): Likewise.
37264         (_G_HAVE_ATEXIT): Likewise.
37265         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
37266         (_G_HAVE_IO_FILE_OPEN): Likewise.
37267         * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
37268         (_G_int32_t): Likewise.
37269         (_G_uint16_t): Likewise.
37270         (_G_uint32_t): Likewise.
37271         (_G_HAVE_BOOL): Likewise.
37272         (_G_HAVE_ATEXIT): Likewise.
37273         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
37274         (_G_HAVE_IO_FILE_OPEN): Likewise.
37276 2012-09-11  H.J. Lu  <hongjiu.lu@intel.com>
37278         * csu/libc-tls.c: Update copyright years.
37280 2012-09-10  Joseph Myers  <joseph@codesourcery.com>
37282         * libioP.h [_G_USING_THUNKS]: Make code unconditional.
37283         [!_G_USING_THUNKS]: Remove conditional code.
37284         * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
37285         * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
37287         * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
37288         [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
37289         * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
37290         (_G_VTABLE_LABEL_PREFIX): Likewise.
37291         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
37292         * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
37293         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
37294         (_G_VTABLE_LABEL_PREFIX): Likewise.
37295         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
37296         * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
37297         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
37298         (_G_VTABLE_LABEL_PREFIX): Likewise.
37299         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
37301 2012-09-10  H.J. Lu  <hongjiu.lu@intel.com>
37303         * libio/Makefile: Include ../Makeconfig before tests.
37304         (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
37305         only if $(build-shared) is yes.
37307         * iconv/gconv_db.c: Update copyright years.
37309 2012-09-10  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
37311         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
37312         unwind info if defined PIC. Fix special cases description.
37313         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
37315         * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
37316         DP_HI_MASK entry.
37317         * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
37319 2012-09-07  H.J. Lu  <hongjiu.lu@intel.com>
37321         * scripts/check-local-headers.sh: Add "shopt -s nullglob".
37323         * iconv/gconv_db.c (free_derivation): Check if deriv->steps
37324         is NULL.
37326         * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
37327         (LDLIBS-tst-chk4): This.
37328         (LDFLAGS-tst-chk5): Renamed to ...
37329         (LDLIBS-tst-chk5): This.
37330         (LDFLAGS-tst-chk6): Renamed to ...
37331         (LDLIBS-tst-chk6): This.
37332         (LDFLAGS-tst-lfschk4): Renamed to ...
37333         (LDLIBS-tst-lfschk4): This.
37334         (LDFLAGS-tst-lfschk5): Renamed to ...
37335         (LDLIBS-tst-lfschk5): This.
37336         (LDFLAGS-tst-lfschk6): Renamed to ...
37337         (LDLIBS-tst-lfschk6): This.
37339         * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
37340         on $(common-objpfx)soversions.mk.
37342 2012-09-07  Joseph Myers  <joseph@codesourcery.com>
37344         [BZ #10014]
37345         * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
37346         example host name.
37348 2012-09-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
37350         * malloc/arena.c (arena_get_retry): New function that gets
37351         another arena for the caller to try its request on.
37352         * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
37353         current arena cannot fulfill the request.
37354         (__libc_memalign): Likewise.
37355         (__libc_memalign): Likewise.
37356         (__libc_pvalloc): Likewise.
37357         (__libc_calloc): Likewise.
37359 2012-09-05  John Tobey  <john.tobey@gmail.com>
37361         [BZ #13542]
37362         * manual/arith.texi (Operations on Complex): Fix description
37363         of carg branch cut.
37365 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
37367         [BZ #10014]
37368         * manual/socket.texi (Host Addresses): Use www.gnu.org as example
37369         host name.
37371         [BZ #10038]
37372         * manual/memory.texi (Memory): Make order of menu items match
37373         order of sections.
37375 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
37377         * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
37378         (_dl_initial_dtv): New.  Defined if SHARED isn't defined.
37379         (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
37381 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
37383         * csu/libc-tls.c (static_dtv): Renamed to ...
37384         (_dl_static_dtv): This.  Make it global.
37385         (_dl_initial_dtv): Removed.
37386         (__libc_setup_tls): Updated.
37387         * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
37388         (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
37389         DL_INITIAL_DTV.
37391 2012-09-06  Petr Machata  <pmachata@redhat.com>
37393         * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
37394         (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
37395         (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
37396         (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
37398 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
37400         [BZ #14545]
37401         * csu/libc-tls.c (_dl_initial_dtv): New variable.
37402         * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
37403         freeing dtv[-1].
37405 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
37407         [BZ #14544]
37408         * Makeconfig (link-static-before-libc): Replace $(+prector)
37409         with $(+prectorT).
37410         (link-static-after-libc): Replace $(+postctor) with
37411         $(+postctorT).
37412         (link-bounded): Replace $(+prector)/$(+postctor) with
37413         $(+prectorT)/$(+postctorT).
37414         (+prectorT): New macro.
37415         (+postctorT): Likewise.
37417 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
37419         * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
37420         (round_str): Handle values above the maximum for IBM long double
37421         as inexact.
37422         * stdlib/tst-strtod-round.c (tests): Regenerated.
37424 2012-09-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37426         * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
37427         assembler flag.
37428         * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
37429         zarch_nohighgprs around the zarch optimized routines.
37430         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
37431         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
37432         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
37433         for zarch.
37435 2012-09-05  David S. Miller  <davem@davemloft.net>
37437         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37439         * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
37440         (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
37441         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
37442         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
37443         entries.
37445 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
37447         * malloc/arena.c: Fold copyright years.
37448         * malloc/mcheck.c, malloc/memusage.c: Likewise.
37450 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
37452         * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
37454 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
37456         * manual/contrib.texi (Contributors): Fix typo.  Complete entry.
37458 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
37460         * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
37461         change internal state upon failure.
37463 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
37465         * malloc/mcheck.c (mcheck_check_all): Fix typo.
37466         * malloc/memusage.c (mmap): Likewise.
37467         (mmap64, mremap): Likewise.  Adjust name in comment.
37469 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
37471         * libio/fileops.c: Fix typos in comments.
37472         * libio/oldfileops.c: Likewise.
37473         * libio/wfileops.c: Likewise.
37475 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
37477         [BZ #1349]
37478         * malloc/Makefile (tests): Add tst-malloc-usable test case.
37479         (tst-malloc-usable-ENV): Set environment for test case.
37480         * malloc/hooks.c (malloc_check_get_size): New function to get
37481         requested size.
37482         * malloc/malloc.c (musable): Use malloc_check_get_size.
37483         * malloc/tst-malloc-usable.c: New test case.
37485 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
37487         * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
37489 2012-09-05  Allan McRae  <allan@archlinux.org>
37491         [BZ #13966]
37492         * configure.in (CXX_SYSINCLUDES): Use compiler output to
37493         determine header location.
37494         * configure: Regenerated.
37496 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
37498         * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
37499         float format.
37500         * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
37501         LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
37502         format.
37503         (test): Regenerate.
37505 2012-09-04  David S. Miller  <davem@davemloft.net>
37507         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
37508         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
37509         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
37511 2012-09-04  Florian Weimer  <fweimer@redhat.com>
37513         * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
37514         failures.
37516         * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
37518 2012-09-04  Joseph Myers  <joseph@codesourcery.com>
37520         [BZ #9914]
37521         * libio/iogetdelim.c: Include <limits.h>.
37522         (_IO_getdelim): Avoid integer overflow in testing whether cur_len
37523         + len + 1 would overflow.
37525 2012-09-03  Andreas Jaeger  <aj@suse.de>
37527         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
37528         * sysdeps/i386/fpu/libm-test-ulps: Update.
37530 2012-09-03  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
37532         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
37533         Add s_sinf-sse2, s_conf-sse2.
37535         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
37536         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
37537         * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
37538         * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
37540         * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
37541         for using routine as __sinf_ia32.
37542         Use macro for function declaration and weak_alias.
37543         * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
37544         for using routine as __cosf_ia32.
37545         Use macro for function declaration and weak_alias.
37547         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
37548         * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
37550         * sysdeps/x86_64/fpu/s_sinf.S: New file.
37551         * sysdeps/x86_64/fpu/s_cosf.S: New file.
37552         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
37554         * math/libm-test.inc (cos_test): Add more test cases.
37555         (sin_test): Likewise.
37556         (sincos_test): Likewise.
37558 2012-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37560         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
37561         (IFUNC_RESOLVE): Make pointers to the specialized implementations
37562         hidden.
37563         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
37565 2012-09-02  H.J. Lu  <hongjiu.lu@intel.com>
37567         [BZ #14538]
37568         * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
37569         first element of the GOT.
37570         (elf_machine_load_address): Return the difference between
37571         the runtime address of _DYNAMIC and elf_machine_dynamic ().
37573 2012-09-01  Allan McRae  <allan@archlinux.org>
37575         [BZ #13412]
37576         * configure.in (AWK): Require gawk version 3.0 or later.
37577         * configure: Regenerated.
37579 2012-09-01  Joseph Myers  <joseph@codesourcery.com>
37581         * sysdeps/unix/sysv/linux/kernel-features.h
37582         (__ASSUME_POSIX_CPU_TIMERS): Remove.
37583         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
37584         [__NR_clock_getres]: Make code unconditional.
37585         [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
37586         (clock_getcpuclockid): Remove code left unreachable by removal of
37587         conditionals.
37588         * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
37589         code unconditional.
37590         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
37591         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
37592         * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
37593         Make code unconditional.
37594         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
37595         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
37596         * sysdeps/unix/sysv/linux/clock_settime.c
37597         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
37598         conditional code.
37599         [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
37600         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
37602 2012-08-29  H.J. Lu  <hongjiu.lu@intel.com>
37604         [BZ #14476]
37605         * Makefile (install): Also pass LD_SO=$(ld.so-version) to
37606         scripts/test-installation.pl.
37608         * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
37609         and $ld_so_version if it is set.
37611 2012-08-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
37613         [BZ #14516]
37614         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
37615         failure if reading from procfs failed.
37616         * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
37618 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
37620         * sysdeps/unix/sysv/linux/kernel-features.h
37621         (__ASSUME_STAT64_SYSCALL): Remove all definitions.
37622         * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
37623         Remove conditional code.
37624         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37625         * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
37626         Remove conditional code.
37627         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37628         * sysdeps/unix/sysv/linux/i386/fxstat.c
37629         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
37630         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37631         * sysdeps/unix/sysv/linux/i386/fxstatat.c
37632         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
37633         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37634         * sysdeps/unix/sysv/linux/i386/lxstat.c
37635         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
37636         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37637         * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
37638         Remove conditional code.
37639         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37640         * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
37641         Remove conditional code.
37642         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37643         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
37644         <kernel-features.h>.
37645         [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
37646         Remove.
37647         * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
37648         Remove conditional code.
37649         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37650         * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
37651         Remove conditional.
37653 2012-08-27  Mike Frysinger  <vapier@gentoo.org>
37655         [BZ #5400]
37656         * NEWS: Add fixed bug number.
37658 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
37660         [BZ #14519]
37661         * stdlib/strtod_l.c (round_and_return): Return -0.0 for
37662         underflowing exponent in case of negative sign.
37663         * stdlib/tst-strtod-round-data: Add more tests.
37664         * stdlib/tst-strtod-round.c (tests): Regenerated.
37666         [BZ #3479]
37667         * stdlib/strtod_l.c (NDIG): Remove.
37668         (HEXNDIG): Likewise.
37669         (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
37670         smallest representable value.
37671         (____STRTOF_INTERNAL): Use all fractional decimal digits that may
37672         lie within an exact representation of 1/2 ulp of the result.
37673         * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
37674         unconditionally.
37675         (TENS_P9_IDX): Define unconditionally.
37676         (TENS_P9_SIZE): Likewise.
37677         (TENS_P10_IDX): Likewise.
37678         (TENS_P10_SIZE): Likewise.
37679         [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
37680         to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
37681         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
37682         entries for 10^2^13 and 10^2^14.
37683         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
37684         (TENS_P13_IDX): Define.
37685         (TENS_P13_SIZE): Likewise.
37686         (TENS_P14_IDX): Likewise.
37687         (TENS_P14_SIZE): Likewise.
37688         (_fpioconst_pow10): Change array size to
37689         FPIOCONST_POW10_ARRAY_SIZE.  Make entries for 10^2^9 and 10^2^10
37690         unconditional.
37691         (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
37692         1024]: Add entries for 10^2^13 and 10^2^14.
37693         [LAST_POW10 > _LAST_POW10]: Remove #error.
37694         * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
37695         (_fpioconst_pow10): Change array size to
37696         FPIOCONST_POW10_ARRAY_SIZE.
37697         * stdlib/gen-fpioconst.c: New file.
37698         * stdlib/gen-tst-strtod-round.c: Likewise.
37699         * stdlib/tst-strtod-round-data: Likewise.
37700         * stdlib/tst-strtod-round.c: Likewise.
37701         * stdlib/Makefile (tests): Add tst-strtod-round.
37703         [BZ #14459]
37704         * stdlib/strtod_l.c: Include <stdint.h>.
37705         (NDEBUG): Do not define.
37706         (round_and_return): Change EXPONENT parameter to type intmax_t.
37707         Rearrange calculations to avoid internal overflow possibilities.
37708         (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
37709         Rearrange calculations to avoid internal overflow possibilities.
37710         Assert that number fits inside MPNSIZE limbs.
37711         (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
37712         Change DIG_NO, INT_NO and LEAD_ZERO to type size_t.  Rearrange
37713         calculations and add assertions to avoid internal overflow
37714         possibilities.  Add casts to avoid signed/unsigned operations.
37715         * stdlib/tst-strtod-overflow.c: New file.
37716         * stdlib/Makefile (tests): Add tst-strtod-overflow.
37718 2012-08-25  Marek Polacek  <polacek@redhat.com>
37720         * time/time.h: Fix some typos in comments.
37722 2012-08-23  Roland McGrath  <roland@hack.frob.com>
37724         * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
37725         * posix/tst-rfc3484-2.c: Likewise.
37726         * posix/tst-rfc3484-3.c: Likewise.
37728 2012-08-23  Steve McIntyre  <steve.mcintyre@linaro.org>
37730         * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
37731         (EF_ARM_ABI_FLOAT_HARD): Likewise.
37733 2012-08-23  Joseph Myers  <joseph@codesourcery.com>
37735         * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
37736         #include of fxstatat64.c.
37738 2012-08-22  Roland McGrath  <roland@hack.frob.com>
37740         * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
37741         * shadow/getspent_r.c: Likewise.
37742         * shadow/getspnam.c: Likewise.
37743         * shadow/getspnam_r.c: Likewise.
37744         * gshadow/getsgent.c: Likewise.
37745         * gshadow/getsgent_r.c: Likewise.
37746         * gshadow/getsgnam.c: Likewise.
37747         * gshadow/getsgnam_r.c: Likewise.
37748         * inet/getnetbyad.c: Likewise.
37749         * inet/getnetbyad_r.c: Likewise.
37750         * inet/getnetbynm.c: Likewise.
37751         * inet/getnetbynm_r.c: Likewise.
37752         * inet/getnetent.c: Likewise.
37753         * inet/getnetent_r.c: Likewise.
37754         * inet/getproto.c: Likewise.
37755         * inet/getproto_r.c: Likewise.
37756         * inet/getprtent.c: Likewise.
37757         * inet/getprtent_r.c: Likewise.
37758         * inet/getprtname.c: Likewise.
37759         * inet/getprtname_r.c: Likewise.
37760         * inet/getrpcbyname.c: Likewise.
37761         * inet/getrpcbyname_r.c: Likewise.
37762         * inet/getrpcbynumber.c: Likewise.
37763         * inet/getrpcbynumber_r.c: Likewise.
37764         * inet/getrpcent.c: Likewise.
37765         * inet/getrpcent_r.c: Likewise.
37766         * inet/getaliasent.c: Likewise.
37767         * inet/getaliasent_r.c: Likewise.
37768         * inet/getaliasname.c: Likewise.
37769         * inet/getaliasname_r.c: Likewise.
37770         * nscd/getgrgid_r.c: Likewise.
37771         * nscd/getgrnam_r.c: Likewise.
37772         * nscd/gethstbyad_r.c: Likewise.
37773         * nscd/gethstbynm3_r.c: Likewise.
37774         * nscd/getpwnam_r.c: Likewise.
37775         * nscd/getpwuid_r.c: Likewise.
37776         * nscd/getsrvbynm_r.c: Likewise.
37777         * nscd/getsrvbypt_r.c: Likewise.
37778         * nscd/gai.c: Likewise.
37780         * configure.in (build_nscd): New substituted variable, set
37781         by --disable-build-nscd and defaults to $use_nscd.
37782         * configure: Regenerated.
37783         * config.make.in (build-nscd): New substituted variable.
37784         * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
37785         Change conditional to require [$(build-nscd) = yes] as well.
37786         * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
37788         [BZ# 13696]
37789         * configure.in (use_nscd): New substituted variable, set by
37790         --disable-nscd.  If enabled, define USE_NSCD.
37791         * configure: Regenerated.
37792         * config.h.in: Add USE_NSCD.
37793         * config.make.in (use-nscd): New substituted variable.
37794         * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
37795         (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
37796         (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
37797         * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
37798         (CFLAGS-getgrnam_r.c): Likewise.
37799         (CFLAGS-initgroups.c): Likewise.
37800         * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
37801         * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
37802         Variables removed.
37803         * inet/getnetgrent_r.c
37804         (nscd_setnetgrent): New function, broken out of ...
37805         (setnetgrent): ... here.  Call it.
37806         (innetgr): Conditionalize nscd bits on [USE_NSCD].
37807         (nscd_getnetgrent): Conditionalize on [USE_NSCD].
37808         (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
37809         * nscd/Makefile (routines, aux): Move definitions after include of
37810         Makeconfig.  Conditionalize on [$(use-nscd) != no].
37811         * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
37812         Conditionalize on [USE_NSCD].
37813         (is_nscd, nscd_init_cb): Likewise.
37814         (nss_load_library): Conditionalize init callback on [USE_NSCD].
37815         * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
37816         * nss/nss_db/db-init.c: Likewise.
37817         * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
37818         [USE_NSCD].
37819         * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
37820         (make_request): Use it.
37821         (cache_valid_p): New function.
37822         (__check_pf): Use it.
37823         * NEWS: Add item for --disable-nscd.
37825 2012-08-22  Dmitry V. Levin  <ldv@altlinux.org>
37827         * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
37828         to support sed >= 4.2.1-20-ga9bf076.
37829         * configure: Regenerated.
37831 2012-08-22  Roland McGrath  <roland@hack.frob.com>
37833         * csu/libc-start.c (apply_irel): Move extern declarations inside here.
37834         Conditionalize whole body on [IREL].
37836 2012-08-22  Jeff Law <law@redhat.com>
37838         [BZ #14505]
37839         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
37840         if the family is PF_UNSPEC.
37842 2012-08-22  Mike Frysinger  <vapier@gentoo.org>
37844         * Makerules (lib-version): Rename from V.
37845         (install-lib-nosubdir): Change V to lib-version.
37847 2012-08-22  Will Schmidt  <will_schmidt@vnet.ibm.com>
37849         [BZ #14252]
37850         * powerpc32/power6/wcschr.c: New file.
37851         * powerpc32/power6/wcscpy.c: New file.
37852         * powerpc32/power6/wcsrchr.c: New file.
37853         * powerpc64/power6/wcschr.c: New file.
37854         * powerpc64/power6/wcscpy.c: New file.
37855         * powerpc64/power6/wcsrchr.c: New file.
37857 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
37859         * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
37860         (two_way_short_needle): Use it.
37861         * string/strstr.c (AVAILABLE1_USES_J): Define.
37862         * string/strcasestr.c: Likewise.
37864         * string/str-two-way.h (two_way_short_needle): Use pointers instead of
37865         array references.
37866         * string/strcasestr.c (TOLOWER): Make side-effect safe.
37868         [BZ #11607]
37869         * NEWS: Add an entry.
37870         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
37871         define their defaults.
37872         (two_way_short_needle): Detect end-of-string on-the-fly.
37873         * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
37874         (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
37875         * string/bug-strcasestr1.c: New test.
37876         * string/Makefile: Run it.
37878 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
37880         [BZ #11607]
37881         * string/str-two-way.h (two_way_short_needle): Optimize matching of
37882         the first character.
37884 2012-08-21  Roland McGrath  <roland@hack.frob.com>
37886         * csu/elf-init.c (__libc_csu_irel): Function removed.
37887         * csu/libc-start.c (apply_irel): New function.
37888         (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
37890 2012-08-21  Joseph Myers  <joseph@codesourcery.com>
37892         * sysdeps/unix/sysv/linux/kernel-features.h
37893         (__ASSUME_FADVISE64_64_SYSCALL): Remove.
37894         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
37895         <kernel-features.h>.
37896         [__NR_fadvise64_64]: Make code unconditional.
37897         [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
37898         [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
37899         !__NR_fadvise64_64)]: Likewise.
37900         [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
37901         !__NR_fadvise64_64))]: Likewise.
37902         [__NR_fadvise64]: Make code unconditional.
37903         [!__NR_fadvise64]: Remove conditional code.
37904         * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
37905         <kernel-features.h>.
37906         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
37907         unconditional.
37908         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
37909         conditional code.
37910         * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
37911         not include <kernel-features.h>.
37912         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
37913         unconditional.
37914         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
37915         conditional code.
37916         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
37917         include <kernel-features.h>.
37918         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
37919         unconditional.
37920         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
37921         conditional code.
37923 2012-08-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
37925         * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
37926         slight instruction rearrangements per scrollpipe analysis.
37927         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
37929 2012-08-20  Roland McGrath  <roland@hack.frob.com>
37931         * manual/syslog.texi (syslog; vsyslog, closelog):
37932         Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
37933         Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
37935         * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
37936         DSOCAPS to match condition on defining it.
37938 2012-08-20  Joseph Myers  <joseph@codesourcery.com>
37940         * sysdeps/unix/sysv/linux/kernel-features.h
37941         (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
37942         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
37943         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
37944         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
37945         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
37946         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
37947         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
37948         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
37949         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
37950         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
37952         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
37953         __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
37955         * sysdeps/unix/sysv/linux/kernel-features.h
37956         (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
37957         * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
37958         unconditional.
37959         [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37960         * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
37961         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
37962         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37963         * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
37964         Make code unconditional.
37965         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37966         (__mmap64) [!__NR_mmap2]: Likewise.
37967         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
37968         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
37969         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37970         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
37971         [__NR_mmap2]: Make code unconditional.
37972         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37973         (__mmap64) [!__NR_mmap2]: Likewise.
37975 2012-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37977         * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
37979 2012-08-18  Andreas Jaeger  <aj@suse.de>
37981         * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
37983 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
37985         * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
37986         * include/unistd.h (__have_sock_cloexec): Likewise.
37987         (__have_pipe2): Likewise.
37988         (__have_dup3): Likewise.
37990 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
37992         [BZ #9685]
37993         * include/unistd.h (__have_pipe2): Change define into an extern int.
37994         (__have_dup3): Likewise.
37995         * socket/have_sock_cloexec.c: Include fcntl.h.
37996         (__have_pipe2): New variable.
37997         (__have_dup3): Likewise.
37999 2012-08-17  Mike Frysinger  <vapier@gentoo.org>
38001         * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
38003 2012-08-17  Marek Polacek  <polacek@redhat.com>
38005         * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
38006         ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
38008 2012-08-17  Roland McGrath  <roland@hack.frob.com>
38010         * configure.in: Add AC_SUBST for sysheaders.
38011         * configure: Regenerated.
38012         * config.make.in (sysheaders): New substituted variable.
38014         * sysdeps/unix/mkfifo.c: Moved ...
38015         * sysdeps/posix/mkfifo.c: ... here.
38016         * sysdeps/unix/mkfifoat.c: Moved ...
38017         * sysdeps/posix/mkfifoat.c: ... here.
38019         * sysdeps/unix/utime.c: Moved ...
38020         * sysdeps/posix/utime.c: ... here.
38022         * sysdeps/unix/time.c: Moved ...
38023         * sysdeps/posix/time.c: ... here.
38024         * sysdeps/unix/sysv/linux/time.c: Adjust #include.
38025         * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
38027         * sysdeps/unix/nice.c: Moved ...
38028         * sysdeps/posix/nice.c: ... here.
38030         * sysdeps/unix/alarm.c: Moved ...
38031         * sysdeps/posix/alarm.c: ... here.
38033         * intl/Makefile ($(codeset_mo)): Depend on the input file.
38035 2012-08-17  Jeff Law <law@redhat.com>
38037         * intl/Makefile (codeset_mo): New variable.
38038         ($(codeset_mo)): New target.
38039         (tst-codeset.out): Depend on that.  Remove explicit rule.
38040         (tst-gettext3.out, tst-gettext5.out): Likewise.
38041         (LOCPATH-ENV, tst-codeset-ENV): New variables.
38042         (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
38043         * intl/tst-codeset.sh: Remove.
38044         * intl/tst-gettext3.sh: Likewise.
38045         * intl/tst-gettext5.sh: Likewise.
38047 2012-08-17  Roland McGrath  <roland@hack.frob.com>
38049         * sysdeps/unix/inet/syscalls.list: File removed.  Move contents into ...
38050         * sysdeps/unix/syscalls.list: ... here.
38052         * sysdeps/posix/getaddrinfo.c
38053         (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
38054         (gaiconf_init, gaiconf_reload): Use them.
38055         [!_STATBUF_ST_NSEC]
38056         (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
38057         Define using time_t rather than struct timespec.
38059         * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
38060         (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
38061         Macros removed.
38062         * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
38063         [!NO_THREADS].
38064         (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
38065         (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
38066         Likewise.
38068         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
38069         __libc_cleanup_push argument.
38071         * bits/param.h: New file.
38072         * misc/sys/param.h: New file.
38073         * include/sys/param.h: New file.
38074         * misc/Makefile (headers): Add bits/param.h.
38075         * sysdeps/generic/sys/param.h: File removed.
38076         * sysdeps/unix/sysv/linux/bits/param.h: New file.
38077         * sysdeps/unix/sysv/linux/sys/param.h: File removed.
38078         * sysdeps/mach/hurd/bits/param.h: New file.
38079         * sysdeps/mach/hurd/sys/param.h: File removed.
38081         * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
38082         last change.
38084         * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
38085         [_IO_MTSAFE_IO].
38086         * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
38087         (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
38088         New macros.
38090         * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
38091         * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
38092         rather than -D_IO_MTSAFE_IO conditionally.
38093         * stdio-common/Makefile (CPPFLAGS): Likewise.
38094         * wcsmbs/Makefile (CPPFLAGS): Likewise.
38095         * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
38096         Use $(libio-mtsafe).
38097         * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
38098         of -D_IO_MTSAFE_IO.
38099         (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
38100         (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
38101         (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
38102         (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
38103         (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
38104         (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
38105         (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
38106         (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
38107         (CFLAGS-fread_u_chk.c): Likewise.
38108         (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
38109         (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
38110         (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
38111         (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
38112         * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
38113         * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
38114         * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
38115         * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
38116         * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
38118         * libio/Makefile: Test [$(libc-reentrant) = yes]
38119         instead of [$(filter %REENTRANT, $(defines)) nonempty].
38121         * Makeconfig
38122         [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
38123         * sysdeps/pthread/configure: File removed.
38124         * sysdeps/pthread/Makeconfig: New file.
38125         * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
38126         * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
38128 2012-08-16  Gary Benson  <gbenson@redhat.com>
38130         * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
38131         unmapping the first object in a namespace.
38133 2012-08-16  Roland McGrath  <roland@hack.frob.com>
38135         * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
38136         (__internal_setnetgrent): ... this.  Add internal_function to
38137         definition.  Add libc_hidden_def.
38138         (setnetgrent): Update caller.
38139         (internal_endnetgrent): Renamed to ...
38140         (__internal_endnetgrent): ... this.  Add internal_function to
38141         definition.  Add libc_hidden_def.
38142         (endnetgrent): Update caller.
38143         (internal_getnetgrent_r): Renamed to ...
38144         (__internal_getnetgrent_r): ... this.  Add internal_function to
38145         definition.  Add libc_hidden_def.
38146         (__getnetgrent_r): Update caller.
38147         * inet/netgroup.h: Update declarations.  Add libc_hidden_proto uses.
38149 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
38151         * stdlib/longlong.h: Update from GCC.
38153 2012-08-16  Roland McGrath  <roland@hack.frob.com>
38155         * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
38156         on _QL, which is set by umul_ppmm but never used.
38157         * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
38158         variables, which are set by GMP macros but never used.
38159         * stdio-common/_itowa.c (_itowa): Likewise.
38160         * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
38161         * stdlib/mod_1.c (mpn_mod_1): Likewise.
38163 2012-08-16  Carlos O'Donell  <carlos_odonell@mentor.com>
38165         * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
38166         struct La_sh_regs is not constant.
38167         * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
38168         <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
38169         and struct La_sparc64_regs are not constant.
38171 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
38173         * sysdeps/unix/sysv/linux/kernel-features.h
38174         (__ASSUME_POSIX_TIMERS): Remove.
38175         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
38176         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38177         * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
38178         Make code unconditional.
38179         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38180         * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
38181         Make code unconditional.
38182         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38183         * sysdeps/unix/sysv/linux/clock_nanosleep.c
38184         [__ASSUME_POSIX_TIMERS]: Make code unconditional.
38185         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38186         * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
38187         Make code unconditional.
38188         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38189         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
38190         (__libc_missing_posix_timers): Remove.
38192 2012-08-15  Roland McGrath  <roland@hack.frob.com>
38194         * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
38195         check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
38197         * bits/libc-lock.h (__rtld_lock_initialize): New macro.
38199         * elf/dl-sym.c: Include <stdlib.h>.
38201         * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
38202         constants, which avoids warnings in 32-bit builds.
38204         * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
38205         (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
38207         * misc/lseek.c: File moved to ...
38208         * io/lseek.c: ... here.
38210         * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
38212         * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
38213         shifting LEN more than 31 bits at once.
38215 2012-08-15  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
38217         [BZ #14195]
38218         * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
38219         segmentation fault for a case of two empty input strings.
38220         * string/test-strncasecmp.c (check1): Renamed to...
38221         (bz12205): ...this.
38222         (bz14195): Add new testcase for two empty input strings and N > 0.
38223         (test_main): Call new testcase, adapt for renamed function.
38225 2012-08-15  Andreas Jaeger  <aj@suse.de>
38227         [BZ #14090]
38228         * crypt/md5test2.c: New test, based on test supplied by Serge
38229         Belyshev <belyshev@depni.sinp.msu.ru>.
38230         * crypt/Makefile (xtests): Add md5test-giant..
38231         * crypt/Makefile ($(objpfx)md5test-giant): Add.
38233 2012-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38235         [BZ #14090]
38236         * crypt/md5.c (md5_process_block): Don't assume the buffer
38237         length is less than 2**32.
38238         * crypt/sha512.c (sha512_process_block): Don't assume the buffer
38239         length is less than 2**64.
38241 2012-08-15  Roland McGrath  <roland@hack.frob.com>
38243         * string/str-two-way.h: Include <sys/param.h>.
38244         (MAX): Macro removed.
38246         * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
38247         Move #define and #undef of memmove to just before and after
38248         including <string.h>.
38250         * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
38251         [!NOT_IN_libc]: Move #define and #undef of memmove to just before
38252         and after including <string.h>.  Move declarations of
38253         __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
38254         to before #include "string/memmove.c".
38256         * include/dirent.h: Declare __getdirentries.
38258         * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
38259         using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
38261 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
38263         * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
38264         * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
38265         * sysdeps/i386/configure: Regenerated.
38266         * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
38267         STABS_CURRENT_FILE, and STABS_FUN.
38268         (END): Remove call to STABS_FUN_END.
38269         (STABS_CURRENT_FILE1): Delete.
38270         (STABS_CURRENT_FILE): Likewise.
38271         (STABS_FUN): Likewise.
38272         (STABS_FUN_END): Likewise.
38273         (STABS_FUN2): Likewise.
38274         * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
38275         * sysdeps/x86_64/configure: Regenerated.
38277 2012-08-14  Roland McGrath  <roland@hack.frob.com>
38279         * elf/dl-open.c: Include <atomic.h>.
38280         * elf/dl-lookup.c: Likewise.
38282 2012-08-14  Joseph Myers  <joseph@codesourcery.com>
38284         * sysdeps/unix/sysv/linux/kernel-features.h
38285         (__ASSUME_CLONE_THREAD_FLAGS): Remove.
38286         * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
38287         unconditionally.
38288         * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
38289         unconditionally.
38290         * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
38291         condition on __ASSUME_CLONE_THREAD_FLAGS.
38293 2012-08-14  Andreas Jaeger  <aj@suse.de>
38295         * sysdeps/i386/fpu/libm-test-ulps: Update.
38297 2012-08-13  Maxim Kuvyrkov  <maxim@codesourcery.com>
38299         * include/atomic.h (atomic_exchange_and_add): Split into ...
38300         (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
38301         New atomic macros.
38303 2012-08-13  Markus Trippelsdorf  <markus@trippelsdorf.de>
38305         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
38307 2012-08-13  Jeff Law <law@redhat.com>
38309         * manual/stdio.texi (snprintf): Clarify handling of the trailing
38310         null byte in the output string.
38312 2012-08-10  Joseph Myers  <joseph@codesourcery.com>
38314         * sysdeps/unix/sysv/linux/kernel-features.h
38315         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
38316         [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
38317         (__ASSUME_ARG_MAX_STACK_BASED): Define.
38318         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
38319         [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
38320         !__ASSUME_ARG_MAX_STACK_BASED.  Compare version with
38321         __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
38323 2012-08-09  Jeff Law <law@redhat.com>
38325         [BZ #13939]
38326         * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
38327         When avoid_arena is set, don't retry in the that arena.  Pick the
38328         next one, whatever it might be.
38329         (arena_get2): New parameter avoid_arena, pass through to reused_arena.
38330         (arena_lock): Pass in new parameter to arena_get2.
38331         * malloc/malloc.c (__libc_memalign): Pass in new parameter to
38332         arena_get2.
38333         (__libc_malloc): Unify retrying after main arena failure with
38334         __libc_memalign version.
38335         (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
38337 2012-08-09  H.J. Lu  <hongjiu.lu@intel.com>
38339         [BZ #14166]
38340         * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
38341         to __redirect_strstr.
38342         (__strstr_sse42): Use typeof __redirect_strstr.
38343         (__strstr_ia32): Likewise.
38344         (__libc_strstr): New prototype.
38345         (strstr): Renamed to ...
38346         (__libc_strstr): This.
38347         (strstr): New strong alias of __libc_strstr.
38348         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
38349         * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
38350         __redirect_time.
38351         Include <time.h>.
38352         (__libc_time): New prototype.
38353         (time_ifunc): Replace time with __libc_time.
38354         (time): New strong alias and hidden definition of __libc_time.
38355         (__GI_time): Remove strong alias.
38356         * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
38357         Include <stddef.h>.
38358         (memmove): Redefined to __redirect_memmove.
38359         (__memmove_sse2): Use typeof __redirect_memmove.
38360         (__memmove_ssse3): Likewise.
38361         (__memmove_ssse3_back): Likewise.
38362         (__libc_memmove): New prototype.
38363         (memmove): Renamed to ...
38364         (__libc_memmove): This.
38365         (memmove): New strong alias of __libc_memmove.
38367 2012-08-08  Mark Salter  <msalter@redhat.com>
38369         * elf/elf.h
38370         (R_MN10300_TLS_GD): Define.
38371         (R_MN10300_TLS_LD): Likewise.
38372         (R_MN10300_TLS_LDO): Likewise.
38373         (R_MN10300_TLS_GOTIE): Likewise.
38374         (R_MN10300_TLS_IE): Likewise.
38375         (R_MN10300_TLS_LE): Likewise.
38376         (R_MN10300_TLS_DTPMOD): Likewise.
38377         (R_MN10300_TLS_DTPOFF): Likewise.
38378         (R_MN10300_TLS_TPOFF): Likewise.
38379         (R_MN10300_SYM_DIFF): Likewise.
38380         (R_MN10300_ALIGN): Likewise.
38381         (R_MN10300_NUM): Update.
38383 2012-08-08  Joseph Myers  <joseph@codesourcery.com>
38385         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
38386         Remove.
38388 2012-08-08  Roland McGrath  <roland@hack.frob.com>
38390         * sysdeps/posix/fdopendir.c: Include <stddef.h>.
38392         * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
38393         sysdeps/unix -> sysdeps/posix move.
38394         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
38396 2012-08-07      Allan McRae     <allan@archlinux.org>
38398         [BZ #14303]
38399         * sunrpc/rpc_main.c (SVR4_CPP): Remove.
38400         (SUNOS_CPP): Likewise.
38401         (find_cpp): Fall back to selecting system cpp when /lib/cpp is
38402         not found.
38403         (open_input): Call CPP using execvp.
38405 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
38407         * sysdeps/unix/sysv/linux/kernel-features.h
38408         (__ASSUME_PROT_GROWSUPDOWN): Remove.
38409         (__ASSUME_NO_CLONE_DETACHED): Likewise.
38410         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
38411         (__ASSUME_WAITID_SYSCALL): Likewise.
38412         * sysdeps/unix/sysv/linux/dl-execstack.c
38413         (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
38414         code unconditional.
38415         (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
38416         conditional code.
38417         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
38418         [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
38419         (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
38420         code.
38421         * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
38422         unconditional.
38423         [__ASSUME_WAITID_SYSCALL]: Likewise.
38424         [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
38426 2012-08-07  Roland McGrath  <roland@hack.frob.com>
38428         * sysdeps/unix/closedir.c: Renamed to ...
38429         * sysdeps/posix/closedir.c: ... here.
38430         * sysdeps/unix/dirfd.c: Renamed to ...
38431         * sysdeps/posix/dirfd.c: ... here.
38432         * sysdeps/unix/dirstream.h: Renamed to ...
38433         * sysdeps/posix/dirstream.h: ... here.
38434         * sysdeps/unix/fdopendir.c: Renamed to ...
38435         * sysdeps/posix/fdopendir.c: ... here.
38436         * sysdeps/unix/opendir.c: Renamed to ...
38437         * sysdeps/posix/opendir.c: ... here.
38438         * sysdeps/unix/readdir.c: Renamed to ...
38439         * sysdeps/posix/readdir.c: ... here.
38440         * sysdeps/unix/readdir_r.c: Renamed to ...
38441         * sysdeps/posix/readdir_r.c: ... here.
38442         * sysdeps/unix/rewinddir.c: Renamed to ...
38443         * sysdeps/posix/rewinddir.c: ... here.
38444         * sysdeps/unix/seekdir.c: Renamed to ...
38445         * sysdeps/posix/seekdir.c: ... here.
38446         * sysdeps/unix/telldir.c: Renamed to ...
38447         * sysdeps/posix/telldir.c: ... here.
38448         * sysdeps/unix/sysv/linux/opendir.c: Update #include.
38449         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
38450         * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
38451         * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
38453         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
38454         * bits/fcntl.h: ... here.
38456         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
38457         not 0.
38458         (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
38459         [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
38460         (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
38461         (struct flock): Move l_start, l_len to the beginning.
38462         Use __pid_t for l_pid.
38463         [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
38464         [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
38465         [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
38466         (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
38467         [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
38468         [__USE_LARGEFILE64] (struct flock64): New type.
38469         (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
38471         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
38472         * bits/dirent.h: ... here.
38474         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
38475         [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
38477 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
38479         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
38480         Change from 2.6.0 to 2.6.16.
38481         * sysdeps/unix/sysv/linux/configure: Regenerated.
38482         * sysdeps/unix/sysv/linux/kernel-features.h
38483         (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
38484         (__ASSUME_TGKILL): Define conditional on architectures, not kernel
38485         version.
38486         (__ASSUME_UTIMES): Likewise.
38487         (__ASSUME_CLONE_STOPPED): Remove.
38488         (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
38489         architectures, not kernel version.
38490         (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
38491         (__ASSUME_NO_CLONE_DETACHED): Likewise.
38492         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
38493         (__ASSUME_WAITID_SYSCALL): Likewise.
38494         [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
38495         condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
38496         * README: State 2.6.16 as minimum Linux kernel version.  Do not
38497         refer to older versions.
38499 2012-08-06  Roland McGrath  <roland@hack.frob.com>
38501         * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
38502         Define alphasort64 as an alias.
38503         * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
38504         Define versionsort64 as an alias.
38505         * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
38506         Define scandir64 as an alias.
38507         * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
38508         Define scandirat64 as an alias.
38509         * dirent/alphasort64.c (alphasort64):
38510         Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
38511         * dirent/versionsort64.c: Likewise.
38512         * dirent/scandir64.c: Likewise.
38513         * dirent/scandirat64.c: Likewise.
38514         * sysdeps/wordsize-64/alphasort.c: File removed.
38515         * sysdeps/wordsize-64/alphasort64.c: File removed.
38516         * sysdeps/wordsize-64/scandir.c: File removed.
38517         * sysdeps/wordsize-64/scandir64.c: File removed.
38518         * sysdeps/wordsize-64/scandirat.c: File removed.
38519         * sysdeps/wordsize-64/scandirat64.c: File removed.
38520         * sysdeps/wordsize-64/versionsort.c: File removed.
38521         * sysdeps/wordsize-64/versionsort64.c: File removed.
38522         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
38523         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
38524         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
38525         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
38526         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
38527         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
38528         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
38529         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
38531         * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
38532         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
38533         [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
38534         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
38535         [defined __arch64__ || defined __sparcv9]
38536         (__INO_T_MATCHES_INO64_T): New macro.
38537         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
38538         [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
38539         * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
38540         * sysdeps/unix/sysv/linux/bits/dirent.h
38541         [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
38542         (_DIRENT_MATCHES_DIRENT64): New macro.
38544         * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
38545         Define lockf64 as an alias.
38546         * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
38547         Define fseeko64 as an alias.
38548         * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
38549         Define ftello64 as an alias.
38550         * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
38551         Define _IO_fgetpos64 and fgetpos64 as aliases.
38552         * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
38553         Define _IO_fsetpos64 and fsetpos64 as aliases.
38554         * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
38555         Conditionalize body on this.
38556         * libio/fseeko64.c: Likewise.
38557         * libio/ftello64.c: Likewise.
38558         * libio/iofgetpos64.c: Likewise.
38559         * libio/iofsetpos64.c: Likewise.
38560         * sysdeps/wordsize-64/lockf.c: File removed.
38561         * sysdeps/wordsize-64/lockf64.c: File removed.
38562         * sysdeps/wordsize-64/fseeko.c: File removed.
38563         * sysdeps/wordsize-64/fseeko64.c: File removed.
38564         * sysdeps/wordsize-64/ftello.c: File removed.
38565         * sysdeps/wordsize-64/ftello64.c: File removed.
38566         * sysdeps/wordsize-64/iofgetpos.c: File removed.
38567         * sysdeps/wordsize-64/iofgetpos64.c: File removed.
38568         * sysdeps/wordsize-64/iofsetpos.c: File removed.
38569         * sysdeps/wordsize-64/iofsetpos64.c: File removed.
38570         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
38571         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
38572         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
38573         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
38574         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
38575         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
38576         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
38577         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
38578         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
38579         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
38581         * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
38582         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
38583         [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
38584         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
38585         [defined __arch64__ || defined __sparcv9]
38586         (__OFF_T_MATCHES_OFF64_T): New macro.
38587         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
38588         [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
38589         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
38590         (__OFF_T_MATCHES_OFF64_T): New macro.
38592 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
38594         * stdlib/secure-getenv.c (__secure_getenv): Replace
38595         GLIBC_2_16 with GLIBC_2_17.
38597 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
38599         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
38600         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
38602 2012-08-03  David S. Miller  <davem@davemloft.net>
38604         * sysdeps/sparc/fpu/libm-test-ulps: Update.
38606 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
38608         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
38609         Remove.
38610         (__ASSUME_CORRECT_SI_PID): Likewise.
38611         (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
38612         (__ASSUME_TMPFS_NAME): Likewise.
38613         * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
38614         [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
38615         * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
38616         (HAVE_AUX_SECURE): Make definition unconditional.
38617         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
38618         [!__ASSUME_TMPFS_NAME]: Remove conditional code.
38620 2012-08-03  Roland McGrath  <roland@hack.frob.com>
38622         * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
38623         * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
38624         * sysdeps/mach/hurd/eloop-threshold.h: New file.
38625         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
38626         __eloop_threshold instead of SYMLOOP_MAX.
38628         * sysdeps/generic/eloop-threshold.h: New file.
38629         * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
38630         of MAXSYMLINKS.
38631         * elf/chroot_canon.c (chroot_canon): Likewise.
38633 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
38635         [BZ #13717]
38636         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
38637         Change to 2.6.0 everywhere.
38638         * sysdeps/unix/sysv/linux/configure: Regenerated.
38639         * sysdeps/unix/sysv/linux/kernel-features.h
38640         (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
38641         (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
38642         kernel versions.
38643         (__ASSUME_POSIX_TIMERS): Define unconditionally.
38644         (__ASSUME_FUTEX_REQUEUE): Remove.
38645         (__ASSUME_STATFS64): Define unconditionally.
38646         (__ASSUME_AT_SECURE): Likewise.
38647         (__ASSUME_CORRECT_SI_PID): Likewise.
38648         (__ASSUME_TGKILL): Define without depending on kernel version for
38649         i386.
38650         (__ASSUME_UTIMES): Likewise.
38651         (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
38652         kernel version.
38653         (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
38654         (__ASSUME_TMPFS_NAME): Likewise.
38655         * README: Update reference to Linux kernel versions.
38657 2012-08-02  Marek Polacek  <polacek@redhat.com>
38659         [BZ# 14150]
38660         * configure.in (libc_cv_asm_type_prefix): Remove test.  Replace
38661         libc_cv_asm_type_prefix with %.
38662         * configure: Regenerated.
38663         * include/libc-symbols.h: Remove comment about
38664         ASM_TYPE_DIRECTIVE_PREFIX.  Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
38665         (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
38666         (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
38667         (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
38668         (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
38669         * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
38670         [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
38671         [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
38672         * elf/tst-unique2mod1.c: Likewise.
38673         * elf/tst-unique1mod2.c: Likewise.
38674         * elf/tst-unique1mod1.c: Likewise.
38675         * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
38676         * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
38677         Replace ASM_TYPE_DIRECTIVE with .type.
38678         * sysdeps/s390/s390-64/sysdep.h: Likewise.
38679         * sysdeps/i386/sysdep.h: Likewise.
38680         * sysdeps/x86_64/sysdep.h: Likewise.
38681         * sysdeps/sh/sysdep.h: Likewise.
38682         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
38683         Do not define ASM_TYPE_DIRECTIVE.
38684         * sysdeps/powerpc/sysdep.h: Likewise.
38685         * sysdeps/powerpc/powerpc32/sysdep.h:
38686         Replace ASM_TYPE_DIRECTIVE with .type.
38687         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
38688         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
38689         * sysdeps/i386/fpu/e_powf.S: Likewise.
38690         * sysdeps/i386/fpu/e_expl.S: Likewise.
38691         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
38692         * sysdeps/i386/fpu/e_acosh.S: Likewise.
38693         * sysdeps/i386/fpu/e_pow.S: Likewise.
38694         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
38695         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
38696         * sysdeps/i386/fpu/s_expm1.S: Likewise.
38697         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
38698         * sysdeps/i386/fpu/e_log2.S: Likewise.
38699         * sysdeps/i386/fpu/e_log2l.S: Likewise.
38700         * sysdeps/i386/fpu/e_scalb.S: Likewise.
38701         * sysdeps/i386/fpu/e_powl.S: Likewise.
38702         * sysdeps/i386/fpu/e_log10f.S: Likewise.
38703         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
38704         * sysdeps/i386/fpu/e_logl.S: Likewise.
38705         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
38706         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
38707         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
38708         * sysdeps/i386/fpu/e_log2f.S: Likewise.
38709         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
38710         * sysdeps/i386/fpu/e_log.S: Likewise.
38711         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
38712         * sysdeps/i386/fpu/e_logf.S: Likewise.
38713         * sysdeps/i386/fpu/e_log10l.S: Likewise.
38714         * sysdeps/i386/fpu/e_atanh.S: Likewise.
38715         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
38716         * sysdeps/i386/fpu/e_log10.S: Likewise.
38717         * sysdeps/i386/fpu/s_frexp.S: Likewise.
38718         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
38719         * sysdeps/i386/fpu/s_asinh.S: Likewise.
38720         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
38721         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
38722         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
38723         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
38724         * sysdeps/i386/i686/strtok.S: Likewise.
38725         * sysdeps/i386/i386-mcount.S: Likewise.
38726         * sysdeps/i386/strtok.S: Likewise.
38727         * sysdeps/x86_64/fpu/e_expl.S: Likewise.
38728         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
38729         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
38730         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
38731         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
38732         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
38733         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
38734         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
38735         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
38736         * sysdeps/x86_64/_mcount.S: Likewise.
38737         * sysdeps/x86_64/strtok.S: Likewise.
38738         * sysdeps/sh/_mcount.S: Likewise.
38740 2012-08-01  Roland McGrath  <roland@hack.frob.com>
38742         * libio/iofopen.c: Include <fcntl.h>.
38743         [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
38744         (_IO_fopen64, fopen64): Define as aliases.
38745         * libio/iofopen64.c: Include <fcntl.h>.
38746         [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
38747         Conditionalize body on this.
38748         * sysdeps/wordsize-64/iofopen.c: File removed.
38749         * sysdeps/wordsize-64/iofopen64.c: File removed.
38751 2012-08-01  Marek Polacek  <polacek@redhat.com>
38753         * libc/Makeconfig: Use elf in place of binfmt-subdir.
38754         Use dlfcn directly instead of a variable.
38755         (binfmt-subdir): Do not define.
38756         (dlfcn): Likewise.
38758 2012-08-01  Joseph Myers  <joseph@codesourcery.com>
38760         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
38761         Remove all definitions.
38762         * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
38763         <kernel-features.h>.
38764         [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
38765         (miss_F_GETOWN_EX): Remove all definitions.
38766         [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
38767         macro definition.
38768         [!__ASSUME_FCNTL64]: Remove conditional code.
38769         [__ASSUME_FCNTL64]: Make code unconditional.
38770         * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
38771         <kernel-features.h>.
38772         [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
38773         (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
38774         (lockf64) [__NR_fcntl64]: Make code unconditional.
38775         (lockf64) [__ASSUME_FCNTL64]: Likewise.
38777         * sysdeps/unix/sysv/linux/kernel-features.h
38778         (__ASSUME_VFORK_SYSCALL): Remove all definitions.
38779         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
38780         Make code unconditional.
38781         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
38782         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
38783         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
38784         [__NR_vfork]: Make code unconditional.
38785         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
38786         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
38787         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
38788         [__NR_vfork]: Make code unconditional.
38789         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
38790         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
38792 2012-08-01  Roland McGrath  <roland@hack.frob.com>
38794         * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
38795         (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
38797         * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38798         Define mkstemp64 as an alias.
38799         * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38800         Define mkstemps64 as an alias.
38801         * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38802         Define mkostemp64 as an alias.
38803         * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38804         Define mkostemps64 as an alias.
38805         * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
38806         Conditionalize body on this.
38807         * misc/mkostemp64.c: Likewise.
38808         * misc/mkostemps64.c: Likewise.
38809         * misc/mkstemps64.c: Likewise.
38810         * sysdeps/wordsize-64/mkstemp64.c: File removed.
38811         * sysdeps/wordsize-64/mkostemp64.c: File removed.
38812         * sysdeps/wordsize-64/mkostemp.c: File removed.
38813         * sysdeps/wordsize-64/mkstemp.c: File removed.
38814         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
38815         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
38816         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
38817         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
38819         [BZ #14138]
38820         * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
38821         * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
38822         * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
38823         * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
38825         * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
38826         compat_symbol macros from <shlib-compat.h> rather than the underlying
38827         default_symbol_version and symbol_version macros, so that DEFAULT
38828         lines in shlib-versions are respected.
38829         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
38831 2012-08-01  Florian Weimer  <fweimer@redhat.com>
38833         * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
38834         Declare with warn_unused_result.
38835         (setgid, setregid, setegid, setresgid): Likewise.
38836         * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
38837         Likewise.
38838         * WUR-REPORT: Remove set*id functions.
38840 2012-07-31  Pino Toscano  <toscano.pino@tiscali.it>
38842         * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
38844 2012-07-31  Roland McGrath  <roland@hack.frob.com>
38846         [BZ #10191]
38847         * include/sys/socket.h (__libc_accept, __libc_accept4):
38848         Add attribute_hidden.
38849         * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
38851         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
38852         use of PTR_MANGLE.
38853         * inet/getnetgrent_r.c (setup): Likewise.
38855         * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
38857 2012-07-31  David S. Miller  <davem@davemloft.net>
38859         * sysdeps/sparc/fpu/libm-test-ulps: Update.
38861 2012-07-31  Joseph Myers  <joseph@codesourcery.com>
38863         [BZ #13629]
38864         * math/s_clog.c (__clog): Use __log1p if larger part has absolute
38865         value between 1.0 and 2.0 and smaller part has absolute value less
38866         than 1.0.
38867         * math/s_clog10.c (__clog10): Likewise.
38868         * math/s_clog10f.c (__clog10f): Likewise.
38869         * math/s_clog10l.c (__clog10l): Likewise.
38870         * math/s_clogf.c (__clogf): Likewise.
38871         * math/s_clogl.c (__clogl): Likewise.
38872         * math/libm-test.inc (clog_test): Add more tests.
38873         (clog10_test): Likewise.
38874         * sysdeps/i386/fpu/libm-test-ulps: Update.
38875         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38877 2012-07-31  Florian Weimer  <fweimer@redhat.com>
38879         * stdlib/tst-secure-getenv.c: Use printf for error reporting.
38880         Exit with zero in case no suitable GID is found, and write a
38881         message to standard error.
38883 2012-07-30  Roland McGrath  <roland@hack.frob.com>
38885         * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
38886         rather than to 1.
38887         (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
38888         (MAXPATHLEN): Removed.
38889         (NOGROUP, NODEV): New macros.
38890         (setbit, clrbit, isset, isclr): New macros.
38891         (howmany, roundup, powerof2): New macros.
38892         (DEV_BSIZE): New macro.
38894         * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
38895         * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
38897         * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
38898         definition on [!__NO_LONG_DOUBLE_MATH].
38900         * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
38901         PTR_MANGLE and PTR_DEMANGLE.
38903         * socket/accept4.c (accept4): Rename to __libc_accept4.
38904         Define accept4 as a weak alias.
38906         * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
38907         on [_DIRENT_HAVE_D_TYPE].
38908         * io/ftw.c (ftw_dir): Likewise.
38910         * io/xmknod.c (__xmknod): Don't check PATH for being null.
38912         * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
38914         * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
38915         Use the BSD numbers rather than the arbitrary ones we had.
38916         (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
38917         (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
38918         (SIGXCPU, SIGXFSZ): New macros.
38919         (_NSIG): Now 32.
38921         * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
38922         initializer on [_LIBC_REENTRANT].
38924         * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
38925         definitions inside [_POSIX_MAPPED_FILES].
38927         * posix/regex.c: Include <sys/param.h> for MIN/MAX.
38929         * dirent/opendir.c: Include <fcntl.h>.
38931         * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
38932         (__libc_getspecific): Likewise.
38933         (__libc_key_create): Likewise.
38935         * stdio-common/tmpfile64.c: Include <fcntl.h> first.
38936         [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
38937         * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
38938         (tmpfile64): Define as alias.
38939         * sysdeps/wordsize-64/tmpfile.c: File removed.
38940         * sysdeps/wordsize-64/tmpfile64.c: File removed.
38941         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
38942         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
38944         * stdio-common/vfscanf.c: Include <stdbool.h>.
38945         * nss/makedb.c: Likewise.
38946         * stdio-common/_i18n_number.h: Likewise.
38947         * argp/argp-help.c: Likewise.
38948         * posix/wordexp.c: Likewise.
38949         * sysdeps/posix/spawni.c: Likewise.
38950         * nss/nss_files/files-initgroups.c: Likewise.
38951         * stdio-common/reg-modifier.c: Include <stdlib.h>.
38952         * nss/nss_files/files-initgroups.c: Likewise.
38953         * nss/nss_db/db-netgrp.c: Likewise.
38954         * nss/nss_db/db-initgroups.c: Likewise.
38955         * io/fchmodat.c: Include <sys/stat.h>.
38957         * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
38958         __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
38960         * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
38961         [HAVE_MMAP].
38963         * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
38964         Add multiple inclusion protection.
38966 2012-07-27  David S. Miller  <davem@davemloft.net>
38968         * sysdeps/sparc/fpu/libm-test-ulps: Update.
38970 2012-07-27  Gary Benson  <gbenson@redhat.com>
38972         [BZ #14298]
38973         * elf/rtld.c: Include <stap-probe.h>.
38974         (dl_main): Added static probes "init_start" and "init_complete".
38975         * elf/dl-load.c: Include <stap-probe.h>.
38976         (lose): Take new parameter "nsid".
38977         Added static probe "map_failed".
38978         (_dl_map_object_from_fd): Pass namespace id to lose.
38979         Added static probe "map_start".
38980         (open_verify): Pass namespace id to lose.
38981         * elf/dl-open.c: Include <stap-probe.h>.
38982         (dl_open_worker) Added static probes "map_complete", "reloc_start"
38983         and "reloc_complete".
38984         * elf/dl-close.c: Include <stap-probe.h>.
38985         (_dl_close_worker): Added static probes "unmap_start" and
38986         "unmap_complete".
38987         * elf/rtld-debugger-interface.txt: New file documenting the above.
38989 2012-07-26  Roland McGrath  <roland@hack.frob.com>
38991         * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
38992         rather than a string variable.
38993         * sunrpc/rpc_main.c (h_output): Likewise.
38994         * sunrpc/rpc_svcout.c (write_real_program): Likewise.
38996 2012-07-26  Pino Toscano  <toscano.pino@tiscali.it>
38998         * inet/check_native.c: New file.
39000 2012-07-26  Joseph Myers  <joseph@codesourcery.com>
39002         [BZ #13629]
39003         * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
39004         if larger part has absolute value 1.0.
39005         * math/s_clog10.c (__clog10): Likewise.
39006         * math/s_clog10f.c (__clog10f): Likewise.
39007         * math/s_clog10l.c (__clog10l): Likewise.
39008         * math/s_clogf.c (__clogf): Likewise.
39009         * math/s_clogl.c (__clogl): Likewise.
39010         * math/libm-test.inc (clog_test): Add more tests.
39011         (clog10_test): Likewise.
39012         * sysdeps/i386/fpu/libm-test-ulps: Update.
39013         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39015         * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
39016         (pltexit): Likewise.
39017         (La_regs): Likewise.
39018         (La_retval): Likewise.
39019         (int_retval): Likewise.
39020         Update #error for removed macros to refer only to definitions in
39021         tst-audit.h.
39022         * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
39023         macro.
39024         (pltexit): Likewise.
39025         (La_regs): Likewise.
39026         (La_retval): Likewise.
39027         (int_retval): Likewise.
39028         * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
39029         macro.
39030         (pltexit): Likewise.
39031         (La_regs): Likewise.
39032         (La_retval): Likewise.
39033         (int_retval): Likewise.
39034         * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
39035         macro.
39036         (pltexit): Likewise.
39037         (La_regs): Likewise.
39038         (La_retval): Likewise.
39039         (int_retval): Likewise.
39040         * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
39041         macro.
39042         (pltexit): Likewise.
39043         (La_regs): Likewise.
39044         (La_retval): Likewise.
39045         (int_retval): Likewise.
39046         * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
39047         macro.
39048         (pltexit): Likewise.
39049         (La_regs): Likewise.
39050         (La_retval): Likewise.
39051         (int_retval): Likewise.
39052         * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
39053         macro.
39054         (pltexit): Likewise.
39055         (La_regs): Likewise.
39056         (La_retval): Likewise.
39057         (int_retval): Likewise.
39058         * sysdeps/generic/tst-audit.h: Update comment to refer only to
39059         macro definitions in tst-audit.h.
39060         * sysdeps/i386/tst-audit.h: New file.
39061         * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
39062         * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
39063         * sysdeps/s390/s390-32/tst-audit.h: Likewise.
39064         * sysdeps/s390/s390-64/tst-audit.h: Likewise.
39065         * sysdeps/sh/tst-audit.h: Likewise.
39066         * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
39067         * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
39068         * sysdeps/x86_64/tst-audit.h: Likewise.
39070 2012-07-26  Andreas Jaeger  <aj@suse.de>
39072         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
39073         ptrace.
39075         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
39076         new value PTRACE_EVENT_SECCOMP from Linux 3.5.
39077         (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
39078         PTRACE_O_MASK.
39079         * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
39080         * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
39081         * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
39083         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
39084         value.
39086         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
39087         _sigsys.
39088         (si_call_addr, si_syscall, si_arch): Define new macro.
39089         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
39090         _sigsys.
39091         (si_call_addr, si_syscall, si_arch): Define new marcro.
39092         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
39093         _sigsys.
39094         (si_call_addr, si_syscall, si_arch): Define new macro.
39095         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
39096         _sigsys.
39097         (si_call_addr, si_syscall, si_arch): Define new macro.
39099 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
39101         [BZ #13717]
39102         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
39103         Change to 2.4.21 where previously 2.4.1.
39104         * sysdeps/unix/sysv/linux/configure: Regenerated.
39105         * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
39106         __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
39107         Linux kernel version.
39108         (__ASSUME_STD_AUXV): Remove.
39109         [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
39110         kernel version.
39111         [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
39112         (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
39113         (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
39114         (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
39115         (__ASSUME_NETLINK_SUPPORT): Likewise.
39116         * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
39117         (__no_netlink_support): Remove conditional definition.
39118         * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
39119         Remove.
39120         (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
39121         [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
39122         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
39123         (if_nameindex_ioctl): Remove.
39124         (if_nameindex_netlink): Do not handle __no_netlink_support.
39125         (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
39126         code.
39127         * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
39128         Remove conditional code.
39129         (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
39130         code.
39131         (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
39132         unconditional.
39133         [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
39134         [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
39135         * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
39136         Remove.
39137         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
39138         [!__ASSUME_STD_AUXV]: Remove conditional code.
39139         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
39140         [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
39141         [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
39142         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
39143         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
39144         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
39145         code.
39146         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
39147         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
39148         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
39149         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
39150         conditional code.
39151         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
39152         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
39153         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
39154         code.
39155         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
39156         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
39157         conditional code.
39158         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
39159         (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
39160         code unconditional.
39161         (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39162         conditional code.
39163         (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39164         unconditional.
39165         (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39166         conditional code.
39167         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
39168         (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39169         unconditional.
39170         (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39171         conditional code.
39172         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
39173         (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
39174         code unconditional.
39175         (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39176         conditional code.
39177         (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39178         unconditional.
39179         (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39180         conditional code.
39181         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
39182         (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
39183         code unconditional.
39184         (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39185         conditional code.
39186         (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39187         unconditional.
39188         (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39189         conditional code.
39191 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
39193         * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
39194         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
39195         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
39196         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
39197         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
39198         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
39199         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
39200         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
39201         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
39202         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
39203         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
39204         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
39205         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
39206         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
39207         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
39208         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
39209         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
39210         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
39211         * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
39212         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
39213         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
39214         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
39215         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
39217 2012-07-25  Florian Weimer  <fweimer@redhat.com>
39219         * Versions.def: Add GLIBC_2.17.
39220         * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
39221         * include/stdlib.h: Rename __secure_getenv to secure_getenv.
39222         Introduce __libc_secure_getenv.
39223         * stdlib/Versions (2.17): Add secure_getenv
39224         (GLIBC_PRIVATE): Add __libc_secure_getenv.
39225         * stdlib/secure-getenv.c: Rename __secure_getenv to
39226         __libc_secure_getenv.  Add secure_getenv alias.  Add compatibility
39227         symbol __secure_getenv for GLIBC_2.0.
39228         * stdlib/tst-secure-getenv.c: New.
39229         * stdlib/Makefile (tests): Add testcase.
39230         * manual/startup.texi (Environment Access): Document
39231         secure_getenv.
39232         * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
39233         __libc_secure_getenv.
39234         * inet/ruserpass.c (ruserpass): Likewise.
39235         * malloc/mtrace.c (mtrace): Likewise.
39236         * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
39237         * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
39238         * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
39239         * sysdeps/posix/tempname.c: Likewise.  Evaluate
39240         HAVE_SECURE_GETENV.
39241         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
39242         __secure_getenv to __libc_secure_getenv.
39243         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
39244         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
39245         Likewise.
39246         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
39247         Likewise.
39248         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
39249         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
39250         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
39251         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
39252         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
39253         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
39254         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
39256 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
39258         * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
39259         (struct La_i86_retval): Likewise.
39260         (struct La_x86_64_regs): Likewise.
39261         (struct La_x86_64_retval): Likewise.
39262         (struct La_x32_regs): Likewise.
39263         (struct La_x32_retval): Likewise.
39264         (struct La_ppc32_regs): Likewise.
39265         (struct La_ppc32_retval): Likewise.
39266         (struct La_ppc64_regs): Likewise.
39267         (struct La_ppc64_retval): Likewise.
39268         (struct La_sh_regs): Likewise.
39269         (struct La_sh_retval): Likewise.
39270         (struct La_s390_32_regs): Likewise.
39271         (struct La_s390_32_retval): Likewise.
39272         (struct La_s390_64_regs): Likewise.
39273         (struct La_s390_64_retval): Likewise.
39274         (struct La_sparc32_regs): Likewise.
39275         (struct La_sparc32_retval): Likewise.
39276         (struct La_sparc64_regs): Likewise.
39277         (struct La_sparc64_retval): Likewise.
39278         (struct audit_ifaces): Remove architecture-specific pltenter and
39279         pltexit members.
39280         * sysdeps/i386/ldsodefs.h: New file.
39281         * sysdeps/powerpc/ldsodefs.h: Likewise.
39282         * sysdeps/s390/ldsodefs.h: Likewise.
39283         * sysdeps/sh/ldsodefs.h: Likewise.
39284         * sysdeps/sparc/ldsodefs.h: Likewise.
39285         * sysdeps/x86_64/ldsodefs.h: Likewise.
39287 2012-07-25  Marek Polacek  <polacek@redhat.com>
39289         [BZ #6808]
39290         * math/libm-test.inc (yn_test): Add another test.
39291         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
39292         to ERANGE when the result is +-Inf.
39293         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
39294         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
39295         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
39296         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
39298 2012-07-24  Joseph Myers  <joseph@codesourcery.com>
39300         * conform/data/time.h-data (NULL): Use macro-constant.  Require
39301         equal to 0.
39302         (CLOCKS_PER_SEC): Use macro instead of constant.  Specify type as
39303         clock_t.
39304         [ISO11] (TIME_UTC): Use macro-int-constant.  Require value > 0.
39306 2012-07-23  Thomas Schwinge  <thomas@codesourcery.com>
39308         * configure.in <sysdeps resolving>: Correct printing
39309         Implies_before.
39310         * configure: Regenerate.
39312 2012-07-22  Thomas Schwinge  <thomas@codesourcery.com>
39314         * math/w_ilogb.c: Include <limits.h>.
39315         * math/w_ilogbl.c: Likewise.
39317 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
39319         * manual/lang.texi (__va_copy): Document primarily as ISO C99
39320         va_copy.  Document allowing for unavailable va_copy only as
39321         pre-C99 compatibility.
39322         * manual/string.texi (Copying and Concatenation): Use va_copy
39323         instead of __va_copy in concat example.
39325 2012-07-20  Pino Toscano  <toscano.pino@tiscali.it>
39327         * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
39328         (__sendto): Use create_address_port.  Initialize APORT and deallocate
39329         it if not null.
39331         * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
39332         with O_NOLINK passed to __file_name_lookup.
39334         * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
39335         with O_NOLINK passed to __file_name_lookup.
39337         * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
39338         negative N or less than NGIDS.
39340         * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
39341         type to string_t.  Set ERANGE as errno and return it if NAME is not big
39342         enough.  Use memcpy instead of strncpy.
39344 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
39346         * elf/Makefile (check-data): Remove.
39347         (localplt.data): New vpath directive.
39348         ($(objpfx)check-localplt.out): Use localplt.data from vpath
39349         instead of $(check-data).
39350         * scripts/data/localplt-generic.data: Move to ...
39351         * sysdeps/generic/localplt.data: ... here.
39352         * scripts/data/localplt-i386-linux-gnu.data: Move to ...
39353         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
39354         * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
39355         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
39356         ... here.
39357         * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
39358         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
39359         ... here.
39360         * scripts/data/localplt-s390-linux-gnu.data: Move to ...
39361         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
39362         ... here.
39363         * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
39364         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
39365         ... here.
39366         * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
39367         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
39368         ... here.
39369         * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
39370         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
39371         ... here.
39373 2012-07-19 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39375         * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
39376         PPC32 and PPC64 files.
39377         * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
39378         * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
39380 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
39382         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
39383         __makecontext_ret to ...
39384         * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
39385         ... here and call exit if uc_link is NULL.  New file.
39386         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
39387         __makecontext_ret.S.
39388         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
39389         __makecontext_ret to ...
39390         * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
39391         ... here and call exit if uc_link is NULL.  New file.
39392         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
39393         __makecontext_ret.S.
39395 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
39397         * elf/elf.h (R_390_IRELATIVE): New definition.
39398         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
39399         resolver function for IFUNC symbols.  Support R_390_IRELATIVE.
39400         (elf_machine_lazy_rel): Support R_390_IRELATIVE.
39401         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
39402         (elf_machine_lazy_rel): Likewise.
39403         * sysdeps/s390/dl-irel.h: New file.
39404         * sysdeps/s390/s390-64/memcpy.S: New asm code.
39405         * sysdeps/s390/s390-64/memset.S: New asm code.
39406         * sysdeps/s390/s390-64/memcmp.S: New asm code.
39407         * sysdeps/s390/s390-64/multiarch/memset.S: New file.
39408         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
39409         * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
39410         * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
39411         * sysdeps/s390/s390-64/multiarch/Makefile: New file.
39412         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
39413         * sysdeps/s390/s390-32/multiarch/Makefile: New file.
39414         * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
39415         * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
39416         * sysdeps/s390/s390-32/multiarch/memset.S: New file.
39417         * sysdeps/s390/s390-32/memcpy.S: New asm code.
39418         * sysdeps/s390/s390-32/memset.S: New asm code.
39419         * sysdeps/s390/s390-32/memcmp.S: New asm code.
39421 2012-07-17  Marek Polacek  <polacek@redhat.com>
39423         [BZ #14349]
39424         * sysdeps/s390/s390-32/configure.in: Remove TLS check.
39425         * sysdeps/s390/s390-64/configure.in: Likewise.
39426         * sysdeps/sparc/configure.in: Likewise.
39427         * sysdeps/powerpc/powerpc32/configure.in: Likewise.
39428         * sysdeps/powerpc/powerpc64/configure.in: Likewise.
39429         * sysdeps/i386/configure.in: Likewise.
39430         * sysdeps/x86_64/configure.in: Likewise.
39431         * sysdeps/sh/configure.in: Likewise.
39432         * sysdeps/s390/s390-32/configure: Regenerated.
39433         * sysdeps/s390/s390-64/configure: Likewise.
39434         * sysdeps/x86_64/configure: Likewise.
39435         * sysdeps/sh/configure: Likewise.
39436         * sysdeps/powerpc/powerpc64/configure: Likewise.
39437         * sysdeps/powerpc/powerpc32/configure: Likewise.
39438         * sysdeps/sparc/configure: Likwise.
39439         * sysdeps/i386/configure: Likewise.
39441         * elf/dl-open.c: Comment fixes.
39443 2012-07-17  Joseph Myers  <joseph@codesourcery.com>
39445         * Makefile [CXX] (check-data): Remove.
39446         [CXX] (c++-types.data): New vpath directive.
39447         [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
39448         vpath.  Do not allow for C++ type data being missing.
39449         * scripts/data/c++-types-alpha-linux-gnu.data: Move to
39450         ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
39451         * scripts/data/c++-types-ia64-linux-gnu.data: Move to
39452         ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
39453         * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
39454         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
39455         * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
39456         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
39457         ... here.
39458         * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
39459         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
39460         ... here.
39461         * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
39462         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
39463         ... here.
39464         * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
39465         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
39466         ... here.
39467         * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
39468         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
39469         ... here.
39470         * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
39471         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
39472         ... here.
39473         * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
39474         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
39475         ... here.
39476         * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
39477         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
39479         * elf/tls-macros.h (TLS_LE): Move architecture-specific
39480         definitions to architecture-specific files.
39481         (TLS_IE): Likewise.
39482         (TLS_LD): Likewise.
39483         (TLS_GD): Likewise.
39484         * sysdeps/i386/tls-macros.h: New file.
39485         * sysdeps/powerpc/tls-macros.h: Likewise.
39486         * sysdeps/s390/s390-32/tls-macros.h: Likewise.
39487         * sysdeps/s390/s390-64/tls-macros.h: Likewise.
39488         * sysdeps/sh/tls-macros.h: Likewise.
39489         * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
39490         * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
39491         * sysdeps/x86_64/tls-macros.h: Likewise.
39493 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
39495         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
39496         zero value for regular exit case.
39498         * sysdeps/unix/sysv/linux/x86_64/__start_context.S
39499         (__start_context): Preserve zero value for regular exit case.
39501 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
39502             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
39504         * manual/setjmp.texi (setcontext): Clarify normal process
39505         termination when uc_link is the null pointer.
39506         * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
39507         exit call.
39509 2012-07-16  Andreas Schwab  <schwab@linux-m68k.org>
39511         * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
39512         preprocessor.  Test for each exception mask separately.
39514 2012-07-16  Andreas Jaeger  <aj@suse.de>
39516         * po/ru.po: Update from translation team.
39518 2012-07-15  Joseph Myers  <joseph@codesourcery.com>
39520         * conform/data/string.h-data (NULL): Use macro-constant.  Require
39521         equal to 0.
39522         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
39523         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
39524         (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
39525         (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
39526         [ISO || ISO99 || ISO11] (*_t): Do not allow.
39528 2012-07-13  Andreas Jaeger  <aj@suse.de>
39530         * po/fr.po: Update from translation team.
39532 2012-07-12  Marek Polacek  <polacek@redhat.com>
39534         [BZ #14173]
39535         * math/libm-test.inc (yn_test): Add test for BZ #14173.
39536         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
39537         loop condition.
39539 2012-07-12  Joseph Myers  <joseph@codesourcery.com>
39541         [BZ #13717]
39542         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
39543         Change to 2.4.1 where previously 2.4.0.
39544         * sysdeps/unix/sysv/linux/configure: Regenerated.
39545         * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
39546         (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
39547         version.
39548         [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
39549         (__ASSUME_AT_CLKTCK): Remove.
39550         (__ASSUME_AT_PAGESIZE): Likewise.
39551         (__ASSUME_AT_XID): Likewise.
39552         (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
39553         [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
39554         * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
39555         unconditionally.
39556         (HAVE_AUX_PAGESIZE): Likewise.
39557         * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
39558         [__ASSUME_AT_CLKTCK]: Make code unconditional.
39559         [!__ASSUME_AT_CLKTCK]: Remove conditional code.
39561 2012-07-12  Jeroen van Bemmel  <jvb127@gmail.com>
39563         [BZ #14307]
39564         * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
39565         the temporary buffer used to invoke __gethostbyname2_r,
39566         __gethostbyaddr_r and gethostbyname4_r to make room for struct
39567         host_data / struct gaih_addrtuple.
39568         * resolv/nss_dns/dns-host.c (global scope): Move definition of
39569         implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
39570         header file nss/nsswitch.h.
39571         * nss/nsswitch.h (global scope): Add definition of implementation
39572         constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
39573         resolv/nss_dns/dns-host.c).
39575 2012-07-11  Andreas Jaeger  <aj@suse.de>
39577         * po/fr.po: Update from translation team.
39579         * po/sv.po: Update from translation team
39580         * po/fr.po: Another update from translation team.
39582 2012-07-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39584         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
39585         for subnormals or multiply small sinh result by itself.
39586         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
39587         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39589 2012-07-11  David S. Miller  <davem@davemloft.net>
39591         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39593 2012-07-10  Andreas Schwab  <schwab@linux-m68k.org>
39595         [BZ #14347]
39596         * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
39597         (INTERNAL_MARK): Shift it here.
39599 2012-07-10  Marek Polacek  <polacek@redhat.com>
39601         [BZ #14151]
39602         * configure.in (libc_cv_asm_global_directive): Remove test.  Replace
39603         libc_cv_asm_global_directive with .globl.
39604         * configure: Regenerated.
39605         * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
39606         with .globl.
39607         * sysdeps/i386/configure: Regenerated.
39608         * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
39609         with .globl.
39610         * sysdeps/x86_64/configure: Regenerated.
39611         * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
39612         * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
39613         * elf/tst-unique2mod2.c: Likewise.
39614         * elf/tst-unique2mod1.c: Likewise.
39615         * elf/tst-unique1mod2.c: Likewise.
39616         * elf/tst-unique1mod1.c: Likewise.
39617         * sysdeps/s390/s390-32/sysdep.h: Likewise.
39618         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
39619         * sysdeps/s390/s390-64/sysdep.h: Likewise.
39620         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
39621         * sysdeps/mach/sysdep.h: Likewise.
39622         * sysdeps/i386/sysdep.h: Likewise.
39623         * sysdeps/i386/i386-mcount.S: Likewise.
39624         * sysdeps/x86_64/_mcount.S: Likewise.
39625         * sysdeps/x86_64/sysdep.h: Likewise.
39626         * sysdeps/sh/_mcount.S: Likewise.
39627         * sysdeps/sh/sysdep.h: Likewise.
39628         * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
39629         * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
39630         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
39631         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
39632         * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
39633         * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
39634         * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
39635         * locale/localeinfo.h: Likewise.
39636         (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
39637         (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
39639 2012-07-09  Roland McGrath  <roland@hack.frob.com>
39641         [BZ #14336]
39642         * manual/charset.texi (Extended Char Intro): Word use fix, "operating
39643         system".
39644         * manual/message.texi (The Uniforum approach): Likewise.
39645         * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
39646         (glibc iconv Implementation): Likewise.
39648 2012-07-09  Joseph Myers  <joseph@codesourcery.com>
39650         [BZ #14337]
39651         * math/s_clog.c (__clog): Avoid scaling a value down where that
39652         could result in underflow.
39653         * math/s_clog10.c (__clog10): Likewise.
39654         * math/s_clog10f.c (__clog10f): Likewise.
39655         * math/s_clog10l.c (__clog10l): Likewise.
39656         * math/s_clogf.c (__clogf): Likewise.
39657         * math/s_clogl.c (__clogl): Likewise.
39658         * math/libm-test.inc (clog_test): Add more tests.
39659         (clog10_test): Likewise.
39660         * sysdeps/i386/fpu/libm-test-ulps: Update.
39661         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39663 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
39665         [BZ #14283]
39666         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
39667         by 7 not 8 to examine high bit of fractional part.
39669         [BZ #14042]
39670         * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
39671         for call to __mcount_internal.
39672         * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
39673         (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
39674         * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
39676 2012-07-06  Joseph Myers  <joseph@codesourcery.com>
39678         [BZ #14154]
39679         * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
39680         approximation for values within 0x1p-13f of an odd multiple of
39681         pi/4.
39682         * math/libm-test.inc (tan_test): Do not allow spurious underflow
39683         exception.  Add more tests.
39684         * sysdeps/i386/fpu/libm-test-ulps: Update.
39686         [BZ #6778]
39687         * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
39688         inputs and return -1 for them.  Do not check for +Inf in case not
39689         reachable for +Inf.
39690         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
39691         * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
39692         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
39693         and return -1 for them.  Do not check for +Inf in case not
39694         reachable for +Inf.
39695         * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
39696         define.
39697         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
39698         and return -1 for them.  Do not check for +Inf in case not
39699         reachable for +Inf.
39700         * math/libm-test.inc (expm1_test): Add more tests.  Do not allow
39701         spurious underflow.
39702         * sysdeps/i386/fpu/libm-test-ulps: Update.
39703         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39705 2012-07-06  Mike Frysinger  <vapier@gentoo.org>
39707         * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
39709 2012-07-05  Joseph Myers  <joseph@codesourcery.com>
39711         [BZ #14157]
39712         [BZ #14331]
39713         * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
39714         could result in spurious underflow.  Scale down values above
39715         DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
39716         * math/s_csqrtf.c (__csqrtf): Likewise.
39717         * math/s_csqrtl.c (__csqrtl): Likewise.
39718         * math/libm-test.inc (csqrt_test): Add more tests.  Do not allow
39719         spurious underflow.
39720         * sysdeps/i386/fpu/libm-test-ulps: Update.
39721         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39723 2012-07-04  Andreas Schwab  <schwab@linux-m68k.org>
39725         * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
39726         xopen-msg.sed.
39727         * catgets/xopen-msg.awk: New file.
39728         * catgets/xopen-msg.sed: Removed.
39730         * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
39731         po2text.sed.
39732         * intl/po2test.awk: New file.
39733         * intl/po2test.sed: Removed.
39735 2012-07-04  Joseph Myers  <joseph@codesourcery.com>
39737         [BZ #14328]
39738         * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
39739         or multiply small sinh result by itself.
39740         * math/s_ctanf.c (__ctanf): Likewise.
39741         * math/s_ctanh.c (__ctanh): Likewise.
39742         * math/s_ctanhf.c (__ctanhf): Likewise.
39743         * math/s_ctanhl.c (__ctanhl): Likewise.
39744         * math/s_ctanl.c (__ctanl): Likewise.
39745         * math/libm-test.inc (ctan_test_tonearest): New function.
39746         (ctan_test_towardzero): Likewise.
39747         (ctan_test_downward): Likewise.
39748         (ctan_test_upward): Likewise.
39749         (ctanh_test_tonearest): Likewise.
39750         (ctanh_test_towardzero): Likewise.
39751         (ctanh_test_downward): Likewise.
39752         (ctanh_test_upward): Likewise.
39753         (main): Call these new functions.
39754         * sysdeps/i386/fpu/libm-test-ulps: Update.
39755         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39757 2012-07-03  Mike Frysinger  <vapier@gentoo.org>
39759         * .gitignore: Delete /ports entry.
39761 2012-07-03  Andreas Jaeger  <aj@suse.de>
39763         * po/bg.po: Update from translation team.
39764         * po/cs.po: Likewise.
39765         * po/de.po: Likewise.
39766         * po/hr.po: Likewise.
39767         * po/nl.pl: Likewise.
39768         * po/pl.po: Likewise.
39769         * po/vi.po: Likewise.
39771 2012-07-03  Joseph Myers  <joseph@codesourcery.com>
39773         * Makeconfig [!+link] (+link-before-libc): New variable.
39774         [!+link] (+link-after-libc): Likewise.
39775         [!+link] (+link-tests): Likewise.
39776         [!+link] (+link): Define in terms of $(+link-before-libc) and
39777         $(+link-after-libc).
39778         [!+link-static] (+link-static-before-libc): New variable.
39779         [!+link-static] (+link-static-after-libc): Likewise.
39780         [!+link-static] (+link-static-tests): Likewise.
39781         [!+link-static] (+link-static): Define in terms of
39782         $(+link-static-before-libc) and $(+link-static-after-libc).
39783         [build-shared] (link-libc-before-gnulib): New variable.
39784         [build-shared] (link-libc-tests): Likewise.
39785         [build-shared] (link-libc): Define in terms of
39786         $(link-libc-before-gnulib).
39787         [!build-shared] (link-libc-tests): New variable.
39788         (link-libc-static-tests): New variable.
39789         [!gnulib] (gnulib-arch): New variable.
39790         [!gnulib] (gnulib-tests): Likewise.
39791         [!gnulib] (static-gnulib-arch): Likewise.
39792         [!gnulib] (static-gnulib-tests): Likewise.
39793         [!gnulib] (gnulib): Use $(gnulib-arch).  Do not use $(libgcc_eh).
39794         Define with "=" instead of ":=".
39795         [!gnulib] (static-gnulib): Use $(static-gnulib-arch).  Do not use
39796         -lgcc_eh $(libunwind).  Define with "=" instead of ":=".
39797         * Rules (binaries-all-notests): New variable.
39798         (binaries-all-tests): Likewise.
39799         (binaries-static-notests): Likewise.
39800         (binaries-static-tests): Likewise.
39801         (binaries-all): Define using $(binaries-all-notests) and
39802         $(binaries-all-tests).
39803         (binaries-static): Define using $(binaries-static-notests) and
39804         $(binaries-static-tests).
39805         (binaries-shared-tests): New variable.
39806         (binaries-shared-notests): Likewise.
39807         (binaries-shared): Remove variable.
39808         ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
39809         ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
39810         ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
39811         ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
39812         ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
39813         ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
39814         * elf/Makefile (sln-modules): New variable.
39815         (extra-objs): Add $(sln-modules:=.o).
39816         (ldconfig-modules): Add static-stubs.
39817         ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
39818         * elf/static-stubs.c: New file.
39820         [BZ #14283]
39821         * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
39822         by 7 not 8 to examine high bit of fractional part.  Use volatile
39823         variables when splitting into final array of floats if
39824         __FLT_EVAL_METHOD__ != 0.
39825         * math/libm-test.inc (cos_test): Add another test.
39826         (sin_test): Likewise.
39827         * sysdeps/i386/fpu/libm-test-ulps: Update.
39829         [BZ #14273]
39830         * math/libm-test.inc (cosh_test): Add more tests.
39832         * version.h (RELEASE): Set to "development".
39833         (VERSION): Set to "2.16.90".
39835 2012-06-30  Carlos O'Donell  <carlos_odonell@mentor.com>
39837         * NEWS: Update copyright. Remove last-updated date.
39838         Mention math library bug fixes and timezone data changes.
39839         * README: Mention GNU/Hurd, x32, and HPPA support status.
39841 2012-06-28  Thomas Schwinge  <thomas@codesourcery.com>
39843         * manual/contrib.texi (Contributors): Sort alphabetically by last name.
39845 2012-06-27  Andreas Jaeger  <aj@suse.de>
39847         * manual/contrib.texi (Contributors): Add Samuel Thibault.
39849 2012-06-25  Andreas Jaeger  <aj@suse.de>
39851         * sysdeps/s390/fpu/libm-test-ulps: Update.
39853 2012-06-23  Andreas Schwab  <schwab@linux-m68k.org>
39854             Thomas Schwinge  <thomas@codesourcery.com>
39856         * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
39857         * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
39858         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
39859         fanotify_mark.
39861 2012-06-23  Thomas Schwinge  <thomas@codesourcery.com>
39863         * sysdeps/mach/start.c: Remove file.
39864         * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
39865         * sysdeps/i386/init-first.c: Fix comment regarding start.S.
39866         * sysdeps/sh/init-first.c: Likewise.
39868         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
39869         registers for frame unwinding purposes, add CFI directives.
39870         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
39871         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
39872         * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
39873         Likewise.
39875         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
39876         __fortify_fail returning.
39877         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
39879         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
39880         sysdeps/sh/____longjmp_chk.S.
39881         * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
39882         on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
39883         * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
39884         (gen-as-const-headers): Append sigaltstack-offsets.sym.
39886         * sysdeps/sh/abort-instr.h: New file.
39887         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
39888         process in case exit returns.
39890         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
39891         initialize the GOT register before use.
39893         * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
39894         calculation of ARGC > 4.
39896         * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
39897         meaningful names to some local labels.
39899 2012-06-22  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
39900             Kaz Kojima  <kkojima@rr.iij4u.or.jp>
39902         * sysdeps/unix/sysv/linux/sh/bits/atomic.h
39903         (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
39904         (__arch_compare_and_exchange_val_16_acq): Likewise.
39905         (__arch_compare_and_exchange_val_32_acq): Likewise.
39906         (atomic_exchange_and_add): Fix gUSA sequence.
39907         (atomic_add): Likewise.
39908         (atomic_add_negative): Likewise.
39909         (atomic_add_zero): Likewise.
39910         (atomic_bit_test_set): Likewise.
39912 2012-06-22  Andreas Schwab  <schwab@redhat.com>
39914         [BZ #13579]
39915         * include/link.h (struct link_map): Add l_free_initfini.
39916         * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
39917         l_initfini.
39918         * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
39919         * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
39920         * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
39921         set.
39923 2012-06-22  Carlos O'Donell  <carlos_odonell@mentor.com>
39925         * configure.in: Use AC_LANG_SOURCE.
39926         * configure: Regenerate.
39928 2012-06-22  Roland McGrath  <roland@hack.frob.com>
39930         * configure.in (libc_cv_localstatedir): New substituted variable.
39931         * configure: Regenerated.
39932         * config.make.in (localstatedir): New variable, substituted from
39933         libc_cv_localstatedir.
39934         * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
39935         * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
39936         ${prefix}/var to /var when we change ${prefix}/etc to /etc.
39937         * sysdeps/gnu/configure: Regenerated.
39939 2012-06-21  Jeff Law  <law@redhat.com>
39941         [BZ #14277]
39942         * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
39943         free.  Simplify list management for _LIBC case.
39945 2012-06-21  Joseph Myers  <joseph@codesourcery.com>
39947         [BZ #14273]
39948         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
39949         Clear sign bit of 64-bit integer value before comparing against
39950         overflow value.
39952         * sysdeps/mach/configure: Regenerated.
39954 2012-06-21  H.J. Lu  <hongjiu.lu@intel.com>
39956         [BZ #14278]
39957         * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
39959 2012-06-21  Jeff Law  <law@redhat.com>
39961         [BZ #13882]
39962         * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection.  Use
39963         uint16_t for elements in the "seen" array to avoid char overflows.
39964         * elf/dl-fini.c (_dl_sort_fini): Likewise.
39965         * elf/dl-open.c (dl_open_worker): Likewise.
39967 2012-06-21  Carlos O'Donell  <carlos_odonell@mentor.com>
39969         * scripts/list-sources.sh: Scan PORTS for translations.
39970         * po/libc.pot: Regenerated.
39972 2012-06-21  Andreas Jaeger  <aj@suse.de>
39974         [BZ #12194]
39975         * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
39976         warning.
39977         * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
39978         * bits/byteswap-16.h (__bswap_16): Likewise.
39979         * bits/byteswap.h (__bswap_constant_16): Likewise.
39981 2012-06-18  H.J. Lu  <hongjiu.lu@intel.com>
39983         [BZ #14117]
39984         * sysdeps/i386/fpu_control.h: Removed.
39985         * sysdeps/x86_64/fpu_control.h: Moved to ...
39986         * sysdeps/x86/fpu_control.h: Here.
39988         * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
39989         (_FPU_SETCW): Likewise.
39991 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
39993         [BZ #14117]
39994         * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
39995         * sysdeps/x86/fpu/bits/mathinline.h: This.
39996         * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
39998         [BZ #14050]
39999         [BZ #14117]
40000         * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
40001         functions if __x86_64__ is defined.
40003 2012-06-15  Chung-Lin Tang  <cltang@codesourcery.com>
40005         * string/endian.h: Add !__ASSEMBLER__ condition for including
40006         conversion interfaces.
40008 2012-06-15  Joseph Myers  <joseph@codesourcery.com>
40010         [BZ #14241]
40011         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
40012         of ABS(x) in calculating zero to negative powers other than odd
40013         integers.
40014         * math/libm-test.inc (pow_test): Add more tests.
40016 2012-06-15  Andreas Jaeger  <aj@suse.de>
40018         * manual/contrib.texi (Contributors): Update entry of Liubov
40019         Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
40020         Machado Filho.
40022 2012-06-15  Cyril Hrubis  <metan@ucw.cz>
40024         * string/string.h: Add __wur to GNU version of strerror_r.
40026 2012-06-14  H.J. Lu  <hongjiu.lu@intel.com>
40028         [BZ #14229]
40029         * string/Makefile (tests): Add tst-strtok_r.
40030         * string/tst-strtok_r.c: New file.
40031         * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
40032         RAX_LP/RDX_LP on SAVE_PTR.
40034 2012-06-14  Roland McGrath  <roland@hack.frob.com>
40036         * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
40038 2012-06-14  Joseph Myers  <joseph@codesourcery.com>
40040         * libm_test.inc (csqrt_test): Allow more spurious underflow
40041         exceptions.
40042         (j0_test): Likewise.
40043         (j1_test): Likewise.
40044         (y0_test): Likewise.
40045         (y1_test): Likewise.
40047 2012-06-13  Carlos O'Donell  <carlos_odonell@mentor.com>
40049         * po/Makefile (libc.pot): Use UTF-8 charset.
40051 2012-06-13  Paul Pluzhnikov  <ppluzhnikov@google.com>
40053         [BZ #14210]
40054         Suppress sign-conversion warning from FD_SET.
40055         See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
40056         * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
40057         not unsigned long int.
40058         * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
40060 2012-06-12  H.J. Lu  <hongjiu.lu@intel.com>
40062         [BZ #14050]
40063         [BZ #14117]
40064         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
40065         __extern_always_inline instead of __extern_inline.
40066         (__signbitf): Support __SSE2_MATH__ and C++ namespace.
40067         (__signbit): Likewise.
40068         (__signbitl): Support C++ namespace.
40069         (lrintf): New inline function.
40070         (lrint): Likewise.
40071         (llrintf): Likewise.
40072         (llrint): Likewise.
40073         (fmaxf): Likewise.
40074         (fmax): Likewise.
40075         (fminf): Likewise.
40076         (fmin): Likewise.
40077         (rint): Likewise.
40078         (rintf): Likewise.
40079         (ceil): Likewise.
40080         (ceilf): Likewise.
40081         (floor): Likewise.
40082         (floorf): Likewise.
40083         (nearbyint): Likewise.
40084         (nearbyintf): Likewise.
40086 2012-06-12  Thomas Schwinge  <thomas@codesourcery.com>
40088         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
40089         non-default versions.
40091 2012-06-11  Roland McGrath  <roland@hack.frob.com>
40093         [BZ #14218]
40094         * manual/argp.texi (Argp): Reword argp_parse description slightly.
40096 2012-06-09  Thomas Schwinge  <thomas@codesourcery.com>
40098         * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
40099         (FE_UPWARD, FE_DOWNWARD): Don't define.
40100         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
40101         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
40103         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
40104         reading it.
40105         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
40106         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
40108 2012-06-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
40110         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
40111         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
40112         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
40113         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
40115 2012-06-06  H.J. Lu  <hongjiu.lu@intel.com>
40117         [BZ #14117]
40118         * sysdeps/i386/fpu/bits/fenv.h: Removed.
40119         * sysdeps/i386/fpu/Implies: New file.
40120         * sysdeps/x86_64/fpu/Implies: Likewise.
40121         * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
40122         * sysdeps/x86/fpu/bits/fenv.h: This.
40124         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
40125         __SSE_MATH__.
40127 2012-06-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
40129         [BZ #14134]
40130         * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
40131         character 0xffff that matches the last element of the
40132         conversion table.
40134 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40136         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
40137         fmodl commit.
40139 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40141         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
40142         values higher than 25.6283.
40144 2012-06-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40146         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
40147         subnormal exponent extraction and add some __builtin_expect.
40148         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
40149         Fix for subnormal mantissa calculation.
40151 2012-06-04  Mike Frysinger  <vapier@gentoo.org>
40153         * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
40154         cpu2 is -1 and errno is not ENOSYS.
40156 2012-06-04  H.J. Lu  <hongjiu.lu@intel.com>
40158         [BZ #14117]
40159         * sysdeps/i386/i486/bits/string.h: Renamed to ...
40160         * sysdeps/x86/bits/string.h: This.
40161         * sysdeps/x86_64/bits/string.h: Removed.
40163         * sysdeps/i386/i486/bits/string.h: Define inline functions only
40164         if not compiling for x86-64, but compiling for >= i486.
40166         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
40167         * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
40169         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
40170         New macro from Linux kernel 3.4.0.
40171         (FP_XSTATE_MAGIC2): Likewise.
40172         (FP_XSTATE_MAGIC2_SIZE): Likewise.
40173         (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
40174         (struct _fpx_sw_bytes): New struct.
40175         (struct _xsave_hdr): Likewise.
40176         (struct _ymmh_state): Likewise.
40177         (struct _xstate): Likewise.
40179         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
40180         * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
40181         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
40182         * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
40183         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
40184         * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
40186         * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
40187         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
40188         * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
40189         * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
40190         * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
40191         * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
40193 2012-06-04  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
40195         [BZ #13743]
40196         * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
40197         * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
40198         (sysdep_headers): Include sys/platform/ppc.h.
40199         * sysdeps/powerpc/test-gettimebase.c: Test for
40200         __ppc_get_timebase() to catch future ISA opcode/insn changes.
40201         * manual/Makefile (appendices): Include platform.texi.
40202         * manual/contrib.texi (Contributors): Update @node pointers.
40203         * manual/maint.texi (Maintenance): Likewise.
40204         (Platform): New node.
40205         * manual/platform.texi: New file.  Document the new features.
40207 2012-06-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
40208             Jakub Jelinek  <jakub@redhat.com>
40210         [BZ #14188]
40211         * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
40212         where __builtin_expect is unavailable.
40214 2012-06-03  David S. Miller  <davem@davemloft.net>
40216         * stdlib/longlong.h: Updated from GCC.
40218 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
40220         [BZ #14042]
40221         * sysdeps/powerpc/powerpc32/mcount.c: New file.
40222         * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
40223         __mcount_internal.
40224         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
40225         (GLIBC_2.16): Likewise.
40227 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
40229         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
40231 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
40233         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
40234         (default-abi): New variable.
40235         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
40236         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
40237         variable.
40238         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
40239         Likewise.
40240         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
40241         Likewise.
40242         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
40243         Likewise.
40245         * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
40246         definition.  Document in comment.
40248 2012-06-01  David S. Miller  <davem@davemloft.net>
40250         * stdlib/longlong.h: Updated from GCC.
40252 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
40254         [BZ #14117]
40255         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
40256         Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
40257         sys/debugreg.h sys/io.h here.
40258         * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
40259         sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
40260         sys/io.h.
40261         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
40262         Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
40263         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
40264         * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
40265         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
40266         * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
40268         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
40269         Define only if __x86_64__ is defined.
40271 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
40273         [BZ #14048]
40274         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
40275         Use int64_t for variable i.
40276         * math/libm-test.inc (fmod_test): Add more tests.
40278         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
40279         z computation is not scheduled after fetestexcept.
40280         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
40281         Use math_force_eval instead of asm to ensure calculation scheduled
40282         before exception test.
40283         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
40284         Ensure a1 + u.d computation is not scheduled after fetestexcept.
40286 2012-06-01  Aurelien Jarno  <aurelien@aurel32.net>
40288         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
40289         computation is not scheduled after fetestexcept.
40291 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
40293         [BZ #14117]
40294         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
40295         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
40297 2012-06-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40299         * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
40300         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
40302 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
40304         [BZ #14117]
40305         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
40306         <bits/wordsize.h>.
40307         (__WCHAR_MIN): Support __WORDSIZE == 64.
40308         (__WCHAR_MAX): Likewise.
40310         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
40311         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
40313         [BZ #14183]
40314         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
40315         Defined with __SWORD_TYPE if __x86_64__ isn't defined.
40317         [BZ #14117]
40318         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
40319         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
40321         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
40322         * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
40324         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
40325         Defined to 1 if __x86_64__ isn't defined.
40326         (_STAT_VER_LINUX_OLD): New.
40327         (st_atime): Remove duplicate.
40328         (st_mtime): Likewise.
40329         (st_ctime): Likewise.
40331 2012-05-31  David S. Miller  <davem@davemloft.net>
40333         * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
40334         entries.
40336 2012-06-01  Andreas Schwab  <schwab@linux-m68k.org>
40338         * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
40339         gen-libm-test.pl.
40341         [BZ #14132]
40342         * elf/dl-reloc.c: Include <_itoa.h>.
40343         (_dl_reloc_bad_type): Remove use of INTUSE.
40344         * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
40345         * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
40346         * stdio-common/psiginfo.c (psiginfo): Likewise.
40347         * stdio-common/psignal.c (psignal): Likewise.
40348         * string/strsignal.c (strsignal): Likewise.
40349         * include/signal.h (_sys_siglist): Declare hidden proto.
40350         * stdio-common/itoa-digits.c: Include <_itoa.h>.  Replace
40351         INTVARDEF with libc_hidden_data_def.
40352         * stdio-common/itoa-udigits.c: Likewise.
40353         * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
40354         (_itoa_lower_digits_internal): Remove declaration.
40355         (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
40356         * sysdeps/gnu/siglist.c (_sys_siglist_internal)
40357         (_sys_sigabbrev_internal): Remove aliases.
40358         (_sys_siglist): Define hidden alias.
40360 2012-05-31  Markus Trippelsdorf  <markus@trippelsdorf.de>
40362         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
40363         bits/sysctl.h.
40365 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
40367         [BZ #14117]
40368         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
40369         * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
40371         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
40372         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
40373         * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
40374         * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
40375         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
40376         * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
40378         * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
40379         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
40380         * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
40382         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
40383         with __addr.
40384         (insw): Likewise.
40385         (insl): Likewise.
40386         (outsb): Likewise.
40387         (outsw): Likewise.
40388         (outsl): Likewise.
40390         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
40391         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
40392         * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
40394         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
40395         * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
40396         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
40397         * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
40398         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
40399         * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
40401         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
40402         * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
40404         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
40405         * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
40407         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
40408         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
40409         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
40411         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
40412         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
40413         to ...
40414         * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
40416         * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
40417         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
40418         * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
40420         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
40421         for x86-64.
40422         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
40424 2012-05-31  Joseph Myers  <joseph@codesourcery.com>
40426         * math/math.h (M_El): Use two more decimal places.
40427         (M_LOG2El): Likewise.
40428         (M_LOG10El): Likewise.
40429         (M_LN2l): Likewise.
40430         (M_LN10l): Likewise.
40431         (M_PIl): Likewise.
40432         (M_PI_2l): Likewise.
40433         (M_PI_4l): Likewise.
40434         (M_1_PIl): Likewise.
40435         (M_2_PIl): Likewise.
40436         (M_2_SQRTPIl): Likewise.
40437         (M_SQRT2l): Likewise.
40438         (M_SQRT1_2l): Likewise.
40440 2012-05-31  David S. Miller  <davem@davemloft.net>
40442         * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
40443         values between float registers.
40444         * sysdeps/sparc/sparc64/memset.S: Likewise.
40445         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
40447 2012-05-31  Mike Frysinger  <vapier@gentoo.org>
40449         * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
40450         -D_FORTIFY_SOURCE=1.
40451         (CPPFLAGS-tst-longjmp_chk.c): Define.
40452         (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
40453         (CPPFLAGS-tst-longjmp_chk2.c): Define.
40454         * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
40455         CFLAGS-tst-wchar-h.c.
40457 2012-05-31  Marek Polacek  <polacek@redhat.com>
40459         [BZ #14132]
40460         * include/mntent.h (__setmntent_internal, __getmntent_r_internal
40461         __endmntent_internal): Remove declaration.
40462         (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
40463         (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
40464         * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
40466 2012-05-30  David S. Miller  <davem@davemloft.net>
40468         * sysdeps/sparc/sparc32/soft-fp/q_util.c
40469         (___Q_simulate_exceptions): Use real FP ops rather than writing
40470         into the %fsr.
40471         * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
40472         Likewise.
40474 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
40476         [BZ #14117]
40477         * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
40478         * sysdeps/x86/bits/xtitypes.h: This.
40480         * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
40481         * sysdeps/x86/bits/wordsize.h: This.
40483         * sysdeps/i386/bits/huge_vall.h: Renamed to ...
40484         * sysdeps/x86/bits/huge_vall.h: This.
40486         * sysdeps/i386/bits/select.h: Removed.
40487         * sysdeps/x86_64/bits/select.h: Renamed to ...
40488         * sysdeps/x86/bits/select.h: This.
40490         * sysdeps/i386/bits/setjmp.h: Removed.
40491         * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
40492         * sysdeps/x86/bits/setjmp.h: This.
40494         * sysdeps/i386/bits/mathdef.h: Removed.
40495         * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
40496         * sysdeps/x86/bits/mathdef.h: This.
40498 2012-05-30  Andreas Schwab  <schwab@linux-m68k.org>
40500         [BZ #14132]
40501         * include/sys/socket.h (__connect_internal)
40502         (__libc_sa_len_internal): Remove declaration.
40503         (__connect, __libc_sa_len): Declare hidden_proto.
40504         (SA_LEN): Remove use of INTUSE.
40505         * socket/connect.c: Add libc_hidden_def.
40506         * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
40507         * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
40508         * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
40509         alias.
40510         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
40511         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
40512         * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
40513         of adding _internal alias.
40515 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
40517         [BZ #14117]
40518         * sysdeps/i386/bits/link.h: Removed.
40519         * sysdeps/i386/bits/linkmap.h: Likewise.
40520         * sysdeps/x86_64/bits/link.h: Renamed to ...
40521         * sysdeps/x86/bits/link.h: This.
40522         * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
40523         * sysdeps/x86/bits/linkmap.h: This.
40525         * sysdeps/i386/bits/endian.h: Removed.
40526         * sysdeps/x86_64/bits/endian.h: Renamed to ...
40527         * sysdeps/x86/bits/endian.h: This.
40529         * sysdeps/i386/bits/byteswap.h: Removed.
40530         * sysdeps/i386/bits/byteswap-16.h: Likewise.
40531         * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
40532         * sysdeps/x86/bits/byteswap.h: This.
40533         * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
40534         * sysdeps/x86/bits/byteswap-16.h: This.
40535         * sysdeps/i386/Implies: Add x86.
40536         * sysdeps/x86_64/Implies: Likewise.
40538 2012-05-30  David S. Miller  <davem@davemloft.net>
40540         * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
40541         (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
40542         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
40543         (FP_TRAPPING_EXCEPTIONS): Define.
40544         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
40545         (FP_TRAPPING_EXCEPTIONS): Define.
40546         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
40547         subnormals only when inexact has been signalled or underflow
40548         exceptions are enabled.
40549         (_FP_PACK_CANONICAL): Likewise.
40551 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
40553         [BZ #14183]
40554         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
40555         Defined with __UWORD_TYPE if __x86_64__ isn't defined.
40557 2012-05-30  Richard Henderson  <rth@twiddle.net>
40559         * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
40560         with #ifndef NOT_IN_libc.
40562         * scripts/abilist.awk: Accept 8 fields.  Handle Alpha functions
40563         marked to avoid plt entry.
40565 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
40567         [BZ #14112]
40568         * Makeconfig (default-abi): New macro.
40569         (abi-includes): Likewise.
40570         ($(common-objpfx)soversions.mk): Remove WORDSIZE check.  Use
40571         $(abi-$(default-abi)-lib-soname) for soname if defined.
40572         ($(common-objpfx)gnu/lib-names.stmp): Generate from
40573         abi-variants.
40574         * Makefile (installed-stubs): Likewise.
40575         * include/stubs-biarch.h: Removed.
40576         * scripts/lib-names.awk: Only handle one library at a time.
40577         * scripts/soversions.awk: Remove WORDSIZE support.
40578         * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
40579         entries.
40580         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
40581         Removed.
40582         (syscall-list-default-condition): Likewise.
40583         (syscall-list-default-condition): Likewise.
40584         (syscall-list-includes): Likewise.
40585         ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
40586         syscall-list-* with abi-*.  Handle undefined abi-variants.
40587         * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
40588         * sysdeps/unix/sysv/linux/i386/Implies: New file.
40589         * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
40590         * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
40591         * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
40592         * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
40593         Removed.
40594         (syscall-list-32-options): Likewise.
40595         (syscall-list-32-condition): Likewise.
40596         (syscall-list-64-options): Likewise.
40597         (syscall-list-64-condition): Likewise.
40598         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
40599         macro.
40600         * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
40601         Renamed to ...
40602         (abi-*): This.
40603         (abi-64-ld-soname): New macro.
40604         * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
40605         * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
40606         Renamed to ...
40607         (abi-*): This.
40608         * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
40609         * sysdeps/x86_64/x32/shlib-versions: Likewise.
40611 2012-05-30  Joseph Myers  <joseph@codesourcery.com>
40613         * sysdeps/unix/sysv/linux/kernel-features.h
40614         (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
40615         * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
40616         include <kernel-features.h>.
40617         [!__NR_ftruncate64]: Remove conditional code.
40618         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40619         [__NR_ftruncate64]: Make code unconditional.
40620         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40621         * sysdeps/unix/sysv/linux/truncate64.c: Do not
40622         include <kernel-features.h>.
40623         [!__NR_ftruncate64]: Remove conditional code.
40624         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40625         [__NR_ftruncate64]: Make code unconditional.
40626         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40627         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
40628         include <kernel-features.h>.
40629         [!__NR_ftruncate64]: Remove conditional code.
40630         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40631         [__NR_ftruncate64]: Make code unconditional.
40632         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40633         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
40634         include <kernel-features.h>.
40635         [!__NR_ftruncate64]: Remove conditional code.
40636         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40637         [__NR_ftruncate64]: Make code unconditional.
40638         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40640         * configure.in (libc_cv_fpie): Weaken to a compile test using
40641         LIBC_TRY_CC_OPTION.
40642         * configure: Regenerated.
40644 2012-05-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
40646         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
40647         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
40648         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
40649         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
40650         Refreshed.
40651         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
40652         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
40653         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
40654         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
40655         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
40656         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
40657         Refreshed.
40659 2012-05-27  David S. Miller  <davem@davemloft.net>
40661         * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
40662         (___Q_zero): New.
40663         (__Q_simulate_exceptions): Return void.  Change to simulate
40664         exceptions by writing into the %fsr.
40665         * sysdeps/sparc/sparc64/soft-fp/qp_util.c
40666         (__Qp_handle_exceptions): Likewise.
40667         (numbers): Delete.
40668         * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
40669         __Qp_handle_exceptions.
40670         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
40671         __Qp_handle_exceptions.
40672         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
40673         as unused and give dummy FP_RND_NEAREST initializer.
40674         (FP_INHIBIT_RESULTS): Define.
40675         (___Q_simulate_exceptions): Update declaration.
40676         (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
40677         formatting.
40678         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
40679         as unused and give dummy FP_RND_NEAREST initializer.
40680         (__Qp_handle_exceptions): Update declaration.
40681         (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
40682         formatting.
40684 2012-05-27  Thomas Schwinge  <thomas@codesourcery.com>
40686         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
40687         the temporary FPU control word.
40688         * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
40689         * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
40690         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
40691         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
40692         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
40693         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
40694         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
40695         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
40696         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
40697         * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
40698         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
40700 2012-05-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
40702         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
40703         fields.
40705 2012-05-27  Chung-Lin Tang  <cltang@codesourcery.com>
40707         * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
40708         * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
40709         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
40710         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
40711         Likewise.
40712         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
40713         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
40714         Likewise.
40716 2012-05-27  Ulrich Drepper  <drepper@gmail.com>
40718         * po/h.po: Update from translation team.
40720 2012-05-26  Andreas Schwab  <schwab@linux-m68k.org>
40722         * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
40724         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
40725         handling of denormals.
40726         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
40727         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
40728         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
40729         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
40730         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
40731         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
40732         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
40733         Likewise.
40735 2012-05-26  Marek Polacek  <polacek@redhat.com>
40737         [BZ #14152]
40738         * math/libm-test.inc (fma_test): Don't always expect underflow
40739         exception.
40741 2012-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
40743         [BZ #12416]
40744         * elf/tst-execstack.c: Include stackinfo.h.
40745         (do_test): Adjust test case to ensure that pthread_getattr_np
40746         behaviour remains the same after marking stack executable.
40748 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
40750         * sysdeps/unix/sysv/linux/kernel-features.h
40751         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
40752         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
40753         kernel-features.h.
40754         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
40755         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
40756         * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
40757         kernel-features.h.
40758         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
40759         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
40761 2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
40763         * configure.in: Define the default includes to being none.
40764         * configure: Regenerated.
40766 2012-05-25  Roland McGrath  <roland@hack.frob.com>
40768         * sysdeps/x86_64/__longjmp.S: Add a static probe here.
40769         * sysdeps/x86_64/setjmp.S: Likewise.
40770         * sysdeps/i386/bsd-setjmp.S: Likewise.
40771         * sysdeps/i386/bsd-_setjmp.S: Likewise.
40772         * sysdeps/i386/setjmp.S: Likewise.
40773         * sysdeps/i386/__longjmp.S: Likewise.
40774         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
40775         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
40777         * include/stap-probe.h: New file.
40778         * configure.in: Handle --enable-systemtap.
40779         * configure: Regenerated.
40780         * config.h.in (USE_STAP_PROBE): New #undef.
40781         * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
40782         * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
40783         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
40785 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
40787         [BZ #13717]
40788         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
40789         to 2.4.0 where earlier.
40790         * sysdeps/unix/sysv/linux/configure: Regenerated.
40791         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
40792         <kernel-features.h>.
40793         [__ASSUME_32BITUIDS]: Make code unconditional.
40794         [!__ASSUME_32BITUIDS]: Remove conditional code.
40795         * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
40796         <kernel-features.h>.
40797         [__ASSUME_32BITUIDS]: Make code unconditional.
40798         [!__ASSUME_32BITUIDS]: Remove conditional code.
40799         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
40800         [__ASSUME_32BITUIDS]: Make code unconditional.
40801         (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
40802         * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
40803         <kernel-features.h>.
40804         [__ASSUME_32BITUIDS]: Make code unconditional.
40805         [!__ASSUME_32BITUIDS]: Remove conditional code.
40806         * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
40807         <kernel-features.h>.
40808         [__ASSUME_32BITUIDS]: Make code unconditional.
40809         [!__ASSUME_32BITUIDS]: Remove conditional code.
40810         * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
40811         <kernel-features.h>.
40812         [__ASSUME_32BITUIDS]: Make code unconditional.
40813         [!__ASSUME_32BITUIDS]: Remove conditional code.
40814         * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
40815         <kernel-features.h>.
40816         [__ASSUME_32BITUIDS]: Make code unconditional.
40817         [!__ASSUME_32BITUIDS]: Remove conditional code.
40818         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
40819         <kernel-features.h>.
40820         [__ASSUME_32BITUIDS]: Make code unconditional.
40821         [!__ASSUME_32BITUIDS]: Remove conditional code.
40822         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
40823         <kernel-features.h>.
40824         [__ASSUME_32BITUIDS]: Make code unconditional.
40825         [!__ASSUME_32BITUIDS]: Remove conditional code.
40826         * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
40827         <kernel-features.h>.
40828         [__ASSUME_32BITUIDS]: Make code unconditional.
40829         [!__ASSUME_32BITUIDS]: Remove conditional code.
40830         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
40831         <kernel-features.h>.
40832         [__ASSUME_32BITUIDS]: Make code unconditional.
40833         [!__ASSUME_32BITUIDS]: Remove conditional code.
40834         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
40835         <kernel-features.h>.
40836         [__ASSUME_32BITUIDS]: Make code unconditional.
40837         [!__ASSUME_32BITUIDS]: Remove conditional code.
40838         * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
40839         <kernel-features.h>.
40840         [__ASSUME_32BITUIDS]: Make code unconditional.
40841         [!__ASSUME_32BITUIDS]: Remove conditional code.
40842         * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
40843         <kernel-features.h>.
40844         [__NR_setresgid] (__setresgid): Do not declare.
40845         [__ASSUME_32BITUIDS]: Make code unconditional.
40846         [!__ASSUME_32BITUIDS]: Remove conditional code.
40847         * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
40848         <kernel-features.h>.
40849         [__NR_setresuid] (__setresuid): Do not declare.
40850         [__ASSUME_32BITUIDS]: Make code unconditional.
40851         [!__ASSUME_32BITUIDS]: Remove conditional code.
40852         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
40853         <kernel-features.h>.
40854         [__ASSUME_32BITUIDS]: Make code unconditional.
40855         [!__ASSUME_32BITUIDS]: Remove conditional code.
40856         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
40857         <kernel-features.h>.
40858         [__ASSUME_32BITUIDS]: Make code unconditional.
40859         [!__ASSUME_32BITUIDS]: Remove conditional code.
40860         * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
40861         <kernel-features.h>.
40862         [__ASSUME_32BITUIDS]: Make code unconditional.
40863         [!__ASSUME_32BITUIDS]: Remove conditional code.
40864         * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
40865         <kernel-features.h>.
40866         [__ASSUME_32BITUIDS]: Make code unconditional.
40867         [!__ASSUME_32BITUIDS]: Remove conditional code.
40868         * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
40869         <kernel-features.h>.
40870         [__ASSUME_32BITUIDS]: Make code unconditional.
40871         [!__ASSUME_32BITUIDS]: Remove conditional code.
40872         * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
40873         <kernel-features.h>.
40874         [__ASSUME_32BITUIDS]: Make code unconditional.
40875         [!__ASSUME_32BITUIDS]: Remove conditional code.
40876         * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
40877         <kernel-features.h>.
40878         [__ASSUME_32BITUIDS]: Make code unconditional.
40879         [!__ASSUME_32BITUIDS]: Remove conditional code.
40880         * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
40881         <kernel-features.h>.
40882         [__ASSUME_32BITUIDS]: Make code unconditional.
40883         [!__ASSUME_32BITUIDS]: Remove conditional code.
40884         * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
40885         <kernel-features.h>.
40886         [__ASSUME_32BITUIDS]: Make code unconditional.
40887         [!__ASSUME_32BITUIDS]: Remove conditional code.
40888         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
40889         <kernel-features.h>.
40890         [__ASSUME_32BITUIDS]: Make code unconditional.
40891         [!__ASSUME_32BITUIDS]: Remove conditional code.
40892         * sysdeps/unix/sysv/linux/kernel-features.h
40893         (__ASSUME_SETRESUID_SYSCALL): Remove.
40894         (__ASSUME_SETRESGID_SYSCALL): Likewise.
40895         (__ASSUME_32BITUIDS): Likewise.
40896         (__ASSUME_LDT_WORKS): Likewise.
40897         (__ASSUME_O_DIRECTORY): Likewise.
40898         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
40899         architecture but not kernel version.
40900         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
40901         (__ASSUME_MMAP2_SYSCALL): Likewise.
40902         (__ASSUME_STAT64_SYSCALL): Likewise.
40903         (__ASSUME_IPC64): Likewise.
40904         * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
40905         <kernel-features.h>.
40906         [__ASSUME_32BITUIDS]: Make code unconditional.
40907         [!__ASSUME_32BITUIDS]: Remove conditional code.
40908         * sysdeps/unix/sysv/linux/opendir.c: Do not include
40909         <kernel-features.h>.
40910         [__ASSUME_O_DIRECTORY]: Make code unconditional.
40911         * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
40912         132096]: Remove conditional code.
40913         [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
40914         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
40915         <kernel-features.h>.
40916         [__ASSUME_32BITUIDS]: Make code unconditional.
40917         [!__ASSUME_32BITUIDS]: Remove conditional code.
40918         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
40919         <kernel-features.h>.
40920         [__ASSUME_32BITUIDS]: Make code unconditional.
40921         [!__ASSUME_32BITUIDS]: Remove conditional code.
40922         * sysdeps/unix/sysv/linux/setegid.c: Do not include
40923         <kernel-features.h>.
40924         [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
40925         unconditional.
40926         (__setresgid): Do not declare.
40927         [__ASSUME_32BITUIDS]: Make code unconditional.
40928         [!__ASSUME_32BITUIDS]: Remove conditional code.
40929         * sysdeps/unix/sysv/linux/seteuid.c: Do not include
40930         <kernel-features.h>.
40931         [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
40932         unconditional.
40933         (__setresuid): Do not declare.
40934         [__ASSUME_32BITUIDS]: Make code unconditional.
40935         [!__ASSUME_32BITUIDS]: Remove conditional code.
40936         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
40937         <kernel-features.h>.
40938         [__ASSUME_32BITUIDS]: Make code unconditional.
40939         [!__ASSUME_32BITUIDS]: Remove conditional code.
40940         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
40941         <kernel-features.h>.
40942         [__ASSUME_32BITUIDS]: Make code unconditional.
40943         [!__ASSUME_32BITUIDS]: Remove conditional code.
40945 2012-05-25  Richard Henderson  <rth@twiddle.net>
40947         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
40948         dl_hwcap to ifunc resolver.
40949         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
40950         elf_ifunc_invoke.
40951         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
40952         dl_hwcap to ifunc resolver.
40953         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
40955 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
40957         [BZ #14153]
40958         * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
40959         for |x| <= 2**-26, not 2**-57.
40960         * math/libm-test.inc (acos_test): Do not allow spurious underflow
40961         exception.
40963 2012-05-24  Jeff Law  <law@redhat.com>
40965         * stdio-common/Makefile (tests): Add bug25.
40966         * stdio-common/bug25.c: New test.
40968 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
40970         [BZ #13576]
40971         * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
40972         multiple of MALLOC_ALIGNMENT in size.
40973         (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
40975 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
40977         * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
40978         Require >= 256.
40979         (FILENAME_MAX): Use macro-int-constant.
40980         (FOPEN_MAX): Use macro-int-constant.  Require >= 8.
40981         (_IOFBF): Use macro-int-constant.
40982         (_IOLBF): Likewise.
40983         (_IONBF): Likewise.
40984         (SEEK_CUR): Likewise.
40985         (SEEK_END): Likewise.
40986         (SEEK_SET): Likewise.
40987         (TMP_MAX): Likewise.
40988         (EOF): Use macro-int-constant.  Require < 0.
40989         (NULL): Use macro-constant.  Require == 0.
40990         (stdin): Require type to be FILE *.
40991         (stdout): Likewise.
40992         (stderr): Likewise.
40993         * conform/data/stdlib.h-data (EXIT_FAILURE): Use
40994         macro-int-constant.
40995         (EXIT_SUCCESS): Likewise.
40996         (NULL): Use macro-constant.  Require == 0.
40997         (RAND_MAX): Use macro-int-constant.
40998         [ISO99 || ISO11] (lldiv_t): Require also for these standards.
40999         [C99-based standards] (strtof): Require function.
41000         [C99-based standards] (strtold): Likewise.
41001         [C99-based standards] (strtoll): Likewise.
41002         [C99-based standards] (strtoull): Likewise.
41003         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
41004         [ISO || ISO99 || ISO11] (limits.h): Likewise.
41005         [ISO || ISO99 || ISO11] (math.h): Likewise.
41006         [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
41007         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
41008         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41010 2012-05-24  Andreas Schwab  <schwab@linux-m68k.org>
41012         [BZ #14132]
41013         * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
41014         * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
41015         * intl/dgettext.c (DCGETTEXT): Likewise.
41016         * intl/gettext.c (DCGETTEXT): Likewise.
41017         * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
41018         * posix/regex_internal.h (gettext): Likewise.
41019         * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
41020         Remove declaration.
41021         * include/argz.h (__argz_count_internal)
41022         (__argz_stringify_internal): Remove declaration.
41023         (__argz_count, __argz_stringify): Declare hidden proto.
41024         * intl/dcgettext.c: Remove use of INTDEF.
41025         * string/argz-count.c: Replace INTDEF with libc_hidden_def.
41026         * string/argz-stringify.c: Likewise.
41027         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
41028         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
41029         Declare hidden proto.
41030         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
41031         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
41032         Declare hidden proto.
41033         * include/stdio.h (__asprintf_internal): Don't declare.
41034         (__asprintf): Don't define as macro.  Declare hidden proto.
41035         * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
41036         (__fsetlocking): Declare hidden proto.
41037         * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
41038         (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
41039         hidden proto.
41040         (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
41041         (_IO_setlinebuf): Remove use of INTUSE.
41042         (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
41043         (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
41044         (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
41045         Remove declaration.
41046         * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
41047         (_IO_do_flush): Remove use of INTUSE.
41048         (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
41049         (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
41050         (_IO_adjust_column, _IO_least_wmarker)
41051         (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
41052         (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
41053         (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
41054         (_IO_default_doallocate, _IO_wdefault_doallocate)
41055         (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
41056         (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
41057         (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
41058         (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
41059         (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
41060         (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
41061         (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
41062         (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
41063         (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
41064         (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
41065         (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
41066         (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
41067         (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
41068         proto.
41069         (_IO_flush_all_internal, _IO_adjust_column_internal)
41070         (_IO_default_uflow_internal, _IO_default_finish_internal)
41071         (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
41072         (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
41073         (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
41074         (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
41075         (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
41076         (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
41077         (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
41078         (_IO_file_xsgetn_internal, _IO_file_stat_internal)
41079         (_IO_file_close_internal, _IO_file_close_it_internal)
41080         (_IO_file_underflow_internal, _IO_file_overflow_internal)
41081         (_IO_file_init_internal, _IO_file_attach_internal)
41082         (_IO_file_fopen_internal, _IO_file_read_internal)
41083         (_IO_file_sync_internal, _IO_file_seek_internal)
41084         (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
41085         (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
41086         (_IO_str_underflow_internal, _IO_str_overflow_internal)
41087         (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
41088         (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
41089         (_IO_list_all_internal, _IO_link_in_internal)
41090         (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
41091         (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
41092         (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
41093         (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
41094         (_IO_do_write_internal, _IO_padn_internal)
41095         (_IO_getline_info_internal, _IO_getline_internal)
41096         (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
41097         (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
41098         (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
41099         (_IO_vfscanf_internal, _IO_vfprintf_internal)
41100         (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
41101         (_IO_init_internal, _IO_un_link_internal): Don't declare.
41102         * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
41103         with libc_hidden_ver, remove use of INTUSE.
41104         * libio/genops.c: Likewise.
41105         * libio/freopen.c: Likewise.
41106         * libio/freopen64.c: Likewise.
41107         * libio/iofclose.c: Likewise.
41108         * libio/iofdopen.c: Likewise.
41109         * libio/iofflush.c: Likewise.
41110         * libio/iofflush_u.c: Likewise.
41111         * libio/iofgets.c: Likewise.
41112         * libio/iofgets_u.c: Likewise.
41113         * libio/iofopen.c: Likewise.
41114         * libio/iofopncook.c: Likewise.
41115         * libio/iofread.c: Likewise.
41116         * libio/iofread_u.c: Likewise.
41117         * libio/ioftell.c: Likewise.
41118         * libio/iofwrite.c: Likewise.
41119         * libio/iogetline.c: Likewise.
41120         * libio/iogets.c: Likewise.
41121         * libio/iogetwline.c: Likewise.
41122         * libio/iopadn.c: Likewise.
41123         * libio/iopopen.c: Likewise.
41124         * libio/ioseekoff.c: Likewise.
41125         * libio/ioseekpos.c: Likewise.
41126         * libio/iosetbuffer.c: Likewise.
41127         * libio/iosetvbuf.c: Likewise.
41128         * libio/ioungetc.c: Likewise.
41129         * libio/ioungetwc.c: Likewise.
41130         * libio/iovdprintf.c: Likewise.
41131         * libio/iovsprintf.c: Likewise.
41132         * libio/iovsscanf.c: Likewise.
41133         * libio/memstream.c: Likewise.
41134         * libio/obprintf.c: Likewise.
41135         * libio/oldfileops.c: Likewise.
41136         * libio/oldiofclose.c: Likewise.
41137         * libio/oldiofdopen.c: Likewise.
41138         * libio/oldiofopen.c: Likewise.
41139         * libio/oldiopopen.c: Likewise.
41140         * libio/oldstdfiles.c: Likewise.
41141         * libio/putc.c: Likewise.
41142         * libio/setbuf.c: Likewise.
41143         * libio/setlinebuf.c: Likewise.
41144         * libio/stdfiles.c: Likewise.
41145         * libio/strops.c: Likewise.
41146         * libio/vasprintf.c: Likewise.
41147         * libio/vscanf.c: Likewise.
41148         * libio/vsnprintf.c: Likewise.
41149         * libio/vswprintf.c: Likewise.
41150         * libio/wfiledoalloc.c: Likewise.
41151         * libio/wfileops.c: Likewise.
41152         * libio/wgenops.c: Likewise.
41153         * libio/wmemstream.c: Likewise.
41154         * libio/wstrops.c: Likewise.
41155         * libio/__fpurge.c: Likewise.
41156         * libio/__fsetlocking.c: Likewise.
41157         * assert/assert.c: Likewise.
41158         * debug/fgets_chk.c: Likewise.
41159         * debug/fgets_u_chk.c: Likewise.
41160         * debug/fread_chk.c: Likewise.
41161         * debug/fread_u_chk.c: Likewise.
41162         * debug/gets_chk.c: Likewise.
41163         * debug/obprintf_chk.c: Likewise.
41164         * debug/vasprintf_chk.c: Likewise.
41165         * debug/vdprintf_chk.c: Likewise.
41166         * debug/vsnprintf_chk.c: Likewise.
41167         * debug/vsprintf_chk.c: Likewise.
41168         * malloc/mtrace.c: Likewise.
41169         * misc/error.c: Likewise.
41170         * misc/syslog.c: Likewise.
41171         * stdio-common/asprintf.c: Likewise.
41172         * stdio-common/fxprintf.c: Likewise.
41173         * stdio-common/getw.c: Likewise.
41174         * stdio-common/isoc99_fscanf.c: Likewise.
41175         * stdio-common/isoc99_scanf.c: Likewise.
41176         * stdio-common/isoc99_vfscanf.c: Likewise.
41177         * stdio-common/isoc99_vscanf.c: Likewise.
41178         * stdio-common/isoc99_vsscanf.c: Likewise.
41179         * stdio-common/printf-prs.c: Likewise.
41180         * stdio-common/printf_fp.c: Likewise.
41181         * stdio-common/printf_fphex.c: Likewise.
41182         * stdio-common/printf_size.c: Likewise.
41183         * stdio-common/putw.c: Likewise.
41184         * stdio-common/scanf.c: Likewise.
41185         * stdio-common/sprintf.c: Likewise.
41186         * stdio-common/tmpfile.c: Likewise.
41187         * stdio-common/vfprintf.c: Likewise.
41188         * stdio-common/vfscanf.c: Likewise.
41189         * stdlib/strfmon_l.c: Likewise.
41190         * sunrpc/openchild.c: Likewise.
41191         * sunrpc/xdr_stdio.c: Likewise.
41192         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
41193         * sysdeps/mach/hurd/tmpfile.c: Likewise.
41195 2012-05-24  Roland McGrath  <roland@hack.frob.com>
41197         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
41199         * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
41200         in the third column, to generate for the shared library an IFUNC
41201         that uses _dl_vdso_vsym.
41202         * Makerules (COMPILE.c, compile-stdin.c): New variables.
41203         * Makeconfig (object-suffixes-noshared): New variable.
41205         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
41206         (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
41207         (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
41208         (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
41210         [BZ #14132]
41211         * include/sys/time.h (__gettimeofday): Remove macro.
41212         (__gettimeofday, gettimeofday): Add libc_hidden_proto.
41213         * time/gettimeofday.c (__gettimeofday): Remove #undef.
41214         Remove INTDEF.
41215         (__gettimeofday): Add libc_hidden_def.
41216         (gettimeofday): Add libc_hidden_weak.
41217         * sysdeps/mach/gettimeofday.c: Likewise.
41218         * sysdeps/posix/gettimeofday.c: Likewise.
41219         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
41220         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
41221         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
41222         (__gettimeofday_internal): Remove strong_alias.
41223         (__gettimeofday): Add libc_hidden_def.
41224         (gettimeofday): Add libc_hidden_weak.
41225         * sysdeps/unix/syscalls.list (gettimeofday):
41226         Remove __gettimeofday_internal alias.
41228 2012-05-24  Daniel Jacobowitz  <drow@false.org>
41229             H.J. Lu  <hongjiu.lu@intel.com>
41231         [BZ #12495]
41232         * malloc/malloc.c (SMALLBIN_CORRECTION): New.
41233         (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
41234         (largebin_index_32_big): New.
41235         (largebin_index): Use it for 16-byte alignment.
41236         (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ.  Don't update
41237         correction with front_misalign.
41239 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
41241         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
41242         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
41243         Likewise.
41244         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
41245         Likewise.
41246         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
41247         Likewise.
41248         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
41249         Likewise.
41250         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
41251         Likewise.
41252         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
41253         Likewise.
41254         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
41255         Likewise.
41256         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
41257         Likewise.
41258         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
41259         Likewise.
41260         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
41261         Likewise.
41262         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
41263         Likewise.
41264         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
41265         Likewise.
41267         * scripts/data/c++-types-x32-linux-gnu.data: New file.
41268         * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
41270 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
41272         [BZ #10846]
41273         [BZ #14036]
41274         * math/libm-test.inc (exp_test): Add test from bug 14036.
41275         (pow_test): Add test from bug 10846.
41277         * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
41278         and other flags.
41279         (special_function): Do not include flags in test name.
41280         (parse_args): Likewise.
41281         * sysdeps/i386/fpu/libm-test-ulps: Update.
41282         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
41283         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
41284         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
41285         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41287         * math/gen-libm-test.pl (%beautify): Add entries for underflow
41288         exceptions.
41289         * math/libm-test.inc ("Philosophy"): Update comment about
41290         exception testing.
41291         (UNDERFLOW_EXCEPTION): New macro.
41292         (UNDERFLOW_EXCEPTION_OK): Likewise.
41293         (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
41294         (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
41295         (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
41296         (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
41297         (INVALID_EXCEPTION_OK): Update value.
41298         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
41299         (OVERFLOW_EXCEPTION_OK): Likewise.
41300         (IGNORE_ZERO_INF_SIGN): Likewise.
41301         (test_exceptions): Handle underflow exceptions.
41302         (acos_test): Update for underflow exception expectations.
41303         (cexp_test): Likewise.
41304         (clog_test): Likewise.
41305         (clog10_test): Likewise.
41306         (csqrt_test): Likewise.
41307         (ctan_test): Likewise.
41308         (ctanh_test): Likewise.
41309         (exp_test): Likewise.
41310         (exp10_test): Likewise.
41311         (exp2_test): Likewise.
41312         (expm1_test): Likewise.
41313         (fma_test): Likewise.
41314         (j0_test): Likewise.
41315         (jn_test): Likewise.
41316         (nexttoward_test): Likewise.
41317         (pow_test): Likewise.
41318         (scalbn_test): Likewise.
41319         (scalbln_test): Likewise.
41320         (tan_test): Likewise.
41321         (y1_test): Likewise.
41322         * sysdeps/i386/fpu/libm-test-ulps: Update.
41323         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41325 2012-05-23  David S. Miller  <davem@davemloft.net>
41327         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
41328         (__libc_sigaction): Remove unused local variables.
41330 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
41332         * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
41334 2012-05-23  Paul Eggert  <eggert@cs.ucla.edu>
41336         mktime: avoid signed integer overflow
41337         * time/mktime.c (__mktime_internal): Do not mishandle the case
41338         where diff == INT_MIN.
41340         mktime: simplify computation of average
41341         * time/mktime.c (ranged_convert): Use new time_t_avg function
41342         instead of rolling our own (probably-slower) code.
41344         mktime: do not assume signed right shift propagates sign bit
41345         * time/mktime.c (isdst_differ): New static function.
41346         (__mktime_internal): No need to normalize tm_isdst now.
41347         (__mktime_internal, not_equal_tm): Use isdst_differ to compare
41348         tm_isdst values.
41350         mktime: merge another wrapv change from gnulib
41351         * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
41352         from some compilers.
41354         mktime: remove incorrect attempt at unusual arithmetics
41355         * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
41356         The code didn't really work on such machines anyway.
41357         (TYPE_MINIMUM): Assume two's complement.
41358         (twos_complement_arithmetic): Verify that long_int and time_t
41359         are two's complement (or unsigned, in the latter case).
41361         mktime: check signed shifts on long_int and time_t, too
41362         * time/mktime.c (SHR): Check that shifts work as desired
41363         on the types long_int and time_t too, as SHR is used on
41364         such types.
41366         mktime: do not assume 'long' is wide enough
41367         * time/mktime.c (verify): Move decl up.
41368         (long_int): New type.
41369         (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
41370         to remove assumption in the code that 'long' is wide enough to
41371         store year values.  This assumption is not true on x32 and on
41372         some non-glibc platforms.
41374         mktime: merge wrapv change from gnulib
41375         * time/mktime.c (WRAPV): New macro.
41376         (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
41377         (guess_time_tm, __mktime_internal): Do not assume that signed
41378         integer overflow wraps around; modern compilers generate code
41379         where this assumption is no longer valid.
41381 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
41383         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
41384         Replace "jmp L(pseudo_end)" with "ret".
41385         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
41386         Likewise.
41388 2012-05-23  Andreas Jaeger  <aj@suse.de>
41390         * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
41391         * sysdeps/unix/sysv/linux/poll.c: Remove file.
41393 2012-05-23  Andreas Jaeger  <aj@suse.de>
41394             Maximilian Attems  <max@stro.at>
41396         * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
41397         New macros.
41399 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
41401         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
41402         code so that pseudo_end is just ret and the stack pointer is
41403         correct also for static library in error case.
41405 2012-05-23  Joseph Myers  <joseph@codesourcery.com>
41407         * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
41408         move to syscalls.list.
41409         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
41410         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
41411         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
41412         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
41414         * manual/install.texi (Running make install): Do not mention Linux
41415         kernel version for which pt_chown is not needed.
41416         (Linux): Do not mention problems with nscd with 2.0 kernels.
41417         * INSTALL: Regenerated.
41419 2012-05-23  Andreas Jaeger  <aj@suse.de>
41421         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
41422         (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
41423         macro.
41424         * sysdeps/unix/sysv/linux/s390/bits/mman.h
41425         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41426         * sysdeps/unix/sysv/linux/sh/bits/mman.h
41427         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41428         * sysdeps/unix/sysv/linux/i386/bits/mman.h
41429         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41430         * sysdeps/unix/sysv/linux/sparc/bits/mman.h
41431         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41432         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
41433         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41434         * sysdeps/unix/sysv/linux/bits/in.h
41435         (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
41437 2012-05-22  Roland McGrath  <roland@hack.frob.com>
41439         * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
41440         (PREPARE_VERSION): Just use assert instead, it will be elided
41441         under [NDEBUG] anyway.
41443 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
41445         * sysdeps/unix/sysv/linux/Makefile: Include
41446         $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
41447         (sysdep_routines): Remove sysctl.
41448         * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
41449         * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
41450         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
41451         * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
41452         * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
41454 2012-05-22  Andreas Jaeger  <aj@suse.de>
41456         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
41457         that pseudo_end is just ret and the stack pointer is correct also
41458         for static library in error case.
41460 2012-05-22  Paul Pluzhnikov  <ppluzhnikov@google.com>
41462         [BZ #14122]
41463         * nss/nsswitch.c (defconfig_entries): New variable.
41464         (__nss_database_lookup): Don't leak defconfig entries.
41465         (nss_parse_service_list): Don't leak on error paths.
41466         (free_database_entries): New function.
41467         (free_defconfig): New function.
41468         (free_mem): Move common code to free_database_entries.
41470 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
41472         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
41473         Add arch_prctl.
41474         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
41476         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
41477         (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
41478         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
41479         New macro.
41480         (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
41481         (INTERNAL_SYSCALL_TYPES): Likewise.
41482         (LOAD_ARGS_TYPES_[1-6]): Likewise.
41483         (LOAD_REGS_TYPES_[1-6]): Likewise.
41484         (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
41485         (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
41487 2012-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41489         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
41490         copysignl for GLIBC_2_0.
41491         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
41492         finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
41493         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
41494         logbl for GLIBC_2_0.
41495         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
41496         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
41498 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
41500         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
41501         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
41503         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
41504         Use "neg %eax".
41506         * time/mktime.c: Update copyright years.
41508 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
41510         mktime: merge comment-quoting-style change from gnulib
41511         * time/mktime.c: Quote 'like this' in comments.
41512         The GNU coding standards suggest that we no longer quote `like this',
41513         as "`" and "'" are typically rendered asymmetrically nowadays.
41514         The typical gnulib style is to quote 'like this' when quoting
41515         code, and "like this" when quoting English.
41517         * time/mktime.c (compile-command): Add "-I.".
41519         mktime: merge mktime-internal.h change from gnulib
41520         * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
41522         mktime: merge time_r change from gnulib
41523         * time/mktime.c [!_LIBC]: Do not include "time_r.h".
41525         mktime: merge DEBUG change from gnulib
41526         * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
41527         case system <time.h> has a #define.
41529         mktime: merge <sys/types.h> change from gnulib
41530         * time/mktime.c: Do not include <sys/types.h>; no longer needed,
41531         since <time.t> is now guaranteed to define time_t.
41533         mktime: merge HAVE_CONFIG_H change from gnulib
41534         * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
41536 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
41538         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
41539         Use "neg %eax".
41541         * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
41542         __rlim_t cast.
41543         (struct rusage): Use anonymous union to pad each field to
41544         __syscall_slong_t.
41546 2012-05-21  David S. Miller  <davem@davemloft.net>
41548         * Makefules (o-iterator): Remove .s cases.
41549         (compile-command.s): Delete.
41550         (COMPILE.s): Delete.
41551         * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
41553 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
41555         * configure.in (libc_cv_predef_stack_protector): Only consider
41556         "foobar" and "__stack_chk_fail" lines in libc_undefs.
41557         * configure: Regenerated.
41559 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
41561         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
41562         New macro.  Use R*LP on int and pointer.
41563         (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
41564         * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
41565         * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
41566         * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
41568         * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
41569         [__WORDSIZE_TIME64_COMPAT32] instead of
41570         [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
41571         (struct utmp): Likewise.
41572         * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
41573         * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
41574         Renamed to ...
41575         (__WORDSIZE_TIME64_COMPAT32): This.
41576         * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
41577         * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
41578         * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
41579         * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
41580         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
41581         (__WORDSIZE_TIME64_COMPAT32): New macro.
41583 2012-05-21  Andreas Jaeger  <aj@suse.de>
41585         * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
41586         only if [SHARED]. Add prototype for __wcschr_ia32.
41588 2012-05-21  Roland McGrath  <roland@hack.frob.com>
41590         * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
41591         of %rbp unmolested in the jmp_buf while mangling the low bits.
41592         * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
41593         unmolested high bits of %rbp while demangling the low bits.
41594         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
41596 2012-05-21  Andreas Jaeger  <aj@suse.de>
41598         * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
41599         * sunrpc/svc_simple.c: Use it for registerrpc.
41600         * sunrpc/xcrypt.c: Use it for passwd2des.
41602         * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
41604 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
41606         * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
41607         Don't define if [__SYSCALL_WORDSIZE != 32].
41608         * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
41609         New macro.
41611 2012-05-21  Bruno Haible  <bruno@clisp.org>
41612             Andreas Jaeger  <aj@suse.de>
41614         [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
41615         * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
41616         inptr and inend for must_buffer_ch.
41617         * wcsmbs/tst-mbsnrtowcs.c: Remove file.
41618         * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
41619         * stdio-common/Makefile (tests): Remove bug15.
41620         (bug15-ENV): Remove macro.
41621         * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
41622         anymore.
41624 2012-05-19  Andreas Jaeger  <aj@suse.de>
41625             Roland McGrath  <roland@hack.frob.com>
41627         * manual/contrib.texi: Completely rewritten. It contains now an
41628         alphabetical list of contributors and their contributions.
41630 2012-05-21  Richard Henderson  <rth@twiddle.net>
41632         * misc/getauxval.c (__getauxval): Use unsigned long int.
41633         * misc/sys/auxv.h: Include <sys/cdefs.h>.
41634         (getauxval): Use unsigned long int.
41636 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
41638         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
41640 2012-05-21  Roland McGrath  <roland@hack.frob.com>
41642         * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
41643         (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
41644         __alignof__ (long double).
41646 2012-05-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41648         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41650 2012-05-20  Richard Henderson  <rth@twiddle.net>
41652         * misc/getauxval.c: New file.
41653         * misc/sys/auxv.h: New file.
41654         * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
41655         (routines): Add getauxval.
41656         * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
41657         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
41658         * elf/dl-sysdep.c (_dl_auxv): Remove.
41659         (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
41660         * elf/dl-support.c (_dl_auxv): New variable.
41661         (_dl_aux_init): Initialize it.
41662         * manual/startup.texi (Auxiliary Vector): New node.
41663         * sysdeps/generic/bits/hwcap.h: New file.
41664         * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
41665         * sysdeps/powerpc/sysdep.h: ... here.  Include it.
41666         * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
41667         * sysdeps/sparc/sysdep.h: ... here.  Include it.
41668         * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
41669         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
41670         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
41671         Update.
41672         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
41673         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
41674         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
41675         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
41676         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
41677         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
41678         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
41679         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
41681 2012-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41683         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41685 2012-05-19  David S. Miller  <davem@davemloft.net>
41687         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41689 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
41691         [BZ #14123]
41692         * math/s_ccosh.c: Include <float.h>
41693         (__ccosh): Avoid internal overflow calculating sinh and cosh
41694         values before multiplying by sin and cos values.
41695         * math/s_ccoshf.c: Likewise.
41696         * math/s_ccoshl.c: Likewise.
41697         * math/s_csin.c: Likewise.
41698         * math/s_csinf.c: Likewise.
41699         * math/s_csinl.c: Likewise.
41700         * math/s_csinh.c: Likewise.
41701         * math/s_csinhf.c: Likewise.
41702         * math/s_csinhl.c: Likewise.
41703         * math/libm-test.inc (ccos_test): Add more tests.
41704         (ccosh_test): Likewise.
41705         (csin_test): Likewise.
41706         (csinh_test): Likewise.
41707         * sysdeps/i386/fpu/libm-test-ulps: Update.
41708         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41710 2012-05-19  H.J. Lu  <hongjiu.lu@intel.com>
41712         * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
41713         * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
41715         * sysdeps/x86_64/x32/_itoa.h: Add comment.
41717 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
41719         * sysdeps/powerpc/soft-fp/Makefile: Remove file.
41720         * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
41721         * sysdeps/powerpc/soft-fp/Versions: Likewise.
41722         * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
41723         * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
41724         * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
41725         * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
41726         * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
41727         * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
41728         * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
41729         * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
41730         * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
41731         * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
41732         * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
41733         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
41734         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
41735         * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
41736         * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
41737         * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
41738         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
41739         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
41740         * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
41741         * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
41742         * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
41743         * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
41744         * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
41745         * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
41746         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
41747         * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
41748         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
41749         * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
41751 2012-05-18  Andreas Jaeger  <aj@suse.de>
41753         * csu/.gitignore: Delete.
41755 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
41757         * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
41758         (timex): Use __syscall_slong_t.
41760 2012-05-18  Andreas Jaeger  <aj@suse.de>
41761             Carlos O'Donell  <carlos_odonell@mentor.com>
41763         * manual/install.texi (Configuring and compiling): Update
41764         description about files modified in the source directory.
41765         * INSTALL: Regenerated.
41767 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
41769         * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
41770         value.  Use "or" to set return value to -1.
41771         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
41772         negate return value.
41774 2012-05-18  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
41776         * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
41777         (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
41778         failure if the compiler has Graphite support disabled.
41779         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
41780         Likewise.
41781         * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
41782         (CFLAGS-memmove.c): Likewise.
41783         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
41784         Likewise.
41786 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
41788         * sysdeps/x86_64/x32/_itoa.h: New file.
41790         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
41791         getdents system call only if kernel and user dirents have the
41792         same d_ino and d_off.
41794         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
41795         LLONG_MAX != LONG_MAX.
41796         (_itoa_word): Use _ITOA_WORD_TYPE on value.
41797         (_fitoa_word): Likewise.
41799         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
41800         years.
41801         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
41802         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
41803         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
41805         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
41806         include <bits/wordsize.h>.  Check __x86_64__ instead of
41807         __WORDSIZE.
41808         (sigcontext): Use "__uint64_t" instead of "unsigned long int"
41809         if __x86_64__ is defined.  Use anonymous union on fpstate.
41811         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
41812         anonymous union.
41814 2012-05-18  Andreas Schwab  <schwab@linux-m68k.org>
41816         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
41817         INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
41818         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
41819         Refer to _rtld_local_ro instead of _rtld_global_ro.
41820         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
41821         Likewise.
41822         * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
41823         Likewise.
41824         * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
41825         Likewise.
41826         * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
41827         * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
41828         of _rtld_global, and rtld_progname instead of _dl_argv[0].
41830         * sysdeps/powerpc/powerpc32/dl-machine.c
41831         (__elf_machine_runtime_setup) [PROF]: Don't reference
41832         _dl_prof_resolve.
41834 2012-05-18  Andreas Jaeger  <aj@suse.de>
41836         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
41837         function only available for GCCs before 3.4 since GCC 3.4
41838         introduced a builtin.
41839         (lrint): Likewise.
41840         (llrintf): Likewise.
41841         (llrint): Likewise.
41842         (fmaxf): Likewise.
41843         (fmax): Likewise.
41844         (fminf): Likewise.
41845         (fmin): Likewise.
41846         (rint): Likewise.
41847         (rintf): Likewise.
41848         (nearbyint): Likewise.
41849         (nearbyintf): Likewise.
41850         (ceil): Likewise.
41851         (ceilf): Likewise.
41852         (floor): Likewise.
41853         (floorf): Likewise.
41855 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
41857         * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
41858         on both fields and cast pointer to __syscall_ulong_t.
41860         * bits/types.h (__fsword_t): New type.
41861         * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
41862         sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
41863         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
41864         (__FSWORD_T_TYPE): Likewise.
41865         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
41866         (__FSWORD_T_TYPE): Likewise.
41867         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
41868         (__FSWORD_T_TYPE): Likewise.
41869         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
41870         (__FSWORD_T_TYPE): Likewise.
41871         * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
41872         __SWORD_TYPE with __fsword_t.
41873         (statfs64): Likewise.
41875 2012-05-17  David S. Miller  <davem@davemloft.net>
41877         * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
41879 2012-05-17  Andreas Jaeger  <aj@suse.de>
41881         * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
41882         warning.
41884 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
41886         * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
41888 2012-05-17  Andreas Jaeger  <aj@suse.de>
41890         * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
41891         when it is used.
41893 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
41895         * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
41897 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
41899         * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
41900         * sysdeps/x86_64/tst-mallocalign1.c: New file.
41902 2012-05-17  Andreas Jaeger  <aj@suse.de>
41903             Carlos O'Donell  <carlos_odonell@mentor.com>
41905         [BZ #14059]
41906         * sysdeps/x86_64/multiarch/init-arch.h
41907         (bit_YMM_Usable): Rename to...
41908         (bit_AVX_Usable): ... this.
41909         (bit_FMA4_Usable): New macro.
41910         (bit_XMM_state): New macro.
41911         (bit_YMM_state): New macro.
41912         [__ASSEMBLER__] (index_YMM_Usable): Rename to...
41913         [__ASSEMBLER__] (index_AVX_Usable): ... this.
41914         [__ASSEMBLER__] (index_FMA4_Usable): New macro.
41915         (CPUID_OSXSAVE): New macro.
41916         (CPUID_AVX): New macro.
41917         (CPUID_FMA4): New macro.
41918         (index_YMM_Usable): Rename to...
41919         (index_AVX_Usable): ... this.
41920         (HAS_AVX): Use HAS_ARCH_FEATURE.
41921         (HAS_FMA4): Likewise.
41922         (HAS_YMM_USABLE): Remove.
41923         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
41924         Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
41925         are present.
41926         * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
41927         * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
41928         * sysdeps/x86_64/multiarch/Makefile: Likewise.
41929         * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
41930         * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
41932 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
41934         * math/libm-test.c: Support platforms without multiple rounding modes.
41935         * math/bug-nextafter.c: Support platforms without FP exceptions.
41936         * math/bug-nexttoward.c: Likewise.
41937         * math/test-fenv.c: Likewise.
41938         * math/test-misc.c: Likewise.
41939         * stdlib/bug-getcontext.c: Likewise.
41941 2012-05-17  Andreas Jaeger  <aj@suse.de>
41943         * manual/examples/search.c (critter_cmp): Change signature to
41944         avoid warnings.
41945         * manual/string.texi (Collation Functions): Likewise.
41947 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
41949         * bits/types.h: Fold copyright years.
41950         * bits/typesizes.h: Likewise.
41951         * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
41952         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
41953         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
41954         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
41955         * time/time.h: Likewise.
41957 2012-05-16  Paul Pluzhnikov  <ppluzhnikov@google.com>
41959         [BZ #208]
41960         * malloc.c (int_mallinfo): Add parameter to accumulate statistics
41961         in instead of returning them.  Return void.
41962         (__libc_mallinfo): Accumulate over all arenas.
41963         (__malloc_stats): Adjust for change in int_mallinfo interface.
41965 2012-05-16  Roland McGrath  <roland@hack.frob.com>
41967         [BZ #10375]
41968         * configure.in (NM): Add AC_CHECK_TOOL for it.
41969         (libc_extra_cflags): New substituted variable.
41970         Check for -fstack-protector being used implicitly.
41971         * configure: Regenerated.
41972         * config.make.in (config-extra-cflags): New variable,
41973         gets @libc_extra_cflags@.
41974         * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
41976         [BZ #10375]
41977         * configure.in: Check for _FORTIFY_SOURCE being predefined.
41978         (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
41979         * configure: Regenerated.
41980         * config.make.in (CPPUNDEFS): New substituted variable.
41981         * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
41982         * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
41983         * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
41985 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
41987         * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
41988         (mq_attr): Use __syscall_slong_t.
41990 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
41992         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
41993         Check __x86_64__ instead of __WORDSIZE.
41994         (_STAT_VER_LINUX): Likewise.
41995         (stat): Check __x86_64__ instead of __WORDSIZE.  Use
41996         __syscall_ulong_t and __syscall_slong_t.
41997         (stat64): Likewise.
41999 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
42001         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
42003 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
42005         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
42007 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
42009         * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
42010         __syscall_ulong_t.
42012         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
42013         include <bits/wordsize.h>.  Check __x86_64__ instead of
42014         __WORDSIZE.
42015         (greg_t): Use "__extension__ long long int" if __x86_64__ is
42016         defined.
42017         (mcontext_t): Replace "unsigned long" with "unsigned long long".
42019         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
42020         include <bits/wordsize.h>.  Check __x86_64__ instead of
42021         __WORDSIZE.
42022         (user_regs_struct): Use "__extension__ unsigned long long"
42023         instead of "unsigned long" if __x86_64__ is defined.
42024         (user): Likewise.  Pad after pointer field if __ILP32__ is
42025         defined.
42027 2012-05-16  Joseph Myers  <joseph@codesourcery.com>
42029         * configure.in (makeinfo): Require version 4.5 or later.  Allow
42030         versions 5 to 9.
42031         * configure: Regenerated.
42032         * manual/install.texi (texinfo): Increase version requirement to
42033         4.5 or later.
42034         * INSTALL: Regenerated.
42036         * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
42038 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
42040         * sysdeps/x86_64/x32/gmp-mparam.h: New file.
42042         * sysdeps/x86_64/x32/ffs.c: New file.
42044         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
42045         __syscall_ulong_t.
42046         (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
42047         defined.  Use __syscall_ulong_t.
42048         (shminfo): Use __syscall_ulong_t.
42049         (shm_info): Likewise.
42051         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
42052         __syscall_ulong_t.
42054         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
42055         <bits/wordsize.h>.
42056         (msgqnum_t): Use __syscall_ulong_t.
42057         (msglen_t): Likewise.
42058         (msqid_ds): Check __x86_64__ instead of __WORDSIZE.  Use
42059         __syscall_ulong_t.
42061         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
42062         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
42064         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
42066         * sysdeps/x86_64/x32/divdi3.c: New dummy file.
42067         * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
42069         * sysvipc/sys/msg.h (msgbuf): Replace long int with
42070         __syscall_slong_t.
42072         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
42073         include <bits/wordsize.h>.  Check __x86_64__ instead of
42074         __WORDSIZE.
42076         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
42077         "unsigned long long int" if __x86_64__ is defined.
42078         (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
42080         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
42081         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
42082         (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
42084         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
42085         <stdint.h>.
42086         (GET_PC): Cast to uintptr_t first.
42087         (GET_FRAME): Likewise.
42088         (GET_STACK): Likewise.
42090         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
42091         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
42092         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
42093         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
42094         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
42095         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
42096         * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
42097         * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
42098         * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
42099         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
42100         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
42101         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
42102         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
42103         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
42104         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
42105         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
42106         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
42107         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
42108         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
42109         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
42110         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
42111         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
42112         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
42113         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
42114         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
42115         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
42116         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
42117         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
42118         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
42120 2012-05-16  Andreas Schwab  <schwab@linux-m68k.org>
42122         * Makerules (+depfiles): Also collect depfiles from .oS in
42123         $(extra-objs).
42124         * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
42125         .oS, $(libnldbl-routines)).
42127         * Makerules (native-compile-mkdep-flags): Define.
42128         * sunrpc/Makefile (extra-objs): Add $(addprefix
42129         cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
42130         ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
42131         of $(compile-mkdep-flags).  Depend on $(before-compile) instead of
42132         calling $(make-target-directory).
42134 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42136         * bits/types.h (__snseconds_t): Removed.
42137         * time/time.h (struct timespec): Replace __snseconds_t with
42138         __syscall_slong_t.
42139         * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
42140         * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
42141         Likewise.
42142         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
42143         (__SNSECONDS_T_TYPE): Likewise.
42144         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
42145         (__SNSECONDS_T_TYPE): Likewise.
42146         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
42147         (__SNSECONDS_T_TYPE): Likewise.
42149 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42151         * sysdeps/mach/hurd/bits/typesizes.h
42152         (__SYSCALL_SLONG_TYPE): New macro.
42153         (__SYSCALL_ULONG_TYPE): Likewise.
42155 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42157         * bits/types.h (__syscall_slong_t): New type.
42158         (__syscall_ulong_t): Likewise.
42160         * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
42161         (__SYSCALL_ULONG_TYPE): Likewise.
42162         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
42163         (__SYSCALL_SLONG_TYPE): Likewise.
42164         (__SYSCALL_ULONG_TYPE): Likewise.
42165         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
42166         (__SYSCALL_SLONG_TYPE): Likewise.
42167         (__SYSCALL_ULONG_TYPE): Likewise.
42168         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
42169         (__SYSCALL_SLONG_TYPE): Likewise.
42170         (__SYSCALL_ULONG_TYPE): Likewise.
42172 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42174         * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
42175         Add sigaltstack-offsets.sym.
42176         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
42177         <sigaltstack-offsets.h>.
42178         (CALL_FAIL): Use RSP_LP to operate on stack.  Use RDI_LP on
42179         longjmp_msg pointer.
42180         (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC.  Use
42181         R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
42182         signal stack.
42183         * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
42185 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
42187         * elf/stackguard-macros.h: Remove file.
42188         * sysdeps/generic/stackguard-macros.h: New file.
42189         * sysdeps/i386/stackguard-macros.h: Likewise.
42190         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
42191         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
42192         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
42193         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
42194         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
42195         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
42196         * sysdeps/x86_64/stackguard-macros.h: Likewise.
42197         * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
42198         <elf/stackguard-macros.h>.
42200         [BZ #14109]
42201         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
42202         __aligned__ in attribute.
42203         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
42204         (gregset_t): Likewise.
42206 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42208         * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
42209         * sysdeps/x86_64/64/Implies-after: Here.  New file.
42210         * sysdeps/x86_64/x32/Implies-after: New file.
42212 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42214         * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
42215         and access return value for _dl_profile_fixup.  Use R10_LP to
42216         load frame size.
42218 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42220         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
42222 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42224         * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
42225         * sysdeps/x86_64/x32/sysdep.h: New file.
42227 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42229         * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
42230         * sysdeps/x86_64/setjmp.S: Likewise.
42232 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42234         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
42235         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
42236         * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
42237         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
42238         remove unused global constant.
42240 2012-05-15  Chris Metcalf  <cmetcalf@tilera.com>
42242         * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
42243         include of <not-cancel.h>.
42245 2012-05-15  Roland McGrath  <roland@hack.frob.com>
42247         * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
42249 2012-05-15  Jeff Law  <law@redhat.com>
42250             Andreas Jaeger  <aj@suse.de>
42252         [BZ #13594]
42253         * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
42254         out from...
42255         * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
42256         * nscd/nscd-client.h: Add __nscd_acquire_maplock.
42257         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
42258         code changing __hst_map_handle.map.
42260 2012-05-15  Roland McGrath  <roland@hack.frob.com>
42262         * configure.in (sysnames): Look for Implies-before and Implies-after
42263         files.
42264         * configure: Regenerated.
42266 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42268         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
42269         8-byte data alignment with LP_SIZE alignment.
42271 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42273         * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
42274         into R10_LP.
42276 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42278         * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
42280 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42282         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
42283         * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
42284         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
42285         Likewise.
42286         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
42288 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42290         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
42291         (stackinfo_sub_sp): Likewise.
42293 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42295         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
42296         RAX_LP.
42298 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42300         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
42301         into R*_LP.
42303 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42305         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
42306         sizes into R*_LP.
42308 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42310         * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
42312 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42314         * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
42315         into R11_LP and load __x86_64_shared_cache_size_half into
42316         R8_LP.
42318 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
42320         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
42321         R8_LP.
42323 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42325         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
42326         logb for POWER7.
42327         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
42328         logbf for POWER7.
42329         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
42330         logbl for POWER7.
42331         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
42332         powerpc32/power7/fpu/s_logb.c via #include.
42333         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
42334         powerpc32/power7/fpu/s_logbf.c via #include.
42335         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
42336         powerpc32/power7/fpu/s_logbl.c via #include.
42338 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
42340         * README.libm: Remove file.
42342 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42344         * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
42345         count for x32.  Use R*_LP and omit operand-size suffix.
42347 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42349         * shlib-versions: Move x86_64-.*-linux.* entries to ...
42350         * sysdeps/x86_64/64/shlib-versions: Here.  New file.
42351         * sysdeps/x86_64/x32/shlib-versions: New file.
42353 2012-05-14  Roland McGrath  <roland@hack.frob.com>
42355         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
42356         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
42357         Use _dl_fatal_printf instead.
42359 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
42361         * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
42362         set if not set by the user.  Do not allow for being unset.
42363         * sysdeps/unix/sysv/linux/configure: Regenerated.
42365 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42367         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
42368         the `q' suffix from lea and replace .quad with ASM_ADDR.
42370 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42372         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
42373         the `q' suffix from xor/rol instructions.  Use $2*LP_SIZE+1
42374         instead of $17.
42375         (PTR_DEMANGLE): Likewise.
42377 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42379         * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
42380         (LP_OP): Likewise.
42381         (ASM_ADDR): Likewise.
42382         (RAX_LP): Likewise.
42383         (RBP_LP): Likewise.
42384         (RBX_LP): Likewise.
42385         (RCX_LP): Likewise.
42386         (RDI_LP): Likewise.
42387         (RSI_LP): Likewise.
42388         (RSP_LP): Likewise.
42389         (R8_LP): Likewise.
42390         (R9_LP): Likewise.
42391         (R10_LP): Likewise.
42392         (R10_LP): Likewise.
42393         (R11_LP): Likewise.
42394         (R12_LP): Likewise.
42395         (R13_LP): Likewise.
42396         (R14_LP): Likewise.
42397         (R15_LP): Likewise.
42399 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42401         * sysdeps/x86_64/x32/dl-machine.h: New file.
42403 2012-05-14  Andreas Jaeger  <aj@suse.de>
42405         * manual/Makefile (subdir): Remove export of subdir.
42406         (all): Remove target.
42407         (.PHONY): Remove all from list.
42408         (mkinstalldirs): Remove.
42409         (.PHONY): Remove installdirs from list.
42410         ($(inst_infodir)/libc.info): Use make-target-directory.
42411         (installdirs): Remove.
42412         (subdir_%): Remove.
42413         (glibc-targets): Remove.
42414         (lib): Remove.
42415         (stubs): Remove.
42416         ($(objpfx)stubs ../po/manual.pot): Remove.
42417         ($(objpfx)stamp%): Remove.
42418         (make-target-directory): Remove.
42419         (subdir_install): Remove.
42420         (routines): Remove.
42421         (aux): Remove.
42422         (sources): Remove.
42423         (objects): Remove.
42424         (headers): Remove.
42426         [BZ #13750]
42427         * manual/.gitignore: Remove, it's not needed anymore.
42428         * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
42429         all files in it.
42430         * manual/Makefile (dvi, pdf, info, html): Depend on files in build
42431         directory.
42432         (texis): Renamed to $(objpfx)texis.
42433         (texis-path): New, contains path to generated files.
42434         (chapters.%): Use texis-path for complete path, add extra argument
42435         libc-texinfo.sh.
42436         (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
42437         (libc/index.html, summary.texi): Add $(objpfx) as prefix.
42438         (summary,texi, stamp-summary): Use complete path of
42439         files. Generate files in build dir.
42440         (dir-add.texi): Build in build dir.
42441         (libm-err.texi,stamp-libm-err): Likewise.
42442         (version.texi, stamp-version): Likewise.
42443         (.%c.texi): Likewise.
42444         (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
42445         (mostlyclean): Remove target.
42446         (realclean): Remove target.
42447         (generated): Add new variable with contents from mostlyclean and
42448         realclean, remove entries duplicated in common-mostlyclean, add
42449         stamp-libm-err and stamp-version.
42450         (generated-dirs): Add libc directory.
42451         ($(inst_infodir)/libc.info): Install files from build dir.
42453         * manual/install.texi (Configuring and compiling): Adjust since
42454         the info files are not part of the tar ball anymore.
42456 2012-05-14  Andreas Jaeger  <aj@suse.de>
42458         * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
42459         variable.
42461 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
42463         [BZ #13717]
42464         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
42465         to 2.2.0 where earlier.
42466         * sysdeps/unix/sysv/linux/configure: Regenerated.
42467         * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
42468         Remove conditional code.
42469         [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
42470         * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
42471         Remove conditional code.
42472         [!__NR_lchown]: Likewise.
42473         [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
42474         [__NR_lchown]: Likewise.
42475         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
42476         comment referencing __ASSUME_LCHOWN_SYSCALL.
42477         * sysdeps/unix/sysv/linux/i386/sigaction.c
42478         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42479         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42480         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
42481         Remove conditional code.
42482         [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
42483         (__protocol_available): Remove #if 0 code.
42484         * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
42485         conditional code.
42486         [__ASSUME_SIOCGIFNAME]: Make code unconditional.
42487         * sysdeps/unix/sysv/linux/kernel-features.h
42488         (__ASSUME_GETCWD_SYSCALL): Don't define.
42489         (__ASSUME_REALTIME_SIGNALS): Likewise.
42490         (__ASSUME_PREAD_SYSCALL): Likewise.
42491         (__ASSUME_PWRITE_SYSCALL): Likewise.
42492         (__ASSUME_POLL_SYSCALL): Likewise.
42493         (__ASSUME_LCHOWN_SYSCALL): Likewise.
42494         (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
42495         non-SPARC.
42496         (__ASSUME_SIOCGIFNAME): Don't define.
42497         (__ASSUME_MSG_NOSIGNAL): Likewise.
42498         (__ASSUME_SENDFILE): Define unconditionally.
42499         (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
42500         * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
42501         conditional code.
42502         [__ASSUME_POLL_SYSCALL]: Make code unconditional.
42503         * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
42504         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
42505         (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
42506         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
42507         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
42508         (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
42509         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
42510         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42511         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42512         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
42513         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42514         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42515         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
42516         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42517         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42518         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
42519         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42520         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42521         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
42522         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42523         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42524         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
42525         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42526         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42527         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
42528         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42529         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42530         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
42531         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42532         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42533         * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
42534         Remove conditional code.
42535         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42536         * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
42537         Remove conditional code.
42538         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42539         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
42540         [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
42541         * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
42542         Remove conditional code.
42543         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42544         * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
42545         Remove conditional code.
42546         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42547         * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
42548         Remove conditional code.
42549         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42550         * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
42551         Remove conditional code.
42552         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42553         * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
42554         Remove conditional code.
42555         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42556         * sysdeps/unix/sysv/linux/sh/pwrite64.c
42557         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42558         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42559         * sysdeps/unix/sysv/linux/sigaction.c
42560         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42561         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42562         * sysdeps/unix/sysv/linux/sigpending.c
42563         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42564         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42565         * sysdeps/unix/sysv/linux/sigprocmask.c
42566         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42567         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42568         * sysdeps/unix/sysv/linux/sigsuspend.c
42569         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42570         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42571         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
42572         (__libc_missing_rt_sigs): Remove.
42573         (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
42574         (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
42575         * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
42576         Remove conditional code.
42577         [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
42578         * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
42579         return 1.
42580         * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
42581         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
42582         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
42583         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
42585 2012-05-14  Andreas Jaeger  <aj@suse.de>
42587         * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
42588         it's not used in glibc.
42589         (__coshm1): Likewise.
42590         (__acosh1p): Likewise.
42591         (__sgn): Likewise.
42593         * manual/string.texi (Copying and Concatenation): Add missing
42594         variable in concat example.
42595         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
42597 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42599         [BZ #14103]
42600         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
42601         __builtin_clzl with __builtin_clzll.
42603 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
42605         [BZ #14104]
42606         * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
42607         libc_freeres_ptr.
42609 2012-05-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
42611         * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
42612         * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
42613         * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
42614         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
42616 2012-05-14  Mike Frysinger  <vapier@gentoo.org>
42618         * NEWS: Update ia64 info.
42620 2012-05-12  Andreas Schwab  <schwab@linux-m68k.org>
42622         * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
42623         used as bcopy.
42625 2012-05-12  Thomas Schwinge  <thomas@codesourcery.com>
42627         * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
42628         * sysdeps/unix/syscalls.list (dup3): Likewise.
42629         * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
42630         * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
42632 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
42634         * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
42635         "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
42637 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
42639         * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
42640         thread pointer.
42641         (TLS_IE): Use mov/add instead of movq/addq to load thread
42642         pointer.
42643         (TLS_GD_PREFIX): New.
42644         (TLS_GD): Use it.
42646 2012-05-11  David S. Miller  <davem@davemloft.net>
42648         * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
42649         * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
42650         (_FPU_SETCW): Likewise.
42652 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
42654         * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
42655         is 32-byte aligned.
42657 2012-05-11  Andreas Schwab  <schwab@linux-m68k.org>
42659         [BZ #11837]
42660         * iconvdata/gb18030.c: Update tables.
42661         (BODY for FROM_LOOP): Update.  Handle two-byte encoded non-BMP
42662         characters specially.
42663         (BODY for TO_LOOP): Add encoding of missing ranges.
42665 2012-05-11  Thomas Schwinge  <thomas@codesourcery.com>
42667         [BZ #13673]
42668         * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
42669         * sysdeps/mach/hurd/dup3.c: Likewise.
42670         * sysdeps/mach/hurd/readlinkat.c: Likewise.
42671         * sysdeps/powerpc/memmove.c:: Likewise.
42673 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
42675         * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
42676         R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
42678 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
42680         * elf/elf.h (R_X86_64_RELATIVE64): New.
42681         (R_X86_64_NUM): Updated.
42682         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
42683         R_X86_64_RELATIVE64.  Always use Elf64_Addr with R_X86_64_64.
42684         (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
42685         * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
42686         tst-quad1pie tst-quad2pie
42687         (modules-names): Add tst-quadmod1 tst-quadmod2.
42688         ($(objpfx)tst-quad1): New dependency.
42689         ($(objpfx)tst-quad2): Likewise.
42690         ($(objpfx)tst-quad1pie): Likewise.
42691         ($(objpfx)tst-quad2pie): Likewise.
42692         * sysdeps/x86_64/tst-quad1.c: New file.
42693         * sysdeps/x86_64/tst-quad1pie.c: New file.
42694         * sysdeps/x86_64/tst-quad2.c: Likewise.
42695         * sysdeps/x86_64/tst-quad2pie.c: Likewise.
42696         * sysdeps/x86_64/tst-quadmod1.S: Likewise.
42697         * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
42698         * sysdeps/x86_64/tst-quadmod2.S: Likewise.
42699         * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
42701 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42703         * io/fcntl.h (mode_t, off_t, pid_t): Define types.
42704         (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
42705         * streams/stropts.h (t_scalar_t): Define type.
42707         * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
42708         (_PATH_PRESERVE): Set to "/var/lib".
42709         (_PATH_RWHODIR): Set to "/var/spool/rwho".
42711         * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
42712         instead of int.
42714         * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
42715         if __dir_mkfile succeeded.
42717         * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
42718         checking for _hurd_dtablesize.  Unlock it right after having
42719         finished _hurd_dtable allocation.
42721 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42723         * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
42724         * sysdeps/mach/hurd/configure: Regenerated.
42725         * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
42726         special-casing to...
42727         * sysdeps/gnu/configure.in: ... this new file.
42728         * sysdeps/unix/sysv/linux/configure: Regenerated.
42729         * sysdeps/gnu/configure: New generated file.
42731         * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
42732         for Linux: use nsec instead of usec, as well as:
42733         [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
42734         members of type struct timespec.
42735         [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
42736         New macros.
42737         (struct stat64): Likewise.
42738         (_STATBUF_ST_NSEC): New macro.
42739         * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
42741         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
42742         __strtoul_internal rather than strtoul.
42744 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
42746         * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
42747         and reject them.
42749 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42751         * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
42752         which preserves existing values.
42753         * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
42755 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
42757         * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
42758         TIMEOUT values.  Return EINVAL for NFDS values either negative or
42759         greater than FD_SETSIZE.
42761 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42763         * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
42764         allocated, call __vm_protect to finish enabling the existing space, and
42765         pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
42766         allocate the remainder.
42768 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
42770         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
42771         address port.  Set ADDR_LEN to 0 when not filling ADDRARG.
42773 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42775         * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
42776         sysdeps/mach/hurd/readlink.c.
42778         * posix/tst-sysconf.c (posix_options): Only use
42779         _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
42780         _POSIX_SYNCHRONIZED_IO when they are defined
42781         * sysdeps/mach/hurd/bits/posix_opt.h:
42782         (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
42783         (_XOPEN_REALTIME): Undefine macro.
42784         (_XOPEN_REALTIME_THREADS): Undefine macro.
42785         (_XOPEN_SHM): Undefine macro.
42786         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
42787         macro to -1.
42788         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
42789         macro to -1.
42790         (_POSIX_ASYNC_IO): Undefine macro.
42791         (_POSIX_PRIORITIZED_IO): Undefine macro.
42792         (_POSIX_SPIN_LOCKS): Define macro to -1.
42794         * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
42795         SA_NODEFER, SA_RESETHAND.
42796         * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
42797         O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
42798         F_DUPFD_CLOEXEC.
42800 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42802         * elf/Makefile (pldd-modules): Define unconditionally.
42804 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42806         * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
42808 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42810         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
42811         Return ENOENT when name is empty.
42812         * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
42814 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42816         * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
42818         * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
42820 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42822         Fix mlock in all cases except non-readable pages.
42823         * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
42824         instead of VM_PROT_ALL as parameter to __vm_wire function.
42826         * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
42827         (__mkdir): When path is `/', just fail with EEXIST.
42828         * sysdeps/mach/hurd/mkdirat.c: Likewise.
42830 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42832         * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
42833         <sys/uio.h> (for writev).
42834         * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
42835         and <sys/param.h> (for MIN).
42837 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
42839         * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
42840         REQUESTED_TIME.  Properly set the remaining time and return EINTR
42841         if interrupted.
42843 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42845         * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
42846         Depend on against $(link-rpcuserlibs).
42848 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42850         * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
42851         (__libc_stack_end): Do not use attribute_relro.
42852         * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
42853         * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
42854         to libthread-provided value.
42855         * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
42856         attribute_relro.
42858 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42860         [BZ #3748]
42861         * bits/libc-lock.h (__libc_once_get): New macro.
42862         * sysdeps/mach/bits/libc-lock.h: Likewise.
42863         * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
42864         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
42865         instead of using implementation details.
42867         * libio/fileops.c: Unconditionally include <kernel-features.h>.
42868         * libio/freopen.c: Likewise.
42869         * libio/freopen64.c: Likewise.
42870         * misc/syslog.c: Likewise.
42871         * nscd/connections.c: Likewise.
42872         * nscd/netgroupcache.c: Likewise.
42873         * sysdeps/posix/getcwd.c: Likewise.
42875 2012-05-10  Roland McGrath  <roland@hack.frob.com>
42877         * math/w_ilogbf.c: Add #include <limits.h>.
42879 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42881         * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
42882         path instead of returning without unlocking.
42884         * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
42885         immediate-write ioctls.
42886         * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
42888 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42890         * sysdeps/mach/hurd/i386/init-first.c (init): Use
42891         __builtin_frame_address instead of making assumptions about the
42892         location of the return address relative to DATA.  Force early load of
42893         the return address.
42894         (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
42895         __builtin_frame_address.
42897         dup3 for GNU Hurd.
42898         * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
42899         * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c.  Evolve it to
42900         implement dup3 and do some further code clean-ups.
42901         * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
42902         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
42904 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42906         * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
42908         * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
42909         HURD_CRITICAL_END around holding _hurd_dtable_lock.
42910         * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
42911         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
42912         HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
42913         d->port.lock.
42915         * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
42916         instead of setjmp/longjmp to restore the signal mask.  Call sigsetjmp
42917         when handler == SIG_ERR, not when handler != SIG_ERR.
42919 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42921         * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
42922         (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
42923         definitions.
42925         accept4 for GNU Hurd.
42926         * include/sys/socket.h (__libc_accept4): New prototype.
42927         * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c.  Evolve it
42928         to implement __libc_accept4.
42929         * sysdeps/mach/hurd/accept.c (accept): Reimplement using
42930         __libc_accept4.
42931         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
42933         * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
42934         * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
42935         * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
42936         signal-defines.sym.
42938 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42940         * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
42942 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
42944         * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
42945         assertion on O_CLOEXEC flag.
42946         * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
42947         * hurd/intern-fd.c: Likewise.
42948         * hurd/port2fd.c: Likewise.
42950 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
42952         [BZ #3906]
42953         * bits/in.h (IPV6_PKTINFO): Define new macro.
42954         (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
42956 2012-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42958         [BZ #13954]
42959         [BZ #13955]
42960         [BZ #13956]
42961         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
42962         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
42963         * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
42964         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
42965         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
42966         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
42967         * math/libm-test.inc (logb_test) : Additional logb tests.
42969 2012-05-09  Andreas Schwab  <schwab@linux-m68k.org>
42970             Andreas Jaeger  <aj@suse.de>
42972         * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
42973         * configure: Regenerated.
42974         * config.h.in (LINK_OBSOLETE_RPC): New macro.
42975         * config.make.in (link-obsolete-rpc): New substituted variable.
42976         * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
42977         libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
42978         * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
42979         (shared-only-routines): Don't set it under [link-obsolete-rpc],
42980         so that libc.a contains the symbols.
42981         * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
42982         * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
42983         * sunrpc/auth_none.c: Likewise.
42984         * sunrpc/auth_unix.c: Likewise.
42985         * sunrpc/authdes_prot.c: Likewise.
42986         * sunrpc/authuxprot.c: Likewise.
42987         * sunrpc/clnt_gen.c: Likewise.
42988         * sunrpc/clnt_perr.c: Likewise.
42989         * sunrpc/clnt_raw.c: Likewise.
42990         * sunrpc/clnt_simp.c: Likewise.
42991         * sunrpc/clnt_tcp.c: Likewise.
42992         * sunrpc/clnt_udp.c: Likewise.
42993         * sunrpc/clnt_unix.c: Likewise.
42994         * sunrpc/des_crypt.c: Likewise.
42995         * sunrpc/des_soft.c: Likewise.
42996         * sunrpc/get_myaddr.c: Likewise.
42997         * sunrpc/key_call.c: Likewise.
42998         * sunrpc/key_prot.c: Likewise.
42999         * sunrpc/netname.c: Likewise.
43000         * sunrpc/pm_getmaps.c: Likewise.
43001         * sunrpc/pm_getport.c: Likewise.
43002         * sunrpc/pmap_clnt.c: Likewise.
43003         * sunrpc/pmap_prot.c: Likewise.
43004         * sunrpc/pmap_prot2.c: Likewise.
43005         * sunrpc/pmap_rmt.c: Likewise.
43006         * sunrpc/publickey.c: Likewise.
43007         * sunrpc/rpc_cmsg.c: Likewise.
43008         * sunrpc/rpc_common.c: Likewise.
43009         * sunrpc/rpc_dtable.c: Likewise.
43010         * sunrpc/rpc_prot.c: Likewise.
43011         * sunrpc/rpc_thread.c: Likewise.
43012         * sunrpc/rtime.c: Likewise.
43013         * sunrpc/svc.c: Likewise.
43014         * sunrpc/svc_auth.c: Likewise.
43015         * sunrpc/svc_raw.c: Likewise.
43016         * sunrpc/svc_run.c: Likewise.
43017         * sunrpc/svc_tcp.c: Likewise.
43018         * sunrpc/svc_udp.c: Likewise.
43019         * sunrpc/svc_unix.c: Likewise.
43020         * sunrpc/svcauth_des.c: Likewise.
43021         * sunrpc/xcrypt.c: Likewise.
43022         * sunrpc/xdr.c: Likewise.
43023         * sunrpc/xdr_array.c: Likewise.
43024         * sunrpc/xdr_float.c: Likewise.
43025         * sunrpc/xdr_intXX_t.c: Likewise.
43026         * sunrpc/xdr_mem.c: Likewise.
43027         * sunrpc/xdr_rec.c: Likewise.
43028         * sunrpc/xdr_ref.c: Likewise.
43029         * sunrpc/xdr_sizeof.c: Likewise.
43030         * sunrpc/xdr_stdio.c: Likewise.
43032 2012-05-10  Roland McGrath  <roland@hack.frob.com>
43034         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
43035         change.  Update copyright years.
43037 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
43039         * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
43041 2012-05-10  Maxim Kuvyrkov  <maxim@codesourcery.com>
43042             Joseph Myers  <joseph@codesourcery.com>
43043             Paul Pluzhnikov  <ppluzhnikov@google.com>
43045         [BZ #14012]
43046         * sunrpc/Makefile [cross-compiling] (headers): Enable additions
43047         requiring rpcgen.
43048         [cross-compiling] (extra-libs): Likewise.
43049         [cross-compiling] (extra-libs-others): Likewise.
43050         [cross-compiling] (librpcsvc-routines): Likewise.
43051         [cross-compiling] (librpcsvc-inhibit-o): Likewise.
43052         [cross-compiling] (omit-deps): Likewise.
43053         (sunrpc-CPPFLAGS): New variable.
43054         (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
43055         (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
43056         (cross-rpcgen-objs): New variable.
43057         (extra-objs): Append $(cross-rpcgen-objs).
43058         ($(cross-rpcgen-objs)): New rule.
43059         ($(objpfx)cross-rpcgen): Likewise.
43060         (rpcgen-cmd): Define to use $(built-program-file).  Expand
43061         comment.
43062         ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
43063         ($(objpfx)x%.stmp): Likewise.
43064         * sunrpc/proto.h [IS_IN_build] (_): Define.
43065         [IS_IN_build] (_libc_intl_domainname): Likewise.
43067 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
43069         * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
43070         Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
43071         and R_X86_64_TPOFF64.
43073 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
43075         * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
43076         sysdeps/unix/sysv/syscalls.list.
43077         (stime): Likewise.
43078         (utime): Likewise.
43079         * sysdeps/unix/sysv/syscalls.list: Remove file.
43081 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
43083         [BZ #3440]
43084         * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
43085         (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
43086         (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
43087         (__LC_IDENTIFICATION): Make these macros useful in #if
43088         expressions, as required by C99.
43090 2012-05-10  Andreas Schwab  <schwab@linux-m68k.org>
43092         * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
43093         $(addsuffix .os,$(rpc-compat-routines)).  Move include ../Rules
43094         after this.
43096 2012-05-09  H.J. Lu  <hongjiu.lu@intel.com>
43098         * stdlib/longlong.h: Updated from GCC.
43100 2012-05-09  Andreas Jaeger  <aj@suse.de>
43102         * nscd/nscd.c (run_modes): Make named enum, reorder so that
43103         default is first entry.
43104         (run_mode): Set type.
43105         (main): Remove informal message about syslog.
43106         (options): Fix typo.
43108         [BZ #14053]
43109         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
43110         to asm.
43111         (lrint): Likewise.
43112         (llrintf): Likewise.
43113         (llrint): Likewise.
43114         (rint): Likewise.
43115         (rintf): Likewise.
43116         (nearbyint): Likewise.
43117         (nearbyintf): Likewise.
43119 2012-05-09  Andreas Jaeger  <aj@suse.de>
43120             Pedro Alves  <palves@redhat.com>
43122         * nscd/nscd.c (run_mode): Use enum.
43123         (main): Cleanup coding style issue.
43125 2012-05-09  Alexandre Oliva  <aoliva@redhat.com>
43126             Andreas Jaeger  <aj@suse.de>
43128         * nscd/nscd.c (go_background): Replaced with...
43129         (run_mode): ... this.
43130         (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
43131         (options): Add -F --foreground.
43132         (main): Implement it.
43133         (parse_opt): Parse it.
43135 2012-05-09  Andreas Jaeger  <aj@suse.de>
43137         [BZ #14083]
43138         * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
43139         !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
43140         -Wconversion warning.
43141         (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
43142         Likewise.
43144 2012-05-09  Joseph Myers  <joseph@codesourcery.com>
43146         * conform/data/locale.h-data (NULL): Use macro-constant.  Require
43147         == 0.
43148         (LC_ALL): Use macro-int-constant.
43149         (LC_COLLATE): Likewise.
43150         (LC_CTYPE): Likewise.
43151         (LC_MESSAGES): Likewise.
43152         (LC_MONETARY): Likewise.
43153         (LC_NUMERIC): Likewise.
43154         (LC_TIME): Likewise.
43155         [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
43156         (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
43157         [ISO || ISO99 || ISO11] (*_t): Do not allow.
43158         * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
43159         Specify type.
43160         [C99-based standards] (float_t): Expect type.
43161         [C99-based standards] (double_t): Expect type.
43162         [C99-based standards] (HUGE_VALF): Use macro-constant.  Specify
43163         type.
43164         [C99-based standards] (HUGE_VALL): Likewise.
43165         [C99-based standards] (INFINITY): Likewise.
43166         [C99-based standards] (NAN): Likewise.
43167         [C99-based standards] (FP_INFINITE): Use macro-int-constant.
43168         [C99-based standards] (FP_NAN): Likewise.
43169         [C99-based standards] (FP_NORMAL): Likewise.
43170         [C99-based standards] (FP_SUBNORMAL): Likewise.
43171         [C99-based standards] (FP_ZERO): Likewise.
43172         [C99-based standards] (FP_FAST_FMA): Use
43173         optional-macro-int-constant.  Specify type.  Require == 1.
43174         [C99-based standards] (FP_FAST_FMAF): Likewise.
43175         [C99-based standards] (FP_FAST_FMAL): Likewise.
43176         [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
43177         [C99-based standards] (FP_ILOGBNAN): Likewise.
43178         [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
43179         Specify type.
43180         [C99-based standards] (MATH_ERREXCEPT): Likewise.
43181         [C99-based standards] (math_errhandling): Specify type.
43182         [ISO99 || ISO11] (signgam): Do not allow.
43183         [non-C99-based standards] (copysignf): Do not allow.
43184         [non-C99-based standards] (exp2f): Likewise.
43185         [non-C99-based standards] (log2f): Likewise.
43186         [non-C99-based standards] (modff): Allow.
43187         [non-C99-based standards] (erff): Do not allow.
43188         [non-C99-based standards] (erfcf): Likewise.
43189         [non-C99-based standards] (gammaf): Likewise.
43190         [non-C99-based standards] (hypotf): Likewise.
43191         [non-C99-based standards] (j0f): Likewise.
43192         [non-C99-based standards] (j1f): Likewise.
43193         [non-C99-based standards] (jnf): Likewise.
43194         [non-C99-based standards] (lgammaf): Likewise.
43195         [non-C99-based standards] (tgammaf): Likewise.
43196         [non-C99-based standards] (y0f): Likewise.
43197         [non-C99-based standards] (y1f): Likewise.
43198         [non-C99-based standards] (ynf): Likewise.
43199         [non-C99-based standards] (isnanf): Likewise.
43200         [non-C99-based standards] (acoshf): Likewise.
43201         [non-C99-based standards] (asinhf): Likewise.
43202         [non-C99-based standards] (atanhf): Likewise.
43203         [non-C99-based standards] (cbrtf): Likewise.
43204         [non-C99-based standards] (expm1f): Likewise.
43205         [non-C99-based standards] (ilogbf): Likewise.
43206         [non-C99-based standards] (log1pf): Likewise.
43207         [non-C99-based standards] (logbf): Likewise.
43208         [non-C99-based standards] (nextafterf): Likewise.
43209         [non-C99-based standards] (remainderf): Likewise.
43210         [non-C99-based standards] (rintf): Likewise.
43211         [non-C99-based standards] (scalbf): Likewise.
43212         [non-C99-based standards] (copysignl): Likewise.
43213         [non-C99-based standards] (exp2l): Likewise.
43214         [non-C99-based standards] (log2l): Likewise.
43215         [non-C99-based standards] (modfl): Allow.
43216         [non-C99-based standards] (erfl): Do not allow.
43217         [non-C99-based standards] (erfcl): Likewise.
43218         [non-C99-based standards] (gammal): Likewise.
43219         [non-C99-based standards] (hypotl): Likewise.
43220         [non-C99-based standards] (j0l): Likewise.
43221         [non-C99-based standards] (j1l): Likewise.
43222         [non-C99-based standards] (jnl): Likewise.
43223         [non-C99-based standards] (lgammal): Likewise.
43224         [non-C99-based standards] (tgammal): Likewise.
43225         [non-C99-based standards] (y0l): Likewise.
43226         [non-C99-based standards] (y1l): Likewise.
43227         [non-C99-based standards] (ynl): Likewise.
43228         [non-C99-based standards] (isnanl): Likewise.
43229         [non-C99-based standards] (acoshl): Likewise.
43230         [non-C99-based standards] (asinhl): Likewise.
43231         [non-C99-based standards] (atanhl): Likewise.
43232         [non-C99-based standards] (cbrtl): Likewise.
43233         [non-C99-based standards] (expm1l): Likewise.
43234         [non-C99-based standards] (ilogbl): Likewise.
43235         [non-C99-based standards] (log1pl): Likewise.
43236         [non-C99-based standards] (logbl): Likewise.
43237         [non-C99-based standards] (nextafterl): Likewise.
43238         [non-C99-based standards] (remainderl): Likewise.
43239         [non-C99-based standards] (rintl): Likewise.
43240         [non-C99-based standards] (scalbl): Likewise.
43241         [ISO || ISO99 || ISO11] (*_t): Do not allow.
43242         [non-C99-based standards] (FP_*): Do not allow.
43243         [C99-based standards] (FP_*): Change to
43244         FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
43245         * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
43246         allow.
43247         * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
43248         (SIG_ERR): Likewise.
43249         [X/Open-based standards] (SIG_HOLD): Likewise.
43250         (SIG_IGN): Likewise.
43251         (SIGABRT): Use macro-int-constant.  Specify type.  Require
43252         positive value.
43253         (SIGFPE): Likewise.
43254         (SIGILL): Likewise.
43255         (SIGINT): Likewise.
43256         (SIGSEGV): Likewise.
43257         (SIGTER): Likewise.
43258         [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
43259         [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
43260         [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
43261         [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
43262         [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
43263         [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
43264         [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
43265         [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
43266         [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
43267         [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
43268         [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
43269         [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
43270         [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
43271         [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
43272         [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
43273         [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
43274         [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
43275         [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
43276         [X/Open-based standards] (SIGTRAP): Likewise.
43277         [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
43278         [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
43279         [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
43280         [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
43281         * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
43282         allow.
43284 2012-05-08  Ian Wienand  <ianw@vmware.com>
43286         [BZ #14080]
43287         * time/tzset.c (__tzset_parse_tz): Update default rules for
43288         daylight time changes in the Energy Policy Act of 2005.
43290 2012-05-09  Andreas Jaeger  <aj@suse.de>
43292         [BZ #13983]
43293         * elf/ldconfig.c (parse_conf): Change string to make clear that
43294         ldconfig only issued a warning if ld.so.conf does not exist.
43296 2012-05-08  David S. Miller  <davem@davemloft.net>
43298         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
43299         movxtod instead of popping the value on the stack.
43301         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43303 2012-05-08  Carlos O'Donell  <carlos_odonell@mentor.com>
43305         * config.h.in: Add HAVE_ARM_PCS_VFP.
43307 2012-05-08  Roland Mc Grath  <roland@hack.frob.com>
43309         [BZ #13979]
43310         * include/features.h: Warn if user requests __FORTIFY_SOURCE
43311         checking but the checks are disabled for any reason.
43313 2012-05-08  H.J. Lu  <hongjiu.lu@intel.com>
43315         * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
43316         and ELF64_R_TYPE with ELFW(R_TYPE).
43318 2012-05-08  Joseph Myers  <joseph@codesourcery.com>
43320         * sysdeps/unix/sysv/syscalls.list (pause): Remove.
43321         (ulimit): Likewise.
43323         * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
43324         (settimeofday): Likewise.
43326 2012-05-08  Mike Frysinger  <vapier@gentoo.org>
43328         * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1.  Add
43329         a struct th_u2 inside the union, and move tu_block/tu_code into
43330         a new th_u3 union of tu_block/tu_code inside of that.  Move
43331         th_data[1] into the th_u2 as tu_data[0].  Change tu_stuff[1] to
43332         tu_stuff[0].  Add a new tu_padding[4] to keep sizeof() the same.
43333         (th_block): Change to th_u1.th_u2.th_u3.tu_block.
43334         (th_code): Change to th_u1.th_u2.th_u3.tu_code.
43335         (th_stuff): Change to th_u1.tu_stuff.
43336         (th_data): Define.
43337         (th_msg): Change to th_u1.th_u2.tu_data.
43339 2012-05-07  David S. Miller  <davem@davemloft.net>
43341         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43343         [BZ #14074]
43344         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
43345         (SETUP_PIC_REG): Use it.
43346         (SETUP_PIC_REG_LEAF): Use it.
43348 2012-05-07  Joseph Myers  <joseph@codesourcery.com>
43350         [BZ #13885]
43351         [BZ #13923]
43352         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43353         USE_AS_EXPM1L.
43354         (EXPL_FINITE): Likewise.
43355         (FLDLOG): Likewise.
43356         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
43357         * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
43358         e_expl.S.
43359         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43360         USE_AS_EXPM1L.
43361         (EXPL_FINITE): Likewise.
43362         (FLDLOG): Likewise.
43363         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
43364         * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
43365         e_expl.S.
43366         * math/libm-test.inc (expm1_test): Add more tests.  Do not disable
43367         test of -max_value argument for long double.
43368         * sysdeps/i386/fpu/libm-test-ulps: Update.
43369         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43371 2012-05-06  David S. Miller  <davem@davemloft.net>
43373         * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
43374         quad soft-float symbols whose references which are compiler
43375         generated.
43376         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
43378 2012-05-06  Joseph Myers  <joseph@codesourcery.com>
43380         [BZ #13884]
43381         [BZ #13914]
43382         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43383         USE_AS_EXP10L.
43384         (EXPL_FINITE): Likewise.
43385         (FLDLOG): Likewise.
43386         (c0): Likewise.
43387         (c1): Likewise.
43388         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
43389         Adjust comments for base varying.
43390         (__expl_finite): Change alias to EXPL_FINITE.
43391         * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
43392         e_expl.S.
43393         * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
43394         * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
43395         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
43396         * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
43397         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43398         USE_AS_EXP10L.
43399         (EXPL_FINITE): Likewise.
43400         (FLDLOG): Likewise.
43401         (c0): Likewise.
43402         (c1): Likewise.
43403         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
43404         Adjust comments for base varying.
43405         (__expl_finite): Change alias to EXPL_FINITE.
43406         * math/libm-test.inc (exp10_test): Add more tests.  Do not disable
43407         tests for bugs.
43408         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
43410         [BZ #14064]
43411         * math/libm-test.inc (check_float_internal): Correct ulp
43412         calculation for subnormal expected results.
43414 2012-05-06  Andreas Jaeger  <aj@suse.de>
43416         * Makeconfig (+math-flags): New, set to -frounding-math.
43417         (+cflags): Add +math-flags so that all of glibc gets compiled with
43418         it.
43420         * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
43422 2012-05-05  Joseph Myers  <joseph@codesourcery.com>
43424         * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
43425         Disable one test.
43427         [BZ #13787]
43428         [BZ #13922]
43429         [BZ #14036]
43430         * sysdeps/i386/fpu/e_expl.S (csat): New constant.
43431         (__ieee754_expl): Allow for and saturate large arguments.
43432         * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
43433         (u_threshold): Likewise.
43434         (__exp): Call __ieee754_exp before checking for overflow and
43435         underflow.
43436         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
43437         (u_threshold): Likewise.
43438         (__expf): Call __ieee754_expf before checking for overflow and
43439         underflow.
43440         * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
43441         (u_threshold): Likewise.
43442         (__expl): Call __ieee754_expl before checking for overflow and
43443         underflow.
43444         * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
43445         (__ieee754_expl): Allow for and saturate large arguments.
43446         * math/libm-test.inc (exp_test): Add another test.  Do not allow
43447         missing overflow exception on overflow.
43448         (expm1_test): Do not allow missing overflow exception on overflow.
43450         * sysdeps/i386/fpu/e_expl.c: Move to ...
43451         * sysdeps/i386/fpu/e_expl.S: ... here.  Write directly in assembly
43452         rather than using inline asm.
43453         * sysdeps/x86_64/fpu/e_expl.c: Remove file.
43454         * sysdeps/x86_64/fpu/e_expl.S: Copy from
43455         sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
43457         * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
43458         (nice): Likewise.
43459         (poll): Likewise.
43460         (signal): Likewise.
43461         (time): Likewise.
43462         (times): Likewise.
43464 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
43466         * sysdeps/unix/syscalls.list (adjtime): Add entry from
43467         sysdeps/unix/common/syscalls.list.
43468         (fchmod): Likewise.
43469         (fchown): Likewise.
43470         (ftruncate): Likewise.
43471         (getrusage): Likewise.
43472         (gettimeofday): Likewise.
43473         (setpgid): Likewise.
43474         (setregid): Likewise.
43475         (setreuid): Likewise.
43476         (sigaction): Likewise.
43477         (truncate): Likewise.
43478         (vhangup): Likewise.
43479         * sysdeps/unix/common/syscalls.list: Remove file.
43480         * sysdeps/unix/bsd/Implies: Don't include unix/common.
43481         * sysdeps/unix/sysv/linux/Implies: Likewise.
43483 2012-05-04  H.J. Lu  <hongjiu.lu@intel.com>
43485         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
43486         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
43487         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
43488         Moved to ...
43489         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
43490         Here.
43491         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
43492         to ...
43493         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
43494         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
43495         to ...
43496         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
43497         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
43498         to ...
43499         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
43500         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
43501         to ...
43502         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
43503         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
43504         to ...
43505         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
43506         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
43507         to ...
43508         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
43509         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
43510         to ...
43511         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
43512         Here.
43513         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
43514         to ...
43515         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
43516         Here.
43517         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
43518         to ...
43519         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
43520         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
43521         Moved to ...
43522         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
43523         Here.
43524         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
43525         to ...
43526         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
43528 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
43530         * sysdeps/unix/common/bits/dirent.h: Remove file.
43531         * sysdeps/unix/common/bits/fcntl.h: Likewise.
43533         * sysdeps/unix/bsd/bits/dirent.h: Remove file.
43534         * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
43535         * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
43536         * sysdeps/unix/bsd/isatty.c: Likewise.
43537         * sysdeps/unix/bsd/tcdrain.c: Likewise.
43538         * sysdeps/unix/bsd/tcgetattr.c: Likewise.
43539         * sysdeps/unix/bsd/tcsetattr.c: Likewise.
43541 2012-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
43543         [BZ #13563]
43544         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
43545         long double comparison inaccuracies.
43546         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
43547         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43549 2012-05-04  Andreas Schwab  <schwab@linux-m68k.org>
43551         * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
43552         * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
43554 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
43556         [BZ #14049]
43557         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
43558         nonzero digits before rounding a hex value.
43559         * stdlib/tst-strtod.c (tests): Add another test.
43561 2012-05-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
43563         * sysdeps/s390/fpu/libm-test-ulps: Update.
43565 2012-05-03  Andreas Jaeger  <aj@suse.de>
43567         * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
43568         does not get optimized out.
43569         (malloc_opt_barrier): New.
43571 2012-05-03  Andreas Jaeger  <aj@suse.de>
43572             Roland McGrath  <roland@hack.frob.com>
43574         * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
43575         intermediate file deletion.
43576         (generated): Add .symlist files.
43578 2012-05-03  Joseph Myers  <joseph@codesourcery.com>
43580         [BZ #13775]
43581         * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
43582         Redirect under this condition.
43583         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
43584         [__USE_GNU] (__dprintf_chk): Not under this condition.
43585         [__USE_GNU] (__vdprintf_chk): Likewise.
43586         * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
43587         under this condition.
43588         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
43589         [__USE_XOPEN2K8] (dprintf): Define under this condition.
43590         [__USE_XOPEN2K8] (vdprintf): Likewise.
43591         [__USE_GNU] (__dprintf_chk): Not under this condition.
43592         [__USE_GNU] (__vdprintf_chk): Likewise.
43593         [__USE_GNU] (dprintf): Likewise.
43594         [__USE_GNU] (vdprintf): Likewise.
43596 2012-05-03  Roland McGrath  <roland@hack.frob.com>
43598         * elf/Makefile (common-generated): Set this instead of generated for
43599         .dyn, .phdr, .jmprel files.  Remove $(common-objpfx) from the
43600         $(all-built-dso)-derived lists.
43602 2012-05-03  Andreas Jaeger  <aj@suse.de>
43604         * sysdeps/i386/fpu/libm-test-ulps: Update.
43606         * FAQ: Removed.
43607         * FAQ.in: Likewise.
43608         * scripts/gen-FAQ.pl: Likewise.
43609         * manual/install.texi (Installation): Point to online location of
43610         FAQ.
43611         * Makefile (files-for-dist): Remove FAQ.
43612         (FAQ): Remove.
43614 2012-05-02  Allan McRae  <allan@archlinux.org>
43616         * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
43617         (LDFLAGS-reldepmod5.so): Likewise.
43618         (LDFLAGS-reldep6mod1.so): Likewise.
43619         (LDFLAGS-reldep6mod4.so): Likewise.
43620         (LDFLAGS-reldep8mod3.so): Likewise.
43621         (LDFLAGS-unload4mod1.so): Likewise.
43622         (LDFLAGS-unload4mod2.so): Likewise.
43623         (LDFLAGS-tst-initorder): Likewise.
43624         (LDFLAGS-tst-initordera2.so): Likewise.
43625         (LDFLAGS-tst-initordera3.so): Likewise.
43626         (LDFLAGS-tst-initordera4.so): Likewise.
43627         (LDFLAGS-tst-initorderb2.so): Likewise.
43628         (LDFLAGS-noload): Likewise.
43629         (LDFLAGS-next): Likewise.
43630         (LDFLAGS-order2mod1.so): Likewise.
43631         (LDFLAGS-order2mod2.so): Likewise.
43632         (LDFLAGS-tst-initorder2): Likewise.
43633         (LDFLAGS-tst-initorder2a.so): Likewise.
43634         (LDFLAGS-tst-initorder2b.so): Likewise.
43635         (LDFLAGS-tst-initorder2c.so): Likewise.
43636         * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
43638 2012-05-02  David S. Miller  <davem@davemloft.net>
43640         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43642 2012-05-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
43644         [BZ #14055]
43645         * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
43647 2012-05-02  Andreas Jaeger  <aj@suse.de>
43649         * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
43650         since we manipulate rounding mode.
43651         (CPPFLAGS-test-idouble.c): Likewise.
43652         (CPPFLAGS-test-ifloat.c): Likewise.
43653         (CFLAGS-test-ldouble.c): Likewise.
43654         (CFLAGS-test-double.c): Likewise.
43655         (CFLAGS-test-float.c): Likewise.
43656         (CFLAGS-test-misc.c): Likewise.
43657         (CFLAGS-test-test-fenv.c): Likewise.
43659 2012-05-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
43661         [BZ #2550]
43662         [BZ #2570]
43663         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
43664         comparisons to determine direction to adjust input.
43666 2012-05-01  Roland McGrath  <roland@hack.frob.com>
43668         * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
43669         output to the target.
43671         * scripts/localplt.awk: New file.
43672         * elf/Makefile ($(objpfx)check-localplt): Target removed.
43673         (check-localplt-CFLAGS): Variable removed.
43674         ($(all-built-dso:=.jmprel)): New static pattern rule.
43675         (generated): Add those targets.
43676         (localplt-built-dso): New variable.
43677         ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
43679         * elf/check-localplt.c: File removed.
43681         * scripts/check-execstack.awk: New file.
43682         * elf/Makefile ($(objpfx)check-execstack): Target removed.
43683         (check-execstack-CFLAGS): Variable removed.
43684         ($(objpfx)check-execstack.h): Target removed.
43685         ($(objpfx)execstack-default): New target.
43686         (generated): Add that instead of check-execstack.h.
43687         ($(all-built-dso:=.phdr)): New static pattern rule.
43688         (generated): Add those targets.
43689         * elf/check-execstack.c: File removed.
43691         * scripts/check-textrel.awk: New file.
43692         * elf/Makefile ($(objpfx)check-textrel): Target removed.
43693         (check-textrel-CFLAGS): Variable removed.
43694         (all-built-dso): Use := to define.o
43695         ($(all-built-dso:=.dyn)): New static pattern rule.
43696         (generated): Add those targets.
43697         ($(objpfx)check-textrel.out): Use the script on the .dyn files.
43698         * config.make.in (READELF): New substituted variable.
43699         * elf/check-textrel.c: File removed.
43701 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
43703         * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
43704         allow.
43705         * conform/data/ctype.h-data [C99-based standards] (isblank):
43706         Expect function.
43707         (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
43708         (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
43709         [ISO || ISO99 || ISO11] (*_t): Do not allow.
43710         * conform/data/errno.h-data (EDOM): Use macro-int-constant.
43711         Specify type.  Require positive value.
43712         (EILSEQ): Likewise.
43713         (ERANGE): Likewise.
43714         [ISO || POSIX] (EILSEQ): Do not expect.
43715         [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
43716         Specify type.  Require positive value.
43717         [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
43718         [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
43719         [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
43720         [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
43721         [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
43722         [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
43723         [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
43724         [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
43725         [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
43726         [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
43727         [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
43728         [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
43729         [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
43730         [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
43731         [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
43732         [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
43733         [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
43734         [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
43735         [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
43736         [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
43737         [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
43738         [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
43739         [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
43740         [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
43741         [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
43742         [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
43743         [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
43744         [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
43745         [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
43746         [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
43747         [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
43748         [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
43749         [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
43750         [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
43751         [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
43752         [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
43753         [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
43754         [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
43755         [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
43756         [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
43757         [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
43758         [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
43759         [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
43760         [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
43761         [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
43762         [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
43763         [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
43764         [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
43765         [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
43766         [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
43767         [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
43768         [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
43769         [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
43770         [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
43771         [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
43772         [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
43773         [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
43774         [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
43775         [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
43776         [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
43777         [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
43778         [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
43779         [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
43780         [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
43781         [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
43782         [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
43783         [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
43784         [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
43785         [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
43786         [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
43787         [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
43788         [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
43789         [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
43790         [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
43791         [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
43792         [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
43793         * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
43794         Require >= 2.
43795         (FLT_ROUNDS): Expect as macro, not constant.
43796         (FLT_MANT_DIG): Use macro-int-constant.
43797         (DBL_MANT_DIG): Likewise.
43798         (LDBL_MANT_DIG): Likewise.
43799         (FLT_DIG): Likewise.
43800         (DBL_DIG): Likewise.
43801         (LDBL_DIG): Likewise.
43802         (FLT_MIN_EXP): Use macro-int-constant.  Require < 0.
43803         (DBL_MIN_EXP): Likewise.
43804         (LDBL_MIN_EXP): Likewise.
43805         (FLT_MAX_EXP): Use macro-int-constant.
43806         (DBL_MAX_EXP): Likewise.
43807         (LDBL_MAX_EXP): Likewise.
43808         (FLT_MAX_10_EXP): Likewise.
43809         (DBL_MAX_10_EXP): Likewise.
43810         (LDBL_MAX_10_EXP): Likewise.
43811         (FLT_MAX): Use macro-constant.
43812         (DBL_MAX): Likewise.
43813         (LDBL_MAX): Likewise.
43814         (FLT_EPSILON): Use macro-constant.  Give upper bound.
43815         (DBL_EPSILON): Likewise.
43816         (LDBL_EPSILON): Likewise.
43817         (FLT_MIN): Likewise.
43818         (DBL_MIN): Likewise.
43819         (LDBL_MIN): Likewise.
43820         [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
43821         [C99-based standards] (FLT_EVAL_METHOD): Likewise.
43822         [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
43823         [ISO11] (FLT_HAS_SUBNORM): Likewise.
43824         [ISO11] (LDBL_HAS_SUBNORM): Likewise.
43825         [ISO11] (DBL_DECIMAL_DIG): Likewise.
43826         [ISO11] (FLT_DECIMAL_DIG): Likewise.
43827         [ISO11] (LDBL_DECIMAL_DIG): Likewise.
43828         [ISO11] (DBL_TRUE_MIN): Use macro-constant.
43829         [ISO11] (FLT_TRUE_MIN): Likewise.
43830         [ISO11] (LDBL_TRUE_MIN): Likewise.
43831         [ISO || ISO99 || ISO11] (*_t): Do not allow.
43832         * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
43833         (SCHAR_MIN): Use macro-int-constant.  Specify type.
43834         (SCHAR_MAX): Likewise.
43835         (UCHAR_MAX): Likewise.
43836         (CHAR_MIN): Likewise.
43837         (CHAR_MAX): Likewise.
43838         (MB_LEN_MAX): Use macro-int-constant.
43839         (SHRT_MIN): Use macro-int-constant.  Specify type.
43840         (SHRT_MAX): Likewise.
43841         (USHRT_MAX): Likewise.
43842         (INT_MAX): Likewise.
43843         (INT_MIN): Use macro-int-constant.  Specify type.  Make upper
43844         bound negative.
43845         (UINT_MAX): Use macro-int-constant.  Specify type.  Suffix lower
43846         bound with "U".
43847         (LONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
43848         bound with "L".
43849         (LONG_MIN): Use macro-int-constant.  Specify type.  Make upper
43850         bound negative.  Suffix upper bound with "L".
43851         (ULONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
43852         bound with "UL".
43853         [C99-based standards] (LLONG_MIN): Use macro-int-constant.
43854         Specify type.
43855         [C99-based standards] (LLONG_MAX): Likewise.
43856         [C99-based standards] (ULLONG_MAX): Likewise.
43857         * conform/data/stddef.h-data (NULL): Use macro-constant.  Require
43858         == 0.
43859         [ISO11] (max_align_t): Require type.
43860         [ISO || ISO99 || ISO11] (*_t): Do not allow.
43862         * conform/conformtest.pl ($CFLAGS_namespace): Define separately
43863         from $CFLAGS, without defining away __attribute__ calls.
43864         (checknamespace): Use $CFLAGS_namespace.
43866         * conform/conformtest.pl (@keywords): Only include C99 keywords
43867         for standards based on C99 or C11.
43869         * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
43870         Disable tests.
43871         * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
43872         UNIX98]: Likewise.
43874         * conform/conformtest.pl: Handle "macro-int-constant" and test for
43875         usability of symbols in #if.
43877         * conform/conformtest.pl: If macro or constant types start
43878         "promoted:", expect the symbol to be of the following type
43879         promoted by the integer promotions.
43881         * conform/conformtest.pl: Parse all "constant" and "macro" lines
43882         in one place.  Also handle "macro-constant".
43884         * conform/conformtest.pl: Only accept expected macro values with
43885         "==".  Parse all "macro" lines in one place.
43886         * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
43888         * conform/conformtest.pl: Handle braced types on "constant" lines
43889         instead of handling "typed-constant".
43890         * conform/data/signal.h-data: Use "constant" instead of
43891         "typed-constant".
43893         * conform/conformtest.pl: Handle "optional-" at start of lines in
43894         one place rather than duplicating several cases.  Handle each
43895         format of "macro" line with initial "optional-".
43897         * conform/conformtest.pl: Only accept expected constant or
43898         optional-constant values with "==".  Parse all "constant" lines in
43899         one place.  Parse all "optional-constant" lines in one place.
43900         * conform/data/cpio.h-data: Use "==" form on "constant" lines.
43901         * conform/data/fmtmsg.h-data: Likewise.
43902         * conform/data/netinet/in.h-data: Likewise.
43903         * conform/data/tar.h-data: Likewise.
43904         * conform/data/limits.h-data: Use "==" form on "constant" and
43905         "optional-constant" lines.
43907         * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
43908         Use -std=c99 for XOPEN2K.
43909         (@knownproblems): Remove.
43910         (newtoken): Don't check %isknown.
43912         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
43913         Do not expect macro.
43914         [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
43915         [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
43916         [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
43917         [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
43918         [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
43919         [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
43920         [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
43921         [XPG3 || XPG4 || UNIX98] (isless): Likewise.
43922         [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
43923         [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
43924         [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
43925         [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
43926         [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
43927         [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
43928         [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
43929         [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
43930         [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
43931         [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
43932         [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
43933         [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
43934         [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
43935         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
43936         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
43937         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
43938         [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
43939         [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
43940         [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
43941         [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
43942         [XPG3 || XPG4 || UNIX98] (log2): Likewise.
43943         [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
43944         [XPG3] (acosh): Likewise.
43945         [XPG3] (asinh): Likewise.
43946         [XPG3] (atanh): Likewise.
43947         [XPG3] (cbrt): Likewise.
43948         [XPG3] (expm1): Likewise.
43949         [XPG3] (ilogb): Likewise.
43950         [XPG3] (log1p): Likewise.
43951         [XPG3] (logb): Likewise.
43952         [XPG3] (nextafter): Likewise.
43953         [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
43954         [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
43955         [XPG3] (remainder): Likewise.
43956         [XPG3] (rint): Likewise.
43957         [XPG3 || XPG4 || UNIX98] (round): Likewise.
43958         [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
43959         [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
43960         [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
43961         [XPG3 || XPG4 || UNIX98] (lround): Likewise.
43962         [XPG3 || XPG4 || UNIX98] (llround): Likewise.
43963         [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
43964         [UNIX98 || XOPEN2K] (scalb): Expect.
43965         [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
43966         [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
43967         [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
43968         [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
43969         [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
43970         [XPG3 || XPG4 || UNIX98] (fma): Likewise.
43971         [XPG3 || XPG4 || UNIX98] (nan): Likewise.
43972         [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
43973         [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
43974         [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
43975         [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
43976         [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
43977         [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
43978         [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
43979         [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
43980         [XPG3 || XPG4 || UNIX98] (expf): Likewise.
43981         [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
43982         [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
43983         [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
43984         [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
43985         [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
43986         [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
43987         [XPG3 || XPG4 || UNIX98] (logf): Likewise.
43988         [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
43989         [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
43990         [XPG3 || XPG4 || UNIX98] (modff): Likewise.
43991         [XPG3 || XPG4 || UNIX98] (powf): Likewise.
43992         [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
43993         [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
43994         [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
43995         [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
43996         [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
43997         [XPG3 || XPG4 || UNIX98] (erff): Likewise.
43998         [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
43999         [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
44000         [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
44001         [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
44002         [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
44003         [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
44004         [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
44005         [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
44006         [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
44007         [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
44008         [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
44009         [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
44010         [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
44011         [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
44012         [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
44013         [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
44014         [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
44015         [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
44016         [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
44017         [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
44018         [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
44019         [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
44020         [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
44021         [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
44022         [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
44023         [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
44024         [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
44025         [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
44026         [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
44027         [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
44028         [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
44029         [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
44030         [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
44031         [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
44032         [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
44033         [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
44034         [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
44035         [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
44036         [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
44037         [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
44038         [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
44039         [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
44040         [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
44041         [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
44042         [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
44043         [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
44044         [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
44045         [XPG3 || XPG4 || UNIX98] (expl): Likewise.
44046         [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
44047         [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
44048         [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
44049         [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
44050         [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
44051         [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
44052         [XPG3 || XPG4 || UNIX98] (logl): Likewise.
44053         [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
44054         [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
44055         [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
44056         [XPG3 || XPG4 || UNIX98] (powl): Likewise.
44057         [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
44058         [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
44059         [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
44060         [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
44061         [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
44062         [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
44063         [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
44064         [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
44065         [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
44066         [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
44067         [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
44068         [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
44069         [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
44070         [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
44071         [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
44072         [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
44073         [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
44074         [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
44075         [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
44076         [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
44077         [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
44078         [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
44079         [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
44080         [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
44081         [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
44082         [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
44083         [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
44084         [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
44085         [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
44086         [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
44087         [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
44088         [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
44089         [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
44090         [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
44091         [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
44092         [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
44093         [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
44094         [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
44095         [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
44096         [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
44097         [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
44098         [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
44099         [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
44100         [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
44101         [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
44103         * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
44104         _XOPEN_SOURCE_EXTENDED for XPG4.
44106         * conform/conformtest.pl: Handle "symbol" lines for allow-header.
44108         * Makeconfig (localtime): Remove variable.
44109         (inst_localtime-file): Likewise.
44111 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
44113         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
44114         Update.
44115         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
44116         Update.
44117         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
44118         Update.
44119         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
44120         Update.
44121         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
44122         Update.
44123         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
44124         Update.
44125         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
44126         Update.
44127         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
44128         Update.
44129         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
44130         Update.
44132 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
44134         [BZ #2550]
44135         [BZ #2570]
44136         * math/s_nexttowardf.c (__nexttowardf): Use floating-point
44137         comparisons to determine direction to adjust input.
44138         * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
44139         * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
44140         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
44141         Likewise.
44142         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
44143         Likewise.
44144         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
44145         Likewise.
44146         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
44147         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
44148         Likewise.
44149         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
44150         Likewise.
44151         * math/libm-test.inc (nexttoward_test): Add more tests.
44153 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
44155         [BZ #14040]
44156         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
44157         in version GLIBC_2.1, not GLIBC_2.0.
44158         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
44159         Likewise.
44161 2012-04-30  Joseph Myers  <joseph@codesourcery.com>
44163         [BZ #13942]
44164         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
44165         (1 - x) * (1 + x).
44166         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
44167         * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
44168         * math/libm-test.inc (acos_test): Add more tests.
44169         (asin_test): Likewise.
44170         * sysdeps/i386/fpu/libm-test-ulps: Update.
44171         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44173         [BZ #14034]
44174         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
44175         of square root.
44176         * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
44177         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
44178         * math/libm-test.inc (acos_test_tonearest): New function.
44179         (acos_test_towardzero): Likewise.
44180         (acos_test_downward): Likewise.
44181         (acos_test_upward): Likewise.
44182         (asin_test_tonearest): Likewise.
44183         (asin_test_towardzero): Likewise.
44184         (asin_test_downward): Likewise.
44185         (asin_test_upward): Likewise.
44186         (main): Call the new functions.
44187         * sysdeps/i386/fpu/libm-test-ulps: Update.
44188         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
44190         [BZ #13884]
44191         [BZ #13924]
44192         * math/e_exp10.c: Include <float.h>.
44193         (__ieee754_exp10): Handle underflow here rather than multiplying
44194         large negative argument by M_LN10.
44195         * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
44196         of __ieee754_expf.
44197         * math/e_exp10l.c: Include <float.h>.
44198         (__ieee754_exp10l): Handle underflow here rather than multiplying
44199         large negative argument by M_LN10l.
44200         * math/libm-test.inc (exp10_test): Add another test.  Do not allow
44201         spurious overflow exception on underflow.
44203 2012-04-29  Marek Polacek  <polacek@redhat.com>
44205         * misc/sys/cdefs.h (__attribute_artificial__): New macro.
44206         (__fortify_function): New macro.
44207         (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
44208         * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
44209         __extern_always_inline.
44210         * libio/bits/stdio2.h: Likewise.
44211         * libio/bits/stdio.h: Likewise.
44212         * string/string.h: Likewise.
44213         * string/bits/string3.h: Likewise.
44214         * include/stdio.h: Likewise.
44215         * stdlib/bits/stdlib.h: Likewise.
44216         * stdlib/stdlib.h: Likewise.
44217         * rt/bits/mqueue2.h: Likewise.
44218         * rt/mqueue.h: Likewise.
44219         * posix/bits/unistd.h: Likewise.
44220         * posix/unistd.h: Likewise.
44221         * io/bits/poll2.h: Likewise.
44222         * io/bits/fcntl2.h: Likewise.
44223         * io/fcntl.h: Likewise.
44224         * io/sys/poll.h: Likewise.
44225         * misc/bits/syslog.h: Likewise.
44226         * misc/bits/syslog-ldbl.h: Likewise.
44227         * misc/sys/syslog.h: Likewise.
44228         * socket/bits/socket2.h: Likewise.
44229         * socket/sys/socket.h: Likewise.
44230         * debug/tst-chk1.c: Likewise.
44231         * wcsmbs/bits/wchar2.h: Likewise.
44232         * wcsmbs/bits/wchar-ldbl.h: Likewise.
44233         * wcsmbs/wchar.h: Likewise.
44235 2012-04-29  Andreas Jaeger  <aj@suse.de>
44237         * Makerules (tests): Remove enable-check-abi protection.
44238         (check-abi-warn): Remove.
44239         (check-abi-%): Remove check-abi-warn usage.
44241         * configure.in: Remove check-abi configure option.
44242         * configure: Regenerated.
44243         * config.make.in (enable-check-abi): Remove.
44245 2012-04-28  Andreas Schwab  <schwab@linux-m68k.org>
44247         [BZ #14033]
44248         * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
44249         double functions to double *_finite functions.
44251         [BZ #13941]
44252         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
44253         (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
44254         LDBL_MIN_EXP.
44255         * stdio-common/Makefile (tests): Add tst-sprintf3.
44256         * stdio-common/tst-sprintf3.c: New file.
44258         * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
44259         ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
44261 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
44263         * conform/conformtest.pl: Remove duplicate typed-constant
44264         handling.
44266 2012-04-28  David S. Miller  <davem@davemloft.net>
44268         * Makerules (%.abilist): Add vpath on sysdep_dirs.
44269         (check-abi-%): Remove AWK script prerequisite and explicit
44270         abilist directory.
44271         (check-abi): Rewrite to just diff the symlist with the abilist.
44272         (config-tls, config-abi-config): Delete, no longer used.
44273         (update-abi-%): Remove AWK script and explicit abilist directory.
44274         (update-abi): Rewrite to simply compare and conditionally copy the
44275         symlist and the sysdep abilist file.  Remove update-abi-config
44276         checks.
44277         * abilist/ld.abilist: Remove.
44278         * abilist/libBrokenLocale.abilist: Remove.
44279         * abilist/libanl.abilist: Remove.
44280         * abilist/libcrypt.abilist: Remove.
44281         * abilist/libdl.abilist: Remove.
44282         * abilist/librt.abilist: Remove.
44283         * abilist/libthread_db.abilist: Remove.
44284         * abilist/libutil.abilist: Remove.
44285         * scripts/extract-abilist.awk: Remove.
44286         * scripts/merge-abilist.awk: Remove.
44287         * sysdeps/generic/libcidn.abilist: New file.
44288         * sysdeps/generic/libnss_compat.abilist: New file.
44289         * sysdeps/generic/libnss_db.abilist: New file.
44290         * sysdeps/generic/libnss_dns.abilist: New file.
44291         * sysdeps/generic/libnss_files.abilist: New file.
44292         * sysdeps/generic/libnss_hesiod.abilist: New file.
44293         * sysdeps/generic/libnss_nis.abilist: New file.
44294         * sysdeps/generic/libnss_nisplus.abilist: New file.
44295         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
44296         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
44297         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
44298         file.
44299         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
44300         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
44301         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
44302         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
44303         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
44304         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
44305         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
44306         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
44307         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
44308         file.
44309         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
44310         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
44311         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
44312         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
44313         file.
44314         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
44315         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
44316         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
44317         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
44318         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
44319         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
44320         file.
44321         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
44322         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
44323         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
44324         file.
44325         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
44326         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
44327         New file.
44328         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
44329         New file.
44330         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
44331         New file.
44332         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
44333         New file.
44334         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
44335         New file.
44336         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
44337         New file.
44338         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
44339         New file.
44340         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
44341         New file.
44342         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
44343         New file.
44344         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
44345         New file.
44346         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
44347         New file.
44348         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
44349         New file.
44350         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
44351         New file.
44352         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
44353         file.
44354         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
44355         New file.
44356         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
44357         New file.
44358         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
44359         file.
44360         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
44361         New file.
44362         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
44363         New file.
44364         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
44365         file.
44366         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
44367         New file.
44368         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
44369         New file.
44370         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
44371         New file.
44372         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
44373         New file.
44374         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
44375         New file.
44376         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
44377         New file.
44378         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
44379         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
44380         file.
44381         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
44382         New file.
44383         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
44384         file.
44385         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
44386         file.
44387         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
44388         file.
44389         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
44390         file.
44391         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
44392         file.
44393         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
44394         New file.
44395         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
44396         file.
44397         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
44398         file.
44399         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
44400         New file.
44401         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
44402         file.
44403         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
44404         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
44405         file.
44406         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
44407         New file.
44408         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
44409         file.
44410         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
44411         file.
44412         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
44413         file.
44414         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
44415         file.
44416         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
44417         file.
44418         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
44419         New file.
44420         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
44421         file.
44422         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
44423         file.
44424         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
44425         New file.
44426         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
44427         file.
44428         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
44429         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
44430         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
44431         file.
44432         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
44433         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
44434         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
44435         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
44436         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
44437         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
44438         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
44439         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
44440         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
44441         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
44442         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
44443         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
44444         file.
44445         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
44446         New file.
44447         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
44448         file.
44449         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
44450         file.
44451         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
44452         file.
44453         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
44454         file.
44455         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
44456         file.
44457         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
44458         New file.
44459         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
44460         New file.
44461         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
44462         file.
44463         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
44464         New file.
44465         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
44466         file.
44467         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
44468         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
44469         file.
44470         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
44471         New file.
44472         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
44473         file.
44474         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
44475         file.
44476         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
44477         file.
44478         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
44479         file.
44480         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
44481         file.
44482         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
44483         New file.
44484         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
44485         New file.
44486         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
44487         file.
44488         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
44489         New file.
44490         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
44491         file.
44493 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
44495         * conform/conformtest.pl: Fix typo in handling typed-constant from
44496         allow-header.
44498 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
44500         * README: Cut down references to pre-2.6 Linux kernels and
44501         Linuxthreads.  Update lists of configurations in libc and ports
44502         and sort alphabetically.  Say "or newer" with Linux kernel version
44503         requirements.
44505         * config.h.in [IS_IN_build]: Allow compiling without optimization.
44507 2012-04-27  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
44509         [BZ #887]
44510         * math/libm-test.inc (logb_test_downward): New test to expose
44511         erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
44512         rounding mode.
44514 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
44516         [BZ #14027]
44517         * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
44518         to be done.
44519         * math/fraiseexcpt.c (__feraiseexcept): Likewise.
44520         * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
44522 2012-04-26  Joseph Myers  <joseph@codesourcery.com>
44524         * sysdeps/unix/i386/brk.S: Remove file.
44525         * sysdeps/unix/i386/dl-brk.S: Likewise.
44526         * sysdeps/unix/i386/pipe.S: Likewise.
44527         * sysdeps/unix/i386/sigreturn.S: Likewise.
44528         * sysdeps/unix/i386/syscall.S: Likewise.
44529         * sysdeps/unix/i386/vfork.S: Likewise.
44530         * sysdeps/unix/i386/wait.S: Likewise.
44532         * sysdeps/unix/common/tcsendbrk.c: Move to ...
44533         * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
44535         * configure.in (arm*-none*): Do not allow without
44536         --enable-hacker-mode.
44537         (netbsd*): Remove case setting base_os.
44538         (386bsd*): Likewise.
44539         (freebsd*): Likewise.
44540         (bsdi*): Likewise.
44541         (osf*): Likewise.
44542         (sunos*): Likewise.
44543         (ultrix*): Likewise.
44544         (newsos*): Likewise.
44545         (dynix*): Likewise.
44546         (*bsd*): Likewise.
44547         (sysv*): Likewise.
44548         (isc*): Likewise.
44549         (esix*): Likewise.
44550         (sco*): Likewise.
44551         (minix*): Likewise.
44552         (irix4*): Likewise.
44553         (irix6*): Likewise.
44554         (solaris[2-9]*): Likewise.
44555         (none): Likewise.
44556         * configure: Regenerated.
44558 2012-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44560         [BZ #11521]
44561         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
44562         overflow or cancellation in calculating denominator.
44563         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
44564         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
44565         down expression to avoid unexpected rounding in newer GCCs.
44566         * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
44568 2012-04-26  David S. Miller  <davem@davemloft.net>
44570         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
44571         long-double compat symbols.
44572         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
44573         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
44574         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
44575         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
44576         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
44577         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
44578         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
44579         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
44580         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
44581         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
44582         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
44583         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
44584         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
44586 2012-04-25  David S. Miller  <davem@davemloft.net>
44588         * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
44589         HWCAP_* values only after the memory barriers have been defined.
44590         (atomic_full_barrier): Define.
44591         (atomic_read_barrier): Define.
44592         (atomic_write_barrier): Define.
44594 2012-04-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
44596         * shlib-versions: Add libgcc_s version information.
44597         * sysdeps/generic/libgcc_s.h: Remove.
44598         * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
44599         libgcc_s.h.
44600         * sysdeps/gnu/unwind-resume.c: Likewise.
44601         * scripts/test-installation.pl: Remove libgcc_s from link_libs.
44603 2012-04-25  David S. Miller  <davem@davemloft.net>
44605         * sysdeps/unix/sparc/brk.S: Delete.
44606         * sysdeps/unix/sparc/dl-brk.S: Delete.
44607         * sysdeps/unix/sparc/pipe.S: Delete.
44608         * sysdeps/unix/sparc/sysdep.S: Delete.
44609         * sysdeps/unix/sparc/sysdep.h: Delete.
44610         * sysdeps/unix/sparc/vfork.S: Delete.
44611         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
44612         (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
44613         * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
44614         (ret_ERRVAL, r0, r1, MOVE): Define.
44615         (JUMPTARGET): Remove.
44616         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
44617         sysdeps/unix/sparc/sysdep.h
44618         (ENTRY, END): Remove.
44619         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
44621 2012-04-25  Joseph Myers  <joseph@codesourcery.com>
44623         * Makerules (native-compile): Use $(BUILD_LDFLAGS).
44624         (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
44625         -DIS_IN_build.
44627         * timezone/README: Update upstream location and email address for
44628         tzcode and tzdata.
44629         * timezone/zdump.c: Update from tzcode 2012b.
44630         * timezone/zic.c: Likewise.
44632         * configure.in (libc_cv_as_needed): Remove test.
44633         * configure: Regenerated.
44634         * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
44635         conditional definition.
44636         [$(have-as-needed) != yes] (no-as-needed): Likewise.
44637         [$(have-as-needed) != yes] (libgcc_eh): Likewise.
44638         * config.make.in (have-as-needed): Remove variable.
44640 2012-04-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
44641             Paul Pluzhnikov  <ppluzhnikov@google.com>
44643         * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
44644         strings correctly.
44646 2012-04-25  Chung-Lin Tang  <cltang@codesourcery.com>
44648         * sysdeps/sh/memcpy.S: Remove include of endian.h, change
44649         preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
44650         * sysdeps/sh/strlen.S: Likewise.
44652 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
44654         * sysdeps/unix/fork.S: Remove file.
44655         * sysdeps/unix/i386/fork.S: Likewise.
44656         * sysdeps/unix/sparc/fork.S: Likewise.
44658         * sysdeps/unix/system.c: Remove file.
44659         * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
44661         * sysdeps/unix/getegid.S: Remove file.
44662         * sysdeps/unix/geteuid.S: Likewise.
44664 2012-04-24  Roland McGrath  <roland@hack.frob.com>
44666         * scripts/check-localplt.awk: New file.
44667         * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
44668         of diff.
44669         * scripts/data/localplt-generic.data: Add a comment.
44671         * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
44672         NODE when __dir_mkfile failed.
44673         * sysdeps/mach/hurd/symlinkat.c: Likewise.
44674         Reported by Ludovic Courtès <ludo@gnu.org>.
44676 2012-04-24  Andreas Jaeger  <aj@suse.de>
44678         * Makerules (common-clean): Also remove gen-as-const-headers
44679         files.
44681 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
44683         * Makerules (native-compile): Do not change working directory for
44684         build.  Use $(OUTPUT_OPTION) in command.
44685         (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
44687 2012-04-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44689         [BZ #13886]
44690         * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
44691         sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
44692         * math/libm-test.inc (floor_test): Add more tests.
44693         * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
44695 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
44697         * sysdeps/unix/getdents.c: Remove file.
44698         * sysdeps/unix/sysv/getdents.c: Likewise.
44699         * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
44701         * sysdeps/unix/syscalls.list (madvise): Add syscall from
44702         sysdeps/unix/mman/syscalls.list.
44703         (mmap): Likewise.
44704         (mprotect): Likewise.
44705         (msync): Likewise.
44706         (munmap): Likewise.
44707         * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
44708         * sysdeps/unix/mman/syscalls.list: Remove.
44709         * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
44711         * configure.in (libc_cv_libgcc_s_suffix): Remove test.
44712         (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
44713         * configure: Regenerated.
44714         * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
44715         $(libgcc_s_suffix).
44716         * config.make.in (libgcc_s_suffix): Remove variable.
44718 2012-04-23  Joseph Myers  <joseph@codesourcery.com>
44720         * sysdeps/unix/sysv/gethostname.c: Move to ...
44721         * sysdeps/posix/gethostname.c: ... here.
44723         * sysdeps/unix/execve.S: Remove file.
44725         * sysdeps/unix/_exit.S: Remove file.
44727 2012-04-23  Andreas Jaeger  <aj@suse.de>
44729         [BZ #13739]
44730         * manual/Makefile: Remove make dist support, there's no
44731         need for a stand-alone documentation tar ball.
44732         (TEXI2DVI): Define always, it's not in Makeconfig.
44733         (dist): Removed.
44734         (tar-it): Removed.
44735         (edition): Removed.
44736         (glibc-doc-$(edition).tar): Removed
44737         (%.Z): Removed.
44738         (%.gz): Removed.
44739         (%.uu): Removed.
44740         (ETAGS): Remove, it's in Makeconfig.
44741         (move-if-change): Remove, it's in Makeconfig.
44743 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
44745         [BZ #13970]
44746         * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
44747         (strtod, strtof, strtold, strtol, strtoul, strtoq)
44748         (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
44749         (strtod_l, strtof_l, strtold_l): Remove __wur.
44750         It is not necessarily an error to ignore strtol's return value.
44751         One can reliably look at the stored endptr to decide whether
44752         the number had valid syntax.
44754 2012-04-21  Andreas Jaeger  <aj@suse.de>
44756         [BZ #13739]
44757         * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
44759 2012-04-21  Joseph Myers  <joseph@codesourcery.com>
44761         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
44762         * sysdeps/unix/sysv/Versions: Remove file.
44764 2012-04-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
44766         [BZ #13927]
44767         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
44769 2012-04-21  Nick Alcock  <nick.alcock@oracle.com>
44771         [BZ #7064]
44772         * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
44773         version from __vm86.
44775 2012-04-20  Joseph Myers  <joseph@codesourcery.com>
44777         * sysdeps/unix/common/lxstat.c: Remove file.
44778         * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
44780         * sysdeps/unix/sysv/Makefile: Remove file.
44782         * sysdeps/unix/sysv/direct.h: Remove file.
44784         * sysdeps/unix/sysv/bits/dirent.h: Remove file.
44785         * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
44786         * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
44787         * sysdeps/unix/sysv/bits/signum.h: Likewise.
44788         * sysdeps/unix/sysv/bits/stat.h: Likewise.
44789         * sysdeps/unix/sysv/bits/utmp.h: Likewise.
44790         * sysdeps/unix/sysv/bits/utsname.h: Likewise.
44792         * sysdeps/unix/sysv/setrlimit.c: Remove file.
44794         * sysdeps/unix/xmknod.c: Remove file.
44795         * sysdeps/unix/syscalls.list (sys_mknod): Remove.
44797         * sysdeps/unix/sysv/settimeofday.c: Remove file.
44799         * sysdeps/unix/sysv/i386/time.S: Remove file.
44801         * sysdeps/unix/fxstat.c: Remove file.
44802         * sysdeps/unix/xstat.c: Likewise.
44803         * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
44805         * sysdeps/unix/sysv/sigaction.c: Remove file.
44807         * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
44808         (sysdep_headers): Remove variable.
44809         [termio.h not in sysdep_headers] (generated): Likewise.
44810         [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
44811         * sysdeps/unix/sysv/sysv_termio.h: Remove file.
44812         * sysdeps/unix/sysv/tcdrain.c: Likewise.
44813         * sysdeps/unix/sysv/tcflow.c: Likewise.
44814         * sysdeps/unix/sysv/tcflush.c: Likewise.
44815         * sysdeps/unix/sysv/tcgetattr.c: Likewise.
44816         * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
44817         * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
44818         * sysdeps/unix/sysv/tcsetattr.c: Likewise.
44819         * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
44821         * sysdeps/unix/siglist.c: Remove file.
44823         * sysdeps/unix/getppid.S: Remove file.
44825         * sysdeps/unix/mkdir.c: Remove file.
44826         * sysdeps/unix/rmdir.c: Likewise.
44828 2012-04-19  Andreas Schwab  <schwab@linux-m68k.org>
44830         * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
44831         ERR_MAX value.
44832         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
44833         errlist-compat value.
44835 2012-04-18  David S. Miller  <davem@davemloft.net>
44837         * sysdeps/generic/memcopy.h (reg_char): Delete.
44838         * debug/strcat_chk.c: Use char, not reg_char.
44839         * debug/strcpy_chk.c: Likewise.
44840         * debug/strncat_chk.c: Likewise.
44841         * debug/strncpy_chk.c: Likewise.
44842         * string/memchr.c: Likewise.
44843         * string/memrchr.c: Likewise.
44844         * string/rawmemchr.c: Likewise.
44845         * string/strcat.c: Likewise.
44846         * string/strchr.c: Likewise.
44847         * string/strchrnul.c: Likewise.
44848         * string/strcmp.c: Likewise.
44849         * string/strcpy.c: Likewise.
44850         * string/strncat.c: Likewise.
44851         * string/strncmp.c: Likewise.
44852         * string/strncpy.c: Likewise.
44854 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
44856         * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
44857         __builtin_memcopy is called when src and dest ranges are known to not
44858         overlap.
44860 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
44862         * sysdeps/powerpc/powerpc64/power6/wordcopy.c
44863         (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
44864         fwd_align_merge macro call.
44865         (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
44866         bwd_align_merge macro call.
44867         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
44869 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
44871         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
44872         bwd_align_merge macros.
44873         (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
44874         (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
44875         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
44877 2012-04-18  David S. Miller  <davem@davemloft.net>
44879         * sysdeps/sparc/sparc64/memcopy.h: Delete.
44881 2012-04-18  Andreas Jaeger  <aj@suse.de>
44883         [BZ# 6794]
44884         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
44885         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
44886         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
44888         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
44889         * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
44890         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
44892         * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
44893         * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
44894         Adjust for changed ldbl-128 files.
44896         * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
44897         * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
44898         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
44900 2012-04-17  David S. Miller  <davem@davemloft.net>
44902         * sysdeps/sparc/sparc32/memcopy.h: Delete.
44904 2012-04-17  Andreas Schwab  <schwab@linux-m68k.org>
44906         * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
44907         * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
44908         * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
44909         * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
44910         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
44911         * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
44913 2012-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44915         [BZ #6794]
44916         * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
44917         * math/libm-test.inc: Add ilogb errno and exception tests.
44918         * math/w_ilogb.c: New file: ilogb wrapper.
44919         * math/w_ilogbf.c: New file: ilogbf wrapper.
44920         * math/w_ilogbl.c: New file: ilogbl wrapper.
44921         * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
44922         * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
44923         * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
44924         exception being thrown with 0.0 as argument.
44925         * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
44926         * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
44927         exception being thrown with 0.0 as argument.
44928         * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
44929         * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
44930         exception being thrown with 0.0 as argument.
44931         * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
44932         * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
44933         exception being thrown with 0.0 as argument.
44934         * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
44935         * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
44936         * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
44937         * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
44938         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
44939         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
44940         * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
44941         * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
44942         * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
44944 2012-04-17  Petr Baudis  <pasky@ucw.cz>
44946         * include/sys/uio.h: Change __vector to __iovec to avoid clash
44947         with altivec.
44949 2012-04-16  Marek Polacek  <polacek@redhat.com>
44951         * elf/pldd-xx.c: Rename static_assert to pldd_assert.
44953 2012-04-16  Marek Polacek  <polacek@redhat.com>
44955         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
44956         operands of fdivp instruction.
44958 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
44960         * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
44961         * elf/tst-auditmod3b.c: Likewise.
44962         * elf/tst-auditmod4b.c: Likewise.
44963         * elf/tst-auditmod5b.c: Likewise.
44964         * elf/tst-auditmod6b.c: Likewise.
44965         * elf/tst-auditmod6c.c: Likewise.
44966         * elf/tst-auditmod7b.c: Likewise.
44967         * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
44968         * sysdeps/x86_64/preconfigure.in: Likewise.
44969         * sysdeps/x86_64/preconfigure: Regenerated.
44971 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
44973         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
44974         __ILP32__.
44976 2012-04-13  Antoine Balestrat <merkil33@gmail.com>
44978         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
44979         (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
44981 2012-04-13  Chris Leonard  <cjlhomeaddress@gmail.com>
44983         [BZ #13973]
44984         * locale/iso-639.def: Fix gl language name. Spotted by
44985         Yaron Shahrabani.
44987 2012-04-12  Roland McGrath  <roland@hack.frob.com>
44989         [BZ #2074]
44990         * libio/libio.h (__io_write_fn): Update comment.
44992 2012-04-12  Petr Baudis  <pasky@ucw.cz>
44994         [BZ #2074]
44995         * stdio.texi (Hook Functions): The user provided writer function
44996         is not allowed to return -1.
44998 2012-04-11  David S. Miller  <davem@davemloft.net>
45000         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45002 2012-04-11  Mike Frysinger  <vapier@gentoo.org>
45004         * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
45005         Add a leading slash to rtkaio.
45007 2012-04-11  Jim Meyering  <meyering@redhat.com>
45009         [BZ #11959]
45010         * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
45011         It is not necessarily an error to ignore fwrite's return
45012         value.  One can reliably use ferror to test for errors after
45013         the fact.
45015 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
45017         * bits/types.h (__snseconds_t): New type.
45018         * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
45020         * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
45021         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
45022         (__SNSECONDS_T_TYPE): Likewise.
45023         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
45024         (__SNSECONDS_T_TYPE): Likewise.
45025         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
45026         (__SNSECONDS_T_TYPE): Likewise.
45028 2012-04-10  Andreas Jaeger  <aj@suse.de>
45030         [BZ #2636]
45031         * manual/time.texi (Processor Time): Return type of times is
45032         elapsed real time since an arbitrary point in the past.
45033         (CPU Time): Move CLK_TCK from here...
45034         (Processor Time): ...to here.  Correct description.
45035         * manual/conf.texi (Constants for Sysconf): Correct description of
45036         _SC_CLK_TCK.
45038 2012-04-10  David S. Miller  <davem@davemloft.net>
45040         [BZ #13967]
45041         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
45042         where the is a gap between DT_REL(A) and DT_JMPREL.
45044 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
45046         * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
45047         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
45048         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
45050 2012-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
45052         * elf/dl-support.c (_dl_inhibit_cache): New variable.
45053         * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
45054         (dl_main): Handle --inhibit-cache.
45055         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
45056         _dl_inhibit_cache.
45057         * elf/dl-load.c (_dl_map_object): Use it.
45058         * elf/Makefile: Define SYSCONFDIR when building rtld.c.
45060 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
45062         [BZ #13872]
45063         * sysdeps/i386/fpu/e_powl.S (p78): New object.
45064         (__ieee754_powl): Saturate large exponents rather than testing for
45065         overflow of y*log2(x).
45066         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
45067         * math/libm-test.inc (pow_test): Do not permit spurious overflow
45068         exceptions.
45070         [BZ #11521]
45071         * math/s_ctan.c: Include <float.h>.
45072         (__ctan): Avoid internal overflow or cancellation in calculating
45073         denominator.
45074         * math/s_ctanf.c: Likewise.
45075         * math/s_ctanl.c: Likewise.
45076         * math/s_ctanh.c: Likewise.
45077         * math/s_ctanhf.c: Likewise.
45078         * math/s_ctanhl.c: Likewise.
45079         * math/libm-test.inc (ctan_test): Add more tests.
45080         (ctanh_test): Likewise.
45081         * sysdeps/i386/fpu/libm-test-ulps: Update.
45082         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45084 2012-04-09  Andreas Jaeger  <aj@suse.de>
45086         [BZ #6894]
45087         * manual/filesys.texi (Directory Entries): Mention that d_namlen
45088         is an optional BSD extension.
45090         [BZ #10254]
45091         * manual/stdio.texi (Opening Streams): Document additional fopen
45092         parameters.
45094 2012-04-09  Roland McGrath  <roland@hack.frob.com>
45096         * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
45097         %eax without telling the compiler.
45099 2012-04-09  Carlos O'Donell  <carlos_odonell@mentor.com>
45101         [BZ # 13963]
45102         * manual/install.texi: Use sourceware.org.
45104 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
45106         [BZ #13873]
45107         * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
45108         (__ieee754_pow): Generate overflow and underflow using huge*huge
45109         and tiny*tiny rather than just returning constant infinity or zero
45110         for large exponents.
45111         * math/libm-test.inc (pow_test): Require overflow exceptions for
45112         applicable cases of large exponents.
45114         [BZ #706]
45115         * sysdeps/i386/fpu/e_pow.S (p10): New object.
45116         (__ieee754_pow): Use iterative multiplication algorithm only for
45117         integer exponents with absolute value below 1024.  Check for odd
45118         integer exponents when using algorithm for real exponents.
45119         * math/libm-test.inc (pow_test): Add more tests.
45120         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
45122 2012-04-08  Joseph Myers  <joseph@codesourcery.com>
45124         [BZ #13705]
45125         * math/libm-test.inc (exp_test): Do not allow overflow exception
45126         on underflow test.
45128 2012-04-08  Aurelien Jarno  <aurelien@aurel32.net>
45130         [BZ #13705]
45131         * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
45132         instead of __kernel_standard_f.
45134 2012-04-08  Mike Frysinger  <vapier@gentoo.org>
45136         * sysdeps/i386/i686/memset_chk.S: Update copyright year.
45137         * sysdeps/x86_64/memset_chk.S: Likewise.
45139 2012-04-08  Andreas Jaeger  <aj@suse.de>
45141         [BZ #10153]
45142         * manual/startup.texi (Environment Access): Describe return value
45143         for putenv and setenv.
45145         [BZ #6895]
45146         * manual/filesys.texi (Directory Entries): Add description for
45147         DT_LNK.
45149         [BZ #6890]
45150         * manual/filesys.texi (Directory Entries): Clarify that it's file
45151         system not operating system in the description of DT_UNKNOWN.
45153         [BZ #6578]
45154         * manual/syslog.texi (closelog): Fix reference, it's openlog.
45156 2012-04-08  Stephen Compall  <s11@member.fsf.org>
45158         [BZ #6649]
45159         * manual/llio.texi (Opening and Closing Files): Add cross
45160         reference to explain mode argument.
45162 2012-04-07  Mike Frysinger  <vapier@gentoo.org>
45164         * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
45165         * sysdeps/x86_64/memset_chk.S: Likewise.
45167 2012-04-07  David S. Miller  <davem@davemloft.net>
45169         * elf/elf.h (R_SPARC_WDISP10): Define.
45170         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
45171         R_SPARC_SIZE32.
45172         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
45173         R_SPARC_SIZE64 and R_SPARC_H34.
45175 2012-04-07  Carlos O'Donell  <carlos_odonell@mentor.com>
45177         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
45178         conditions and remove no longer applicable assertion.
45180 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
45182         * bits/byteswap.h: Include <features.h>.
45183         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
45184         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
45186 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
45188         * bits/byteswap.h (__bswap_16): Removed.
45189         Include <bits/byteswap-16.h> to get __bswap_16.
45190         * sysdeps/i386/bits/byteswap.h: Likewise.
45191         * sysdeps/s390/bits/byteswap.h: Likewise.
45192         * sysdeps/x86_64/bits/byteswap.h: Likewise.
45193         * bits/byteswap-16.h: New file.
45194         * sysdeps/i386/bits/byteswap-16.h: Likewise.
45195         * sysdeps/s390/bits/byteswap-16.h: Likewise.
45196         * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
45197         * string/Makefile (headers): Add bits/byteswap-16.h.
45199 2012-04-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
45201         [BZ #13895]
45202         * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
45203         extra indirection.
45204         * nss/Makefile (tests-static, tests): Add tst-nss-static.
45205         * nss/tst-nss-static.c: New.
45207 2012-04-06  Robert Millan  <rmh@gnu.org>
45209         [BZ #6486]
45210         * manual/llio.texi (File Position Primitive): lseek
45211         refers to WHENCE when it really means OFFSET.
45213 2012-04-06  Andreas Jaeger  <aj@suse.de>
45215         * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
45216         strncmp declarations.
45218         * abilist/libc.abilist: Add __poll and __ppoll.
45220 2012-04-05  David S. Miller  <davem@davemloft.net>
45222         * scripts/check-local-headers.sh: Accept a host triplet in the
45223         path matched by the exclude regexp.
45225         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
45226         definition.
45227         * sysdeps/powerpc/powerpc32/dl-machine.h
45228         (ELF_MACHINE_PLTREL_OVERLAP): Delete.
45229         * sysdeps/s390/s390-32/dl-machine.h
45230         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
45231         * sysdeps/sparc/sparc32/dl-machine.h
45232         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
45233         * sysdeps/sparc/sparc64/dl-machine.h
45234         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
45236         * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
45237         lazy binding.
45238         * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
45239         undefined symbol errors.
45241         * elf/rtld.c (dl_main): Skip VDSO when checking for unused
45242         DT_NEEDED entries.
45244 2012-04-05  Michael Matz  <matz@suse.de>
45246         [BZ #13592]
45247         * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
45249 2012-04-05  Andreas Jaeger  <aj@suse.de>
45251         [BZ #13908]
45252         * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
45253         comment.
45255 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
45257         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
45258         which ROUND is no valid rounding mode.
45260 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
45262         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
45263         read again.
45264         * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
45266 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
45268         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
45269         an exception using FPU order intentionally.
45271 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
45273         * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
45274         * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
45275         * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
45276         * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
45278 2012-04-05  Simon Josefsson  <simon@josefsson.org>
45280         [BZ #12340]
45281         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
45282         EINVAL when BUFLEN is too smal.
45284 2012-04-05  Thomas Schwinge  <thomas@codesourcery.com>
45286         [BZ #13553]
45287         * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
45288         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
45290 2012-04-03  Andreas Jaeger  <aj@suse.de>
45292         [BZ #13938]
45293         * manual/setjmp.texi (System V contexts): Fix sentence.
45295         [BZ #13926]
45296         * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
45297         New macro for this case.
45298         [!__GNUC__] (__bswap_64): New inline function for this case.
45299         * sysdeps/x86_64/bits/byteswap.h: Likewise.
45300         * bits/byteswap.h: Likewise.
45301         * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
45302         ull, guard with __GLIBC_HAVE_LONG_LONG.
45304         * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
45305         __GLIBC_HAVE_LONG_LONG.
45307         * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
45308         Include <features.h> for __GLIBC_HAVE_LONG_LONG.
45310 2012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
45312         [BZ #13691]
45313         * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
45314         inptr and inend, rather than using last_ch.
45316 2012-04-02  David S. Miller  <davem@davemloft.net>
45318         With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
45319         * stdio-common/printf-parse.h (read_int): Change return type to
45320         'int', return -1 on INT_MAX overflow.
45321         * stdio-common/vfprintf.c (vfprintf): Validate width and precision
45322         against overflow of INT_MAX.  Set errno to EOVERFLOW when 'done'
45323         overflows INT_MAX.  Check for overflow of in-format-string precision
45324         values properly.  Use EOVERFLOW rather than ERANGE throughout.  Use
45325         SIZE_MAX not INT_MAX for integer overflow test.
45326         * stdio-common/printf-parsemb.c: If read_int signals an overflow,
45327         skip the construct in the format string but do not record anything.
45328         * stdio-common/bug22.c: Adjust to test both width/prevision
45329         INT_MAX overflow as well as total length INT_MAX overflow.  Check
45330         explicitly for proper errno values.
45332 2012-04-02  Thomas Schwinge  <thomas@codesourcery.com>
45334         * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
45335         CHAR_MAX.
45336         * string/test-strcmp.c [! WIDE]: Likewise.
45337         * time/tst-mktime2.c: Likewise for INT_MAX.
45338         * string/test-string.h: #include <sys/param.h> for MIN.
45340         * csu/init-first.c (__libc_init_first): Call __ctype_init.
45341         * sysdeps/i386/init-first.c (init): Likewise.
45342         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
45343         * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
45344         * sysdeps/sh/init-first.c (init): Likewise.
45346 2012-04-01  Ulrich Drepper  <drepper@gmail.com>
45348         * po/ru.po: Update from translation team.
45349         * po/vi.po: Likewise.
45351 2012-03-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
45353         * resolv/nss_dns/dns-host.c: Merge copyright years.
45355 2012-03-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
45357         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
45358         Optimize memcpy with prefetch if
45359         DATA_CACHE_SIZE_HALF <= len <  SHARED_CACHE_SIZE_HALF and
45360         src, dst pointers have unequal 16 byte alignments.
45362 2012-03-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
45364         [BZ #13928]
45365         * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
45366         from a CNAME entry and return the minimum ttl for the query.
45367         (gaih_getanswer_slice): Likewise.
45369 2012-03-30  Jeff Law  <law@redhat.com>
45371         * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
45372         due to long keys.
45373         * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
45374         * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
45376         * resolv/nss_dns/dns-host.c: Update copyright year.
45378 2012-03-30  Ulrich Drepper  <drepper@gmail.com>
45380         * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
45381         requests to save a system call.  Fix check that all bytes are sent.
45383         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
45384         comments for sendmmsg.
45386 2012-03-30  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
45388         [BZ #13691]
45389         * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
45390         with only 1 character between 0x0041 and 0x01b0.
45391         * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
45392         * wcsmbs/tst-mbsnrtowcs.c: New file.
45394 2012-03-29  David S. Miller  <davem@davemloft.net>
45396         * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
45397         small copies by hand.
45399 2012-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
45401         [BZ #13761]
45402         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
45403         (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
45404         group memberships.
45406 2012-03-28  David S. Miller  <davem@davemloft.net>
45408         * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
45409         that branches into memcpy.
45410         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
45411         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
45412         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
45413         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
45414         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
45415         bits.
45416         * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
45417         implementation too.
45418         * sysdeps/sparc/mempcpy.S: New file.
45420         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
45421         the IFUNC routine in the libc case.
45422         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
45424         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
45425         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
45426         * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
45427         * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
45428         * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
45429         * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
45430         * sysdeps/sparc/sparc64/rtld-memset.c: New file.
45431         * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
45433         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
45434         loop to 256 bytes instead of 64 bytes and fix test signedness.
45436         * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
45437         * sysdeps/sparc/sparc32/Makefile: rather than here...
45438         * sysdeps/sparc/sparc64/Makefile: and here.
45440 2012-03-28  Ulrich Drepper  <drepper@gmail.com>
45442         * malloc/mallocbug.c: Avoid warnings about unused variables.
45444 2012-02-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
45446         [BZ #13760]
45447         * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
45448         in the right place. Discard and retry query if response is
45449         larger than input buffer size.
45451 2012-03-28  Joseph Myers  <joseph@codesourcery.com>
45453         [BZ #369]
45454         [BZ #2678]
45455         [BZ #3866]
45456         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
45457         x for large integer exponent.
45458         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
45459         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.  Adjust
45460         sign of result as needed afterwards.
45461         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
45462         * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
45463         result for underflowing pow the same as for overflow.
45464         (__kernel_standard_l): Handle powl overflow and underflow here
45465         rather than calling __kernel_standard.
45466         * math/libm-test.inc (pow_test): Add more tests.
45468         [BZ #3868]
45469         [BZ #13879]
45470         [BZ #13910]
45471         [BZ #13911]
45472         [BZ #13912]
45473         [BZ #13913]
45474         [BZ #13915]
45475         [BZ #13916]
45476         [BZ #13917]
45477         [BZ #13918]
45478         [BZ #13919]
45479         [BZ #13920]
45480         [BZ #13921]
45481         * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
45482         * sysdeps/ieee754/k_standard.c: Include <float.h>.
45483         (__kernel_standard_l): New function.
45484         * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
45485         __kernel_standard.
45486         * math/w_acosl.c (__acosl): Likewise.
45487         * math/w_asinl.c (__asinl): Likewise.
45488         * math/w_atan2l.c (__atan2l): Likewise.
45489         * math/w_atanhl.c (__atanhl): Likewise.
45490         * math/w_coshl.c (__coshl): Likewise.
45491         * math/w_exp10l.c (__exp10l): Likewise.
45492         * math/w_exp2l.c (__exp2l): Likewise.
45493         * math/w_fmodl.c (__fmodl): Likewise.
45494         * math/w_hypotl.c (__hypotl): Likewise.
45495         * math/w_j0l.c (__j0l, __y0l): Likewise.
45496         * math/w_j1l.c (__j1l, __y1l): Likewise.
45497         * math/w_jnl.c (__jnl, __ynl): Likewise.
45498         * math/w_lgammal.c (__lgammal): Likewise.
45499         * math/w_log10l.c (__log10l): Likewise.
45500         * math/w_log2l.c (__log2l): Likewise.
45501         * math/w_logl.c (__logl): Likewise.
45502         * math/w_powl.c (__powl): Likewise.
45503         * math/w_remainderl.c (__remainderl): Likewise.
45504         * math/w_scalbl.c (sysv_scalbl): Likewise.
45505         * math/w_sinhl.c (__sinhl): Likewise.
45506         * math/w_sqrtl.c (__sqrtl): Likewise.
45507         * math/w_tgammal.c (__tgammal): Likewise.
45508         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
45509         * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
45510         * math/libm-test.inc (acos_test): Add more tests.
45511         (acosh_test): Likewise.
45512         (asin_test): Likewise.
45513         (atanh_test): Likewise.
45514         (exp_test): Likewise.
45515         (exp10_test): Likewise.
45516         (exp2_test): Likewise.
45517         (expm1_test): Likewise.
45518         (lgamma_test): Likewise.
45519         (log_test): Likewise.
45520         (log10_test): Likewise.
45521         (log1p_test): Likewise.
45522         (log2_test): Likewise.
45523         (pow_test): Do not allow some spurious overflow exceptions.
45524         (sqrt_test): Add more tests.
45525         (tgamma_test): Likewise.
45526         (y0_test): Likewise.
45527         (y1_test): Likewise.
45528         (yn_test): Likewise.
45530 2012-03-27  Anton Blanchard  <anton@samba.org>
45532         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
45533         MAP_HUGETLB.
45534         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
45535         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
45536         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
45538 2012-03-27  David S. Miller  <davem@davemloft.net>
45540         * conform/Makefile: Run run-conformtest.sh using $(BASH).
45542         * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
45543         have-as-vis3 check.
45545 2012-03-27  Andreas Jaeger  <aj@suse.de>
45547         * sysdeps/x86_64/elf/configure.in: Moved to ...
45548         * sysdeps/x86_64/configure.in: ... here.
45549         * sysdeps/x86_64/elf/start.S: Moved to ...
45550         * sysdeps/x86_64/start.S: ... here.
45551         * sysdeps/x86_64/elf/configure: Delete.
45553         * sysdeps/x86_64/configure.in: Merge contents from
45554         sysdeps/i386/configure.in (without i686 check).
45556         * sysdeps/i386/elf/Versions: Merge into ...
45557         * sysdeps/i386/Versions: ... this.
45558         * sysdeps/i386/elf/Versions: Delete file.
45559         * sysdeps/i386/elf/start.S: Moved to ...
45560         * sysdeps/i386/start.S: ...here.
45561         * sysdeps/i386/elf/configure.in: Merge into...
45562         * sysdeps/i386/configure.in: ...here.
45563         * sysdeps/i386/elf/configure.in: Delete file.
45564         * sysdeps/i386/elf/configure: Delete file.
45566         * sysdeps/generic/elf/backtracesyms.c: Moved to ...
45567         * debug/backtracesyms.c: ... here.
45568         * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
45569         * debug/backtracesymsfd.c: ... here.
45570         * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
45571         * sysdeps/generic/ifunc-sel.h: ... here.
45573         * sysdeps/unix/i386/start.c: Delete file.
45574         * sysdeps/unix/sparc/start.c: Delete file.
45575         * sysdeps/unix/start.c: Delete file.
45577         * sysdeps/sh/elf/configure.in: Moved to ...
45578         * sysdeps/sh/configure.in: ... here.
45579         * sysdeps/sh/elf/start.S: Moved to ...
45580         * sysdeps/sh/start.S: ... here.
45581         * sysdeps/sh/elf/configure: Delete file.
45583         * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
45584         * sysdeps/powerpc/powerpc64/bzero.S: ... here.
45585         * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
45586         * sysdeps/powerpc/powerpc64/entry.h: ... here.
45587         * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
45588         * sysdeps/powerpc/powerpc64/start.S: here.
45589         * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
45590         * sysdeps/powerpc/powerpc64/Makefile: ... this.
45591         * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
45592         * sysdeps/powerpc/powerpc64/configure.in: ... this.
45593         * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
45595         * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
45596         * sysdeps/powerpc/powerpc32/bzero.S: ... here.
45597         * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
45598         * sysdeps/powerpc/powerpc32/start.S: ... here.
45599         * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
45600         * sysdeps/powerpc/powerpc32/configure.in: ... this.
45601         * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
45603         * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
45604         * sysdeps/powerpc/ifunc-sel.h: ... here.
45605         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
45606         * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
45608         * sysdeps/sparc/elf/configure.in: Moved to ...
45609         * sysdeps/sparc/configure.in: ... here.
45610         * sysdeps/sparc/elf/configure: Delete file.
45611         * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
45612         * sysdeps/sparc/sparc32/start.S: ... here.
45613         * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
45614         * sysdeps/sparc/sparc64/start.S: ... here.
45615         * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
45616         * sysdeps/sparc/sparc32/Makefile: ... this.
45617         * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
45618         * sysdeps/sparc/sparc64/Makefile: ... this.
45620         * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
45621         * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
45622         * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
45623         * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
45624         * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
45625         * sysdeps/s390/s390-32/setjmp.S: ... here.
45626         * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
45627         * sysdeps/s390/s390-32/configure.in: ... here.
45628         * sysdeps/s390/s390-32/elf/configure: Delete file.
45629         * sysdeps/s390/s390-32/elf/start.S: Moved to ...
45630         * sysdeps/s390/s390-32/start.S: ... here.
45632         * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
45633         * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
45634         * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
45635         * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
45636         * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
45637         * sysdeps/s390/s390-64/setjmp.S: ... here.
45638         * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
45639         * sysdeps/s390/s390-64/configure.in: ... here
45640         * sysdeps/s390/s390-64/elf/configure: Delete file.
45641         * sysdeps/s390/s390-64/elf/start.S: Moved to ...
45642         * sysdeps/s390/s390-64/start.S: ... here.
45643         * sysdeps/s390/s390-64/elf/configure: Delete.
45645         * configure.in: Remove support for elf directories in sysdeps.
45647         * configure: Regenerated.
45648         * sysdeps/i386/configure: Regenerated.
45649         * sysdeps/powerpc/powerpc32/configure: Regenerated.
45650         * sysdeps/powerpc/powerpc64/configure: Regenerated.
45651         * sysdeps/s390/s390-32/configure: Regenerated.
45652         * sysdeps/s390/s390-64/configure: Regenerated.
45653         * sysdeps/sh/configure: Regenerated.
45654         * sysdeps/sparc/configure: Regenerated.
45655         * sysdeps/x86_64/configure: Regenerated.
45657 2012-03-26  Andreas Schwab  <schwab@linux-m68k.org>
45659         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45661         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
45662         denormal result into account.
45664 2012-03-25  Roland McGrath  <roland@hack.frob.com>
45666         * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
45667         Reported by Allan McRae <allan@archlinux.org>.
45669 2012-03-23  Jeff Law  <law@redhat.com>
45671         * nss/getnssent.c (__nss_getent): Fix typo.
45673 2012-03-23  David S. Miller  <davem@davemloft.net>
45675         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45677 2012-03-23  H.J. Lu  <hongjiu.lu@intel.com>
45679         * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
45680         to pad to uint64_t for each field.
45681         (dl_tls_index): Replace unsigned long with uint64_t.
45683 2012-03-23  Daniel Jacobowitz  <dmj@google.com>
45684         Paul Pluzhnikov  <ppluzhnikov@google.com>
45686         [BZ #6528]
45687         * grp/Makefile (otherlibs): Don't set it.
45688         * inet/Makefile (otherlibs): Likewise.
45689         * login/Makefile (otherlibs): Likewise.
45690         * nscd/Makefile (otherlibs): Likewise.
45691         * posix/Makefile (otherlibs): Likewise.
45692         * pwd/Makefile (otherlibs): Likewise.
45693         * rt/Makefile (otherlibs): Likewise.
45694         * sunrpc/Makefile (otherlibs): Likewise.
45695         * nss/Makefile (otherlibs): Likewise.
45696         Add libnss_files to routines and static-only-routines.
45697         ($(objpfx)getent): Remove rule.
45698         * resolv/Makefile: Add libnss_dns and libresolv to routines and
45699         static-only-routines.
45701 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
45703         [BZ #13892]
45704         * math/s_cexp.c: Include <float.h>.
45705         (__cexp): Handle exp result overflowing not necessarily
45706         overflowing both real and imaginary parts of result.
45707         * math/s_cexpf.c: Likewise.
45708         * math/s_cexpl.c: Likewise.
45709         * math/libm-test.inc (cexp_test): Add more tests.
45710         * sysdeps/i386/fpu/libm-test-ulps: Update.
45711         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45713 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
45715         * include/link.h (ELFW): New macro.
45716         * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
45717         Replace ELF64_R_TYPE with ELFW(R_TYPE).
45719 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
45721         * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
45722         with uint64_t.
45724 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
45726         * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
45727         declaration.
45728         (struct La_x32_retval): Likewise.
45730 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
45732         * sysdeps/x86_64/preconfigure.in: New file.
45733         * sysdeps/x86_64/preconfigure: New generated file.
45735 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
45737         [BZ #13824]
45738         * math/e_exp2l.c: Include <float.h>.
45739         (__ieee754_exp2l): Handle overflow and underflow cases
45740         separately.  Only pass fractional part of argument to
45741         __ieee754_expl.
45742         * math/libm-test.inc (exp2_test): Add more tests.
45744         * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
45745         negating x to take absolute value.
45746         * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
45747         Likewise.
45748         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
45749         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
45750         Likewise.
45751         * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
45752         computing low part if x was negated.
45753         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
45755 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
45757         * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
45758         la_x32_gnu_pltexit.
45759         (pltexit): Cast int_retval to ptrdiff_t.
45760         * elf/tst-auditmod3b.c: Likewise.
45761         * elf/tst-auditmod4b.c: Likewise.
45762         * elf/tst-auditmod5b.c: Likewise.
45763         * elf/tst-auditmod6b.c: Likewise.
45764         * elf/tst-auditmod6c.c: Likewise.
45765         * elf/tst-auditmod7b.c: Likewise.
45767         * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
45768         and x32_gnu_pltexit.
45770         * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
45771         __ELF_NATIVE_CLASS.
45772         (La_x32_regs): New macro.
45773         (La_x32_retval): Likewise.
45774         (la_x32_gnu_pltenter): New function prototype.
45775         (la_x32_gnu_pltexit): Likewise.
45777 2012-03-21  Andreas Schwab  <schwab@linux-m68k.org>
45779         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
45780         exponent.
45782         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45784         * configure.in (libc_cv_cc_nofma): Check for option to disable
45785         generation of FMA instructions.
45786         * configure: Regenerate.
45787         * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
45788         * sysdeps/ieee754/dbl-64/Makefile: New file.
45789         * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
45790         Remove brandred-fma4.
45791         (CFLAGS-brandred-fma4.c): Remove.
45792         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
45793         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
45794         define.
45795         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
45796         define.
45798 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
45800         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
45801         LLONG_MAX != LONG_MAX.
45802         (_itoa_word): Use _ITOA_WORD_TYPE on value.
45803         (_fitoa_word): Likewise.
45804         * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
45805         LLONG_MAX != LONG_MAX.
45806         * stdio-common/_itowa.h: Include <_itoa.h>.
45807         (_itowa_word): Use _ITOA_WORD_TYPE on value.
45808         (_itowa): New macro.  Defined only if _ITOA_NEEDED is false.
45809         * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro.  Defined
45810         only if not defined.
45811         (_ITOA_WORD_TYPE): Likewise.
45812         (_itoa_word): Use _ITOA_WORD_TYPE on value.
45813         Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
45815 2012-03-21  David S. Miller  <davem@davemloft.net>
45817         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45819 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
45821         * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
45822         of x86_64 when setting libc_cv_slibdir, libdir and
45823         libc_cv_localedir.
45824         * sysdeps/unix/sysv/linux/configure: Regenerated.
45826 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
45828         * manual/lang.texi (Old Varargs): Remove section.
45829         (How Variadic): Update menu.
45830         (va_start): Do not mention varargs.h.
45832 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
45833             Joseph Myers  <joseph@codesourcery.com>
45835         * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
45836         link test.
45837         * configure: Regenerated.
45839 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
45841         * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
45842         * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
45843         conformtest.pl
45845 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
45847         * NOTES: Remove.
45848         * Makefile (files-for-dist): Remove NOTES.
45849         (NOTES): Remove rule.
45850         * README: Don't refer to NOTES.
45851         * manual/creature.texi: Don't include macros.texi.
45852         * manual/intro.texi (creature.texi): Remove comment referring to
45853         NOTES.
45855         * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
45856         * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
45857         * configure: Regenerated.
45858         * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
45859         LIBC_TRY_CC_OPTION.
45860         (libc_cv_as_i686): Likewise.
45861         (libc_cv_cc_avx): Likewise.
45862         (libc_cv_cc_sse2avx): Likewise.
45863         (libc_cv_cc_fma4): Likewise.
45864         (libc_cv_cc_novzeroupper): Likewise.
45865         * sysdeps/i386/configure: Regenerated.
45867         [BZ #13883]
45868         * sysdeps/i386/fpu/s_cexp.S: Remove.
45869         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
45870         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
45871         * math/libm-test.inc (cexp_test): Add more tests.
45872         * sysdeps/i386/fpu/libm-test-ulps: Update.
45873         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45875 2012-03-21  Allan McRae  <allan@archlinux.org>
45877         * timezone/Makefile: Do not install iso3166.tab and zone.tab
45879 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
45881         [BZ #13871]
45882         * math/w_exp2.c: Do not include <float.h>.
45883         (o_threshold, u_threshold): Remove.
45884         (__exp2): Calculate result before checking finiteness and calling
45885         __kernel_standard.
45886         * math/w_exp2f.c: Likewise.
45887         * math/w_exp2l.c: Likewise.
45888         * math/libm-test.inc (exp2_test): Require overflow exception for
45889         1e6 input.
45891         [BZ #3866]
45892         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
45893         range of signed 64-bit integers before using fistpll.  Remove
45894         checks for whether integers fit in mantissa bits.
45895         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
45896         the range of signed 32-bit integers before using fistpl.  Remove
45897         checks for whether integers fit in mantissa bits.
45898         * sysdeps/i386/fpu/e_powl.S (p64): New object.
45899         (__ieee754_powl): Test for y outside the range of signed 64-bit
45900         integers before using fistpll.  Reduce 64-bit values to 63-bit
45901         ones as needed.
45902         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
45903         divide-by-zero is raised for zero to large negative powers.
45904         * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
45905         (__ieee754_powl): Test for y outside the range of signed 64-bit
45906         integers before using fistpll.  Reduce 64-bit values to 63-bit
45907         ones as needed.
45908         * math/libm-test.inc (pow_test): Add more tests.
45910 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
45912         * debug/backtracesymsfd.c: Include <_itoa.h> instead of
45913         <stdio-common/_itoa.h>.
45914         * debug/segfault.c: Likewise.
45915         * elf/dl-cache.c: Likewise.
45916         * elf/dl-minimal.c: Likewise.
45917         * elf/dl-misc.c: Likewise.
45918         * elf/dl-sysdep.c: Likewise.
45919         * elf/dl-version.c: Likewise.
45920         * elf/rtld.c: Likewise.
45921         * hurd/hurdsock.c: Likewise.
45922         * hurd/lookup-retry.c: Likewise.
45923         * malloc/malloc.c: Likewise.
45924         * malloc/mtrace.c: Likewise.
45925         * nscd/nscd_getgr_r.c: Likewise.
45926         * nscd/nscd_getpw_r.c: Likewise.
45927         * nscd/nscd_getserv_r.c: Likewise.
45928         * posix/getopt_init.c: Likewise.
45929         * posix/wordexp.c: Likewise.
45930         * stdio-common/_itoa.c: Likewise.
45931         * stdio-common/printf_fphex.c: Likewise.
45932         * stdio-common/vfprintf.c: Likewise.
45933         * string/_strerror.c: Likewise.
45934         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
45935         * sysdeps/i386/i686/hp-timing.h: Likewise.
45936         * sysdeps/mach/_strerror.c: Likewise.
45937         * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
45938         * sysdeps/mach/hurd/sethostid.c: Likewise.
45939         * sysdeps/mach/hurd/xmknodat.c: Likewise.
45940         * sysdeps/mach/xpg-strerror.c: Likewise.
45941         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
45942         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
45943         * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
45944         * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
45945         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
45946         * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
45947         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
45948         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
45949         * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
45950         * sysdeps/unix/sysv/linux/futimes.c: Likewise.
45951         * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
45952         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
45953         * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
45954         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
45955         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
45956         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
45957         * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
45958         * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
45959         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
45960         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
45961         * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
45963         * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
45965         * stdio-common/_itoa.h: Moved to ...
45966         * sysdeps/generic/_itoa.h: Here.
45968         * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
45970         * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
45971         instead of "_itoa.h" and "_itowa.h".
45972         * stdio-common/vfprintf.: Likewise.
45974 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
45976         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
45977         <bits/wordsize.h>.
45978         (__signbitf): Check __x86_64__ instead of __WORDSIZE.
45979         (__signbit): Likwise.
45980         (llrintf): Likwise.
45981         (llrint): Likwise.
45983 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
45985         * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
45986         __WORDSIZE != 64.
45988 2012-03-20  Joseph Myers  <joseph@codesourcery.com>
45990         * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
45991         OVERFLOW_EXCEPTION_OK.
45992         * math/libm-test.inc ("Philosophy"): Update comment about
45993         exception testing.
45994         (OVERFLOW_EXCEPTION): Define.
45995         (OVERFLOW_EXCEPTION_OK): Likewise.
45996         (INVALID_EXCEPTION_OK): Renumber.
45997         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
45998         (IGNORE_ZERO_INF_SIGN): Likewise.
45999         (test_exceptions): Handle FE_OVERFLOW.
46000         (exp10_test): Expect overflow exceptions.
46001         (exp2_test): Likewise.
46002         (expm1_test): Likewise.
46003         (nextafter_test): Likewise.
46004         (pow_test): Likewise.
46005         (scalbn_test): Likewise.
46006         (scalbln_test): Likewise.
46008 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
46010         * sysdeps/x86_64/bits/atomic.h
46011         (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
46012         64bit integer.
46013         (atomic_exchange_acq): Likewise.
46014         (__arch_exchange_and_add_body): Likewise.
46015         (__arch_add_body): Likewise.
46016         (atomic_add_negative): Likewise.
46017         (atomic_add_zero): Likewise.
46019 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
46021         * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
46022         (fenv_t): Check __x86_64__ instead of __WORDSIZE.
46024 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
46026         * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
46027         Check __x86_64__ instead of __WORDSIZE.
46029 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
46031         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
46033 2012-03-19  David S. Miller  <davem@davemloft.net>
46035         * sysdeps/sparc/fpu/libm-test-ulps: Update.
46037         * sysdeps/sparc/fpu/fenv_private.h: New file.
46038         * sysdeps/sparc/fpu/math_private.h: Use it.
46039         (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
46040         Remove.
46041         (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
46042         (libc_feholdexcept_setroundl): Remove.
46043         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
46044         Remove.
46045         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
46046         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
46048 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
46050         * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
46051         int64_t instead of long int.
46052         (INSERT_WORDS64): Likwise.
46054 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
46056         * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
46057         _Unwind_GetCFA return to _Unwind_Ptr first.
46059 2012-03-19  Joseph Myers  <joseph@codesourcery.com>
46061         [BZ #13629]
46062         * math/s_clog.c: Include <float.h>.
46063         (__clog): Scale large or subnormal inputs.
46064         * math/s_clogf.c: Likewise.
46065         * math/s_clogl.c: Likewise.
46066         * math/s_clog10.c: Include <float.h>.
46067         (M_LOG10_2): Define.
46068         (__clog10): Scale large or subnormal inputs.
46069         * math/s_clog10f.c: Likewise.
46070         * math/s_clog10l.c: Likewise.
46071         * math/libm-test.inc (clog_test): Add more tests.
46072         (clog10_test): Likewise.
46073         * sysdeps/i386/fpu/libm-test-ulps: Update.
46074         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46076         [BZ #11451]
46077         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
46078         x and y.
46079         * math/libm-test.inc (atan2_test): Add another test.
46081         * Makerules (common-objdir-compile): Remove.
46082         * sysdeps/unix/Makefile (config-generated): Do not add
46083         $(unix-generated) to variable.
46084         [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
46085         [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
46086         Remove rule.
46087         [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
46088         Likewise.
46089         [generic bits/local_lim.h] (before-compile): Do not append to
46090         variable.
46091         [generic bits/local_lim.h] (common-generated): Likewise.
46092         [generic sys/param.h] (before-compile): Do not append to variable.
46093         [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
46094         [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
46095         [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
46096         [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
46097         include.
46098         [generic sys/param.h] (sys/param.h-includes): Remove variable.
46099         [generic sys/param.h] (sys/param.h-includes): Remove rule.
46100         [generic sys/param.h] ($(addprefix
46101         $(common-objpfx),$(sys/param.h-includes))): Likewise.
46102         [generic sys/param.h] (common-generated): Do not append to
46103         variable.
46104         [generic sys/param.h] (sysdep_headers): Likewise.
46105         [generic bits/errno.h] (before-compile): Do not append to
46106         variable.
46107         [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
46108         rule.
46109         [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
46110         [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
46111         [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
46112         [generic bits/errno.h] (common-generated): Do not append to
46113         variable.
46114         [generic bits/ioctls.h] (before-compile): Do not append to
46115         variable.
46116         [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
46117         rule.
46118         [generic bits/ioctls.h] (ioctl-includes): Remove variable.
46119         [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
46120         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
46121         rule.
46122         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
46123         [generic bits/ioctls.h] (bits_termios.h): Remove variable.
46124         [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
46125         [generic bits/ioctls.h] (common-generated): Do not append to
46126         variable.
46127         [generic sys/syscall.h] (syscall.h): Remove variable.
46128         [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
46129         rule.
46130         [generic sys/syscall.h] (before-compile): Do not append to
46131         variable.
46132         [generic sys/syscall.h] (common-generated): Likewise.
46133         * sysdeps/unix/errnos-tmpl.c: Remove file.
46134         * sysdeps/unix/errnos.awk: Likewise.
46135         * sysdeps/unix/ioctls-tmpl.c: Likewise.
46136         * sysdeps/unix/ioctls.awk: Likewise.
46137         * sysdeps/unix/mk-local_lim.c: Likewise.
46138         * sysdeps/unix/snarf-ioctls: Likewise.
46140 2012-03-19  Richard Henderson  <rth@twiddle.net>
46142         * sysdeps/i386/fpu/fenv_private.h: New file.
46143         * sysdeps/i386/fpu/math_private.h: Use it.
46144         (math_opt_barrier, math_force_eval): Remove.
46145         (libc_feholdexcept_setround_53bit): Remove.
46146         (libc_feupdateenv_53bit): Remove.
46147         * sysdeps/x86_64/fpu/math_private.h: Likewise.
46148         (math_opt_barrier, math_force_eval): Remove.
46149         (libc_feholdexcept): Remove.
46150         (libc_feholdexcept_setround): Remove.
46151         (libc_fetestexcept, libc_fesetenv): Remove.
46152         (libc_feupdateenv_test): Remove.
46153         (libc_feupdateenv, libc_feholdsetround): Remove.
46154         (libc_feresetround): Remove.
46156         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
46157         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
46159         * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
46160         (libc_feupdateenv_test, libc_feupdateenv_testf): New.
46161         (libc_feupdateenv_testl): New.
46162         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
46163         (libc_feupdateenv_testf): New.
46164         (libc_feupdateenv): Use libc_feupdateenv_test.
46165         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
46166         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
46168         * sysdeps/generic/math_private.h (libc_feholdsetround): New.
46169         (libc_feholdsetroundf, libc_feholdsetroundl): New.
46170         (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
46171         (libc_feresetround_noex): New.
46172         (libc_feresetround_noexf): New.
46173         (libc_feresetround_noexl): New.
46174         (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
46175         (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
46176         (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
46177         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
46178         SET_RESTORE_ROUND.
46179         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
46180         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
46181         (__cos): Likewise.
46182         * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
46183         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
46184         SET_RESTORE_ROUND_NOEX.
46185         * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
46186         SET_RESTORE_ROUND_NOEXF.
46187         * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
46188         * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
46189         (libc_feholdsetroundf): New.
46190         (libc_feresetround, libc_feresetroundf): New.
46192         * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
46193         (libc_feholdexcept_setround_53bit): Convert from macro to function.
46194         (libc_feupdateenv_53bit): Likewise.  Don't force _FPU_EXTENDED.
46196         * sysdeps/generic/math_private.h: Include <fenv.h>.
46197         (default_libc_feholdexcept): New.
46198         (default_libc_feholdexcept_setround): New.
46199         (default_libc_fesetenv, default_libc_feupdateenv): New.
46200         (libc_feholdexcept): Only define if undefined.
46201         (libc_feholdexceptf, libc_feholdexceptl): Likewise.
46202         (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
46203         (libc_feholdexcept_setroundl): Likewise.
46204         (libc_feholdexcept_setround_53bit): Likewise.
46205         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
46206         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
46207         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
46208         (libc_feupdateenv_53bit): Likewise.
46209         * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
46210         (libc_feholdexcept): Convert from macro to inline function.
46211         (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
46212         (libc_fesetenv, libc_feupdateenv): Likewise.
46214         * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
46215         not previously defined.
46216         (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
46217         (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
46218         (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
46219         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
46220         * sysdeps/ieee754/flt-32/math_private.h: New file.
46221         * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
46222         math_private.h below SET_FLOAT_WORD.
46223         (__isnan, __isinf_ns, __finite): Remove.
46224         (__isnanf, __isinf_nsf, __finitef): Remove.
46226 2012-03-18  Andreas Schwab  <schwab@linux-m68k.org>
46228         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46230 2012-03-17  David S. Miller  <davem@davemloft.net>
46232         [BZ #6471]
46233         * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
46234         for 2.16.
46236 2012-03-16  David S. Miller  <davem@davemloft.net>
46238         * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
46239         warnings.
46241         [BZ #6471]
46242         * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
46243         properly.
46244         * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
46245         * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
46246         sysdep_routines when subdir is sysvipc.
46247         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
46248         __getshmlba helper.
46250         * sysdeps/sparc/fpu/libm-test/ulps: Update.
46252 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
46254         * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
46255         [__LP64__].
46257 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
46259         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
46260         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
46261         (__lround): Renamed to ...
46262         (__llround): This.  Replace long int with long long int.
46263         Define lround functions as aliases of llround functions.
46264         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
46266 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
46268         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
46269         Use greg_t on sp.  Use unsigned int on idx_uc_link.  Cast
46270         adresses to uintptr_t.  Replace "long int" and "unsigned long
46271         int" with "greg_t" on va_arg.
46273 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
46275         * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
46276         * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
46278         * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
46279         Move e_machine check before EI_CLASS check.  Handle x32
46280         libraries.  Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
46281         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
46282         SKIP_EM_IA_64 and include
46283         <sysdeps/unix/sysv/linux/i386/readelflib.c>.
46285         * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
46286         Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
46287         (add_system_dir): New macro.
46289         * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
46290         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
46292 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
46294         [BZ #2551]
46295         [BZ #2552]
46296         [BZ #2553]
46297         [BZ #2554]
46298         [BZ #2562]
46299         [BZ #2563]
46300         [BZ #2565]
46301         [BZ #2566]
46302         [BZ #2576]
46303         * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
46304         (y0): Likewise.
46305         * math/w_j0f.c (j0f): Likewise.
46306         (y0f): Likewise.
46307         * math/w_j0l.c (__j0l): Likewise.
46308         (__y0l): Likewise.
46309         * math/w_j1.c (j1): Likewise.
46310         (y1): Likewise.
46311         * math/w_j1f.c (j1f): Likewise.
46312         (y1f): Likewise.
46313         * math/w_j1l.c (__j1l): Likewise.
46314         (__y1l): Likewise.
46315         * math/w_jn.c (jn): Likewise.
46316         (yn): Likewise.
46317         * math/w_jnf.c (jnf): Likewise.
46318         (ynf): Likewise.
46319         * math/w_jnl.c (__jnl): Likewise.
46320         (__ynl): Likewise.
46321         * math/libm-test.inc (j0_test): Add more tests.
46322         (j1_test): Likewise.
46323         (jn_test): Likewise.  Add trailing semicolon to existing test.
46324         (y0_test): Likewise.
46325         (y1_test): Likewise.
46326         * sysdeps/i386/fpu/libm-test-ulps: Update.
46327         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46329         [BZ #13851]
46330         [BZ #13854]
46331         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
46332         libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
46333         * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
46334         * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
46335         (__tanl): Set errno for infinite argument.
46336         * sysdeps/i386/fpu/mptan.c: Remove.
46337         * sysdeps/i386/fpu/s_tan.S: Likewise.
46338         * sysdeps/i386/fpu/s_tanl.S: Likewise.
46339         * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
46340         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
46341         * math/libm-test.inc (tan_test): Add more tests and enable more
46342         tests for double and long double.
46343         * sysdeps/i386/fpu/libm-test-ulps: Update.
46344         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46346 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
46348         * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
46349         (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
46351 2012-03-16  Roland McGrath  <roland@hack.frob.com>
46353         * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
46354         * configure.in: Use it for both main tree and add-ons.
46355         * configure: Regenerated.
46357 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
46359         * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
46361 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
46363         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
46364         in comment.
46366         [BZ #13851]
46367         * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
46368         * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
46369         * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
46370         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
46371         * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
46372         infinite argument.
46373         * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
46374         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
46375         != 0 for prec == 2.
46376         * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
46377         * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
46378         * sysdeps/i386/fpu/s_cosl.S: Likewise.
46379         * sysdeps/i386/fpu/s_sincosl.S: Likewise.
46380         * sysdeps/i386/fpu/s_sinl.S: Likewise.
46381         * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
46382         * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
46383         * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
46384         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
46385         * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
46386         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
46387         * math/libm-test.inc (cos_test): Add more tests and enable more
46388         tests for long double.
46389         (sin_test): Likewise.
46390         (sincos_test): Likewise.
46391         * sysdeps/i386/fpu/libm-test-ulps: Update.
46392         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46394 2012-03-16  David S. Miller  <davem@davemloft.net>
46396         * sysdeps/sparc/fpu/math_private.h: New file.
46398 2012-03-15  David S. Miller  <davem@davemloft.net>
46400         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
46401         file.
46402         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
46403         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
46404         file.
46405         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
46406         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
46407         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
46408         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
46409         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
46410         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
46411         sysdep routines.
46412         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
46414         * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
46415         * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
46417         * sysdeps/sparc/sparc-ifunc.h: New file.
46418         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
46419         sparc-ifunc.h
46420         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
46421         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
46422         Likewise.
46423         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
46424         Likewise.
46425         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
46426         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
46427         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
46428         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
46429         Likewise.
46430         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
46431         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
46432         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
46433         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
46434         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
46435         Likewise.
46436         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
46437         Likewise.
46438         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
46439         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
46440         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
46441         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
46442         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
46443         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
46444         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
46445         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
46446         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
46447         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
46448         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
46449         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
46450         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
46451         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
46452         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
46453         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
46454         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
46455         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
46456         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
46457         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
46458         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
46459         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
46460         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
46461         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
46463 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
46465         * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
46466         scaling.
46467         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46469 2012-03-15  Andreas Jaeger  <aj@suse.de>
46471         [BZ #13852]
46472         * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
46473         ieee754/flt-32 implementation for sin, cos and sincos.
46474         * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
46475         * sysdeps/i386/fpu/s_cosf.S: Likewise.
46476         * sysdeps/i386/fpu/s_sincosf.S: Likewise.
46477         * sysdeps/i386/fpu/s_sinf.S: Likewise.
46478         * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
46479         ieee754/flt-32 implementation for tan.
46481         * math/libm-test.inc (cos_test): Enable some large input tests for
46482         float as well
46483         (sin_test): Likewise.
46484         (sincos_test): Likewise.
46485         (tan_test): Add tests for large input.
46487         * sysdeps/i386/fpu/libm-test-ulps: Update.
46489 2012-03-15  Andreas Jaeger  <aj@suse.de>
46491         [BZ #13658]
46492         * math/libm-test.inc (cos_test): Add more test cases.
46493         (sin_test): Likewise.
46494         (sincos_test): Likewise.
46496 2012-03-15  Andreas Jaeger  <aj@suse.de>
46498         [BZ #13837]
46499         * math/libm-test.inc (cos_test): Add a test case for large input
46500         value.
46501         (sin_test): Likewise.
46502         (sincos_test): Likewise.
46504 2012-03-15  Andreas Jaeger  <aj@suse.de>
46505             Joseph Myers  <joseph@codesourcery.com>
46507         [BZ #13658]
46508         * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
46509         x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
46510         * sysdeps/i386/fpu/branred.c: Likewise.
46511         * sysdeps/i386/fpu/dosincos.c: Likewise.
46512         * sysdeps/i386/fpu/mpa.c: Likewise.
46513         * sysdeps/i386/fpu/s_cos.S: Likewise.
46514         * sysdeps/i386/fpu/s_sin.S: Likewise.
46515         * sysdeps/i386/fpu/s_sincos.S: Likewise.
46516         * sysdeps/i386/fpu/sincos32.c: Likewise.
46518         * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
46519         Define.
46520         (libc_feupdateenv_53bit): Define.
46521         * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
46522         Define.
46523         (libc_feupdateenv_53bit): Define.
46525         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
46526         53 bit (without extend i386 double precision).
46528         * math/libm-test.inc (sincos_test): Add tests for large input.
46529         (sin): Likewise.
46530         (cos): Likewise.
46532         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
46534 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
46536         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46538 2012-03-15  David S. Miller  <davem@davemloft.net>
46540         * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
46541         * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
46542         * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
46543         * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
46544         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
46545         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
46546         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
46547         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
46548         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
46549         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
46550         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
46551         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
46552         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
46553         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
46554         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
46555         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
46556         file.
46557         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
46558         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
46559         file.
46560         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
46561         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
46562         file.
46563         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
46564         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
46565         file.
46566         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
46567         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
46568         fmin/fmax sysdep routines.
46569         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
46571 2012-03-14  David S. Miller  <davem@davemloft.net>
46573         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
46574         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
46575         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
46576         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
46577         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
46578         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
46579         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
46580         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
46581         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
46582         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
46583         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
46584         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
46585         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
46586         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
46587         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
46588         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
46589         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
46590         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
46591         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
46592         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
46593         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
46594         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
46595         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
46596         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
46597         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
46598         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
46599         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
46600         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
46601         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
46602         routines.
46603         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
46604         file.
46605         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
46606         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
46607         file.
46608         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
46609         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
46610         file.
46611         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
46612         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
46613         file.
46614         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
46615         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
46616         file.
46617         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
46618         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
46619         file.
46620         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
46621         file.
46622         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
46623         file.
46624         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
46625         file.
46626         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
46627         New file.
46628         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
46629         file.
46630         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
46631         file.
46632         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
46633         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
46634         file.
46635         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
46636         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
46637         file.
46638         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
46639         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
46640         file.
46641         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
46642         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
46643         VIS3 routines.
46645         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
46646         New file.
46648         * sysdeps/sparc/fpu/libm-test-ulps: Update.
46650         * sysdeps/sparc/configure.in: New file.
46651         * sysdeps/sparc/configure: Generate.
46652         * configure.in (libc_cv_sparc_as_vis3): Substitute.
46653         * configure: Regenerate.
46654         * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
46655         * config.make.in (have-as-vis3): New.
46656         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
46657         available use -Av9d instead of -Av9a.
46658         * sysdeps/sparc/sparc64/Makefile: Likewise.
46659         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
46660         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
46661         New file.
46662         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
46663         file.
46664         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
46665         New file.
46666         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
46667         file.
46668         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
46669         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
46670         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
46671         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
46672         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
46674         * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
46675         fzeros/fnegs to load 0x80000000 into a float register instead of
46676         using the stack.
46677         * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
46679 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
46681         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46682         bits/syscall.h.
46683         ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
46684         ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
46685         ($(inst_includedir)/bits/syscall.h): Remove rule.
46686         ($(objpfx)bits/syscall.d): Include instead of
46687         $(objpfx)syscall-list.d.
46688         (generated): Change syscall-list.h and syscall-list.d to
46689         bits/syscall.h and bits/syscall.d.
46691 2012-03-14  Roland McGrath  <roland@hack.frob.com>
46693         [BZ #13846]
46694         * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
46696 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
46698         [BZ #13841]
46699         * math/s_csqrt.c: Include <float.h>.
46700         (__csqrt): Scale large or subnormal inputs.
46701         * math/s_csqrtf.c: Likewise.
46702         * math/s_csqrtl.c: Likewise.
46703         * math/libm-test.inc (csqrt_test): Add more tests.
46704         * sysdeps/i386/fpu/libm-test-ulps: Update.
46705         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46707         [BZ #13840]
46708         * math/libm-test.inc (hypot_test): Add more tests.
46710 2012-03-13  David S. Miller  <davem@davemloft.net>
46712         [BZ #13840]
46713         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
46714         double-precision for the calculation instead of scaling.
46716 2012-03-13  Joseph Myers  <joseph@codesourcery.com>
46718         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
46719         manipulate bits before adding and subtracting TWO52[sx].
46720         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
46721         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
46722         Likewise.
46723         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
46725 2012-03-13  David S. Miller  <davem@davemloft.net>
46727         * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
46728         * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
46729         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
46730         rtld-global-offsets.h
46731         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
46733         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
46734         large parameters.
46736         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
46738         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
46739         'err' in the ifdef scope in which it is actually used.
46741         * nss/nss_db/db-init.c: Include string.h
46743 2012-03-12  David S. Miller  <davem@davemloft.net>
46745         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
46746         masking out of the most significant byte of random value used.
46747         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
46748         Fix coding style in previous change.
46750         * sysdeps/unix/sysv/linux/kernel-features.h
46751         (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
46752         (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
46753         expression.
46754         (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
46755         later.
46757 2012-03-11  David S. Miller  <davem@davemloft.net>
46759         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
46760         (__makecontext): Fix signedness of pointer casts setting up 'sp'.
46761         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
46762         for 'resultvar' otherwise things get truncated on 64-bit.
46764         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
46765         Fix masking out of the most significant byte of random value used.
46767         * sysdeps/sparc/fpu/libm-test-ulps: Update.
46769 2012-03-10  Andreas Schwab  <schwab@linux-m68k.org>
46771         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46773 2012-03-09  David S. Miller  <davem@davemloft.net>
46775         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
46776         variables with appropriate CPP guards.
46777         * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
46778         from the frame pointer, not the stack pointer.  Correct layout
46779         comments.  Fix test on resulting framesize and the management of
46780         the outregs buffer for pltexit.  Preserve floating point return
46781         values across _dl_call_pltexit call.
46782         * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
46783         framesize and the management of the outregs buffer for pltexit.
46784         Preserve floating point return values across _dl_call_pltexit
46785         call.
46786         * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
46787         (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
46788         (la_sparc64_gnu_pltexit): New functions.
46789         (print_exit): Fix format string for return register value.
46791 2012-03-10  Joseph Myers  <joseph@codesourcery.com>
46793         * sunrpc/Makefile (others): Add rpcgen.
46794         ($(objpfx)rpcgen): Remove special build rule and dependency on
46795         libc.
46796         * sunrpc/rpcgen.c: New file.
46798 2012-03-09  Paul Eggert  <eggert@cs.ucla.edu>
46800         [BZ #13673]
46801         * posix/bug-regex33.c: Replace FSF snail mail address with URL.
46802         * stdio-common/bug-vfprintf-nargs.c: Likewise.
46803         * sysdeps/i386/crti.S: Likewise.
46804         * sysdeps/i386/crtn.S: Likewise.
46805         * sysdeps/powerpc/powerpc32/crti.S: Likewise.
46806         * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
46807         * sysdeps/powerpc/powerpc64/crti.S: Likewise.
46808         * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
46809         * sysdeps/sh/crti.S: Likewise.
46810         * sysdeps/sh/crtn.S: Likewise.
46811         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
46813         [BZ #13673]
46814         * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
46815         with URL.
46816         * locale/programs/locfile-kw.gperf: Likewise.
46817         * locale/programs/charmap-kw.h: Regenerated.
46818         * locale/programs/locfile-kw.h: Likewise.
46820         [BZ #13673]
46821         * intl/plural.y: Replace FSF snail mail address with URL.
46822         * intl/plural.c: Regenerated.
46824 2012-03-09  Richard Henderson  <rth@twiddle.net>
46826         * include/math_private.h: Remove file.
46827         * math/math_private.h: Move file ...
46828         * sysdeps/generic/math_private.h: ... here.
46830         * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
46831         * sysdeps/powerpc/fpu/math_private.h: Likewise.
46832         * sysdeps/x86_64/fpu/math_private.h: Likewise.
46834         * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
46835         and <math_private.h>.
46836         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
46837         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
46838         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
46839         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
46840         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
46841         * sysdeps/ieee754/dbl-64/branred.c: Likewise.
46842         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
46843         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
46844         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
46845         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
46846         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
46847         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
46848         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
46849         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
46850         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
46851         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
46852         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
46853         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
46854         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
46855         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
46856         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
46857         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
46858         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
46859         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
46860         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
46861         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
46862         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
46863         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
46864         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
46865         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
46866         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
46867         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
46868         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
46869         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
46870         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
46871         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
46872         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
46873         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
46874         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
46875         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
46876         * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
46877         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
46878         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
46879         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
46880         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
46881         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
46882         * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
46883         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
46884         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
46885         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
46886         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
46887         * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
46888         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
46889         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
46890         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
46891         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
46892         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
46893         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
46894         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
46895         * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
46896         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
46897         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
46898         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
46899         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
46900         * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
46901         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
46902         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
46903         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
46904         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
46905         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
46906         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
46907         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
46908         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
46909         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
46910         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
46911         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
46912         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
46913         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
46914         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
46915         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
46916         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
46917         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
46918         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
46919         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
46920         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
46921         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
46922         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
46923         * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
46924         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
46925         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
46926         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
46927         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
46928         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
46929         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
46930         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
46931         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
46932         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
46933         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
46934         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
46935         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
46936         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
46937         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
46938         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
46939         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
46940         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
46941         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
46942         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
46943         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
46944         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
46945         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
46946         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
46947         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
46948         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
46949         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
46950         * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
46951         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
46952         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
46953         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
46954         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
46955         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
46956         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
46957         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
46958         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
46959         * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
46960         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
46961         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
46962         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
46963         * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
46964         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
46965         * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
46966         * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
46967         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
46968         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
46969         * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
46970         * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
46971         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
46972         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
46973         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
46974         * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
46975         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
46976         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
46977         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
46978         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
46979         * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
46980         * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
46981         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
46982         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
46983         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
46984         * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
46985         * sysdeps/ieee754/k_standard.c: Likewise.
46986         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
46987         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
46988         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
46989         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
46990         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
46991         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
46992         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
46993         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
46994         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
46995         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
46996         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
46997         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
46998         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
46999         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
47000         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
47001         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
47002         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
47003         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
47004         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
47005         * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
47006         * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
47007         * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
47008         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
47009         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
47010         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
47011         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
47012         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
47013         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
47014         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
47015         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
47016         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
47017         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
47018         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
47019         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
47020         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
47021         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
47022         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
47023         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
47024         * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
47025         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
47026         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
47027         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
47028         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
47029         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
47030         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
47031         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
47032         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
47033         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
47034         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
47035         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
47036         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
47037         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
47038         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
47039         * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
47040         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
47041         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
47042         * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
47043         * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
47044         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
47045         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
47046         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
47047         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
47048         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
47049         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
47050         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
47051         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
47052         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
47053         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
47054         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
47055         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
47056         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
47057         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
47058         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
47059         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
47060         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
47061         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
47062         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
47063         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
47064         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
47065         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
47066         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
47067         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
47068         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
47069         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
47070         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
47071         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
47072         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
47073         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
47074         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
47075         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
47076         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
47077         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
47078         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
47079         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
47080         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
47081         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
47082         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
47083         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
47084         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
47085         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
47086         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
47087         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
47088         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
47089         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
47090         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
47091         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
47092         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
47093         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
47094         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
47095         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
47096         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
47097         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
47098         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
47099         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
47100         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
47101         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
47102         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
47103         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
47104         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
47105         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
47106         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
47107         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
47108         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
47109         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
47110         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
47111         * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
47112         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
47113         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
47114         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
47115         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
47116         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
47117         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
47118         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
47119         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
47120         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
47121         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
47122         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
47123         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
47124         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
47125         * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
47126         * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
47127         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
47128         * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
47129         * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
47130         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
47131         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
47132         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
47133         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
47134         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
47135         * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
47136         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
47137         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
47138         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
47139         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
47140         * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
47141         * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
47142         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
47143         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
47144         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
47145         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
47146         * sysdeps/ieee754/s_lib_version.c: Likewise.
47147         * sysdeps/ieee754/s_matherr.c: Likewise.
47148         * sysdeps/ieee754/s_signgam.c: Likewise.
47149         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
47150         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
47151         * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
47152         * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
47153         * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
47154         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
47155         * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
47156         * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
47157         * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
47158         * sysdeps/powerpc/fpu/s_rint.c: Likewise.
47159         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
47160         * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
47161         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
47162         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
47163         * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
47164         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
47165         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
47166         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
47167         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
47168         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
47169         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
47171 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
47173         * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
47174         * sunrpc/rpc_main.c: Likewise.
47175         * sunrpc/rpc_svcout.c: Likewise.
47177 2012-03-09  David S. Miller  <davem@davemloft.net>
47179         * include/math_private.h: New file.
47181 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
47183         * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
47184         * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
47185         * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
47186         from <bits/socket_type.h>.
47187         (enum __socket_type): Don't define here.
47188         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
47189         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
47190         bits/socket_type.h.
47192         [BZ #13566]
47193         * libio/stdio.h (gets): Always declare for C++ up to C++11 without
47194         checking __USE_GNU.
47196         * Makerules ($(inst_includedir)/%.h): New rule.
47197         * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
47198         (install-others): Remove variable setting.
47199         ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
47201 2012-03-08  Richard Henderson  <rth@twiddle.net>
47203         * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
47204         from macro to inline function; merge with the
47205         !__LIBC_INTERNAL_MATH_INLINES version.
47206         (__ieee754_sqrtf): Likewise.
47208         * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
47209         to inline function.
47210         (__rintf, __floor, __floorf): Likewise.
47212         * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
47213         macro to inline function.
47214         (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
47216         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
47217         not <math/math_private.h>.
47219 2012-03-08  David S. Miller  <davem@davemloft.net>
47221         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
47222         copyright year.
47223         * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
47225 2012-03-08  Thomas Schwinge  <thomas@codesourcery.com>
47227         * resolv/gai_misc.c (handle_requests): Fix struct timespec
47228         normalization.
47229         * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
47230         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
47232 2012-03-08  Ulrich Drepper  <drepper@gmail.com>
47234         * stdio-common/tst-fphex.c: Various cleanups.  The macros cannot
47235         be defined individually, they must be defined as a block.  Define
47236         S for printing a string instead of hidint the different by using a
47237         macro for adding the 'l'.
47238         * stdio-common/tst-fphex-wide.c: Adjust.
47240 2012-03-07  Marek Polacek  <polacek@redhat.com>
47242         * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
47244 2012-03-08  Marek Polacek  <polacek@redhat.com>
47246         [BZ #13806]
47247         * stdio-common/Makefile (tests): Add tst-fphex-wide.
47248         * stdio-common/tst-fphex.c: Define a few macros to make the
47249         test reusable.  Use them.
47250         * stdio-common/tst-fphex-wide.c: New file.
47252 2012-03-08  Joseph Myers  <joseph@codesourcery.com>
47254         [BZ #6911]
47255         * manual/macros.texi (gnusystems): New macro.
47256         (nongnusystems): Likewise.
47257         (gnulinuxhurdsystems): Likewise.
47258         (gnuhurdsystems): Likewise..
47259         (gnulinuxsystems): Likewise.
47260         * manual/charset.texi: Use new macros or @theglibc{} to refer to
47261         variants of the GNU system, not "GNU system".
47262         * manual/conf.texi: Likewise.
47263         * manual/errno.texi: Likewise.  Update example of errno macro
47264         expansion.
47265         * manual/filesys.texi: Likewise.
47266         (getumask): Document as specific to GNU/Hurd.
47267         * manual/install.texi: Likewise.  Reword some references to
47268         GNU/Linux.
47269         * manual/intro.texi: Likewise.
47270         * manual/io.texi: Likewise.
47271         (File Name Portability): Detail which constraints are inapplicable
47272         to all GNU systems and which are only inapplicable to GNU/Hurd.
47273         * manual/job.texi: Likewise.
47274         * manual/llio.texi: Likewise.
47275         (O_NOCTTY): Document as present on GNU/Linux.
47276         * manual/maint.texi: Likewise.
47277         * manual/memory.texi: Likewise.
47278         * manual/pattern.texi: Likewise.
47279         * manual/pipe.texi: Likewise.
47280         * manual/process.texi: Likewise.
47281         * manual/resource.texi: Likewise.
47282         (RUSAGE_CHILDREN): Remove statement about specifying a particular
47283         child on GNU/Hurd.
47284         * manual/setjmp.texi: Likewise.
47285         * manual/signal.texi: Likewise.
47286         * manual/startup.texi: Likewise.
47287         * manual/stdio.texi: Likewise.
47288         * manual/terminal.texi: Likewise.
47289         (ONLCR): Document as POSIX.
47290         (OXTABS): Document availability on GNU/Linux as XTABS.
47291         (ONOEOT): Document availability separately from other bits.
47292         (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
47293         * manual/time.texi: Likewise.
47294         * manual/users.texi: Likewise.
47295         * INSTALL: Regenerated.
47296         * sysdeps/gnu/errlist.c: Regenerated.
47298         * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
47299         * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
47300         (libc_cv_ctors_header): Likewise.  Use asm ("") instead of calling
47301         puts.
47302         * configure: Regenerated.
47304 2012-03-07  Joseph Myers  <joseph@codesourcery.com>
47306         * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
47307         default includes instead of AC_HEADER_CHECK.
47308         * sysdeps/i386/configure: Regenerated.
47310         [BZ #10716]
47311         * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
47312         * math/s_cacoshf.c (__cacoshf): Likewise.
47313         * math/s_cacoshl.c (__cacoshl): Likewise.
47314         * math/s_casinh.c (__casinh): Set signs of result from argument.
47315         * math/s_casinhf.c (__casinhf): Likewise.
47316         * math/s_casinhl.c (__casinhl): Likewise.
47317         * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
47318         (casinh_test): Add more tests.
47319         * sysdeps/i386/fpu/libm-test-ulps: Update.
47320         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47322 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
47324         * po/zh_TW.po: Update from translation team.
47326         * login/Makefile (distribute): Remove variable.
47327         * catgets/Makefile: Likewise.
47328         * mach/Makefile: Likewise.
47329         * malloc/Makefile: Likewise.
47330         * misc/Makefile: Likewise.
47331         * iconv/Makefile: Likewise.
47332         * nscd/Makefile: Likewise.
47333         * hurd/Makefile: Likewise.
47334         * manual/Makefile: Likewise.
47335         * locale/Makefile: Likewise.
47336         * intl/Makefile: Likewise.
47337         * conform/Makefile: Likewise.
47338         * nss/Makefile: Likewise.
47339         * time/Makefile: Likewise.
47340         * soft-fp/Makefile: Likewise.
47341         * dirent/Makefile: Likewise.
47342         * gmon/Makefile: Likewise.
47343         * po/Makefile: Likewise.
47344         * rt/Makefile: Likewise.
47345         * socket/Makefile: Likewise.
47346         * math/Makefile: Likewise.
47347         * signal/Makefile: Likewise.
47348         * debug/Makefile: Likewise.
47349         * elf/Makefile: Likewise.
47350         * timezone/Makefile: Likewise.
47351         * stdlib/Makefile: Likewise.
47352         * iconvdata/Makefile: Likewise.
47353         * sunrpc/Makefile: Likewise.
47354         * io/Makefile: Likewise.
47355         * argp/Makefile: Likewise.
47356         * inet/Makefile: Likewise.
47357         * hesiod/Makefile: Likewise.
47358         * grp/Makefile: Likewise.
47359         * csu/Makefile: Likewise.
47360         * wctype/Makefile: Likewise.
47361         * crypt/Makefile: Likewise.
47362         * libio/Makefile: Likewise.
47363         * string/Makefile: Likewise.
47364         * nis/Makefile: Likewise.
47365         * resolv/Makefile: Likewise.
47366         * stdio-common/Makefile: Likewise.
47367         * wcsmbs/Makefile: Likewise.
47368         * dlfcn/Makefile: Likewise.
47369         * posix/Makefile: Likewise.
47371         [BZ #6959]
47372         * timezone/Makefile: Don't install timezone files, just the programs
47373         and scripts.
47375 2012-03-06  Ulrich Drepper  <drepper@gmail.com>
47377         * nss/databases.def: Add missing gshadow entry.
47379         * stdio-common/vfprintf.c: Fix formatting.  Missing copyright update.
47381 2012-03-06  Marek Polacek  <polacek@redhat.com>
47383         [BZ #13726]
47384         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
47385         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
47386         * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
47387         * stdio-common/tst-long-dbl-fphex.c: New file.
47389 2012-03-06  David S. Miller  <davem@davemloft.net>
47391         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
47392         (set_obp_int): New function.
47393         (get_obp_int): New function.
47394         (__get_clockfreq_via_dev_openprom): Likewise.
47395         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
47396         Avoid unused variable warnings on 'val' and use builtin_expect.
47397         (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
47398         __builtin_expect.
47399         (INLINE_CLONE_SYSCALL): Likewise.
47401 2012-03-05  David S. Miller  <davem@davemloft.net>
47403         * sysdeps/sparc/fpu/libm-test-ulps: Update.
47405 2012-03-05  Andreas Schwab  <schwab@linux-m68k.org>
47407         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
47409         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
47410         only for |x| >= 40.
47411         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
47413 2012-03-05  H.J. Lu  <hongjiu.lu@intel.com>
47415         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
47416         Replace gettimeofday with __vdso_gettimeofday.
47418         * sysdeps/unix/sysv/linux/x86_64/init-first.c
47419         (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
47420         __vdso_clock_gettime and __vdso_getcpu.
47422         * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
47423         time with __vdso_time.
47425 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
47427         * manual/lang.texi (size_t): Note types to which size_t may be
47428         equivalent with the GNU C Library, but do not describe when
47429         differences between them are significant.
47431 2012-03-05  Andreas Jaeger  <aj@suse.de>
47433         * sysdeps/i386/fpu/libm-test-ulps: Update.
47435 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
47437         [BZ #3976]
47438         * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
47439         (__ieee754_pow): Save and restore rounding mode and use
47440         round-to-nearest for main computations.
47441         * math/libm-test.inc (pow_test_tonearest): New function.
47442         (pow_test_towardzero): Likewise.
47443         (pow_test_downward): Likewise.
47444         (pow_test_upward): Likewise.
47445         (main): Call the new functions.
47446         * sysdeps/i386/fpu/libm-test-ulps: Update.
47447         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47449         [BZ #3976]
47450         * math/libm-test.inc (cosh_test_tonearest): New function.
47451         (cosh_test_towardzero): Likewise.
47452         (cosh_test_downward): Likewise.
47453         (cosh_test_upward): Likewise.
47454         (sinh_test_tonearest): Likewise.
47455         (sinh_test_towardzero): Likewise.
47456         (sinh_test_downward): Likewise.
47457         (sinh_test_upward): Likewise.
47458         (main): Call the new functions.
47459         * sysdeps/i386/fpu/libm-test-ulps: Update.
47460         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47462 2012-03-05  Tom de Vries  <tom@codesourcery.com>
47464         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
47465         default stack guard is set in last bytes.
47466         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
47468 2012-03-05  Kees Cook  <keescook@chromium.org>
47470         * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
47472         [BZ #13656]
47473         * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
47474         possibly allocate from heap instead of stack.
47475         * stdio-common/bug-vfprintf-nargs.c: New file.
47476         * stdio-common/Makefile (tests): Add nargs overflow test.
47478 2012-03-03  Andreas Schwab  <schwab@linux-m68k.org>
47480         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
47482 2012-03-03  Marek Polacek  <polacek@redhat.com>
47484         * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
47485         * math/math_private.h: Likewise.
47486         * stdlib/tst-strtod.c: Likewise.
47487         * sysdeps/i386/i486/bits/atomic.h: Likewise.
47488         * sysdeps/x86_64/bits/atomic.h: Likewise.
47490 2012-03-02  David S. Miller  <davem@davemloft.net>
47492         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
47493         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
47494         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
47495         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
47496         * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
47497         * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
47498         * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
47499         * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
47501 2012-03-02  Roland McGrath  <roland@hack.frob.com>
47503         [BZ #13792]
47504         * manual/examples/README: New file, says the example source files
47505         can be used under GPL>=2.
47506         * manual/Makefile (%.c.texi): Eat the leading part of the file until a
47507         line containing just "*/".
47508         * manual/examples/add.c: Add copyright header (GPL>=2).
47509         * manual/examples/argp-ex1.c: Likewise.
47510         * manual/examples/argp-ex2.c: Likewise.
47511         * manual/examples/argp-ex3.c: Likewise.
47512         * manual/examples/argp-ex4.c: Likewise.
47513         * manual/examples/atexit.c: Likewise.
47514         * manual/examples/db.c: Likewise.
47515         * manual/examples/dir.c: Likewise.
47516         * manual/examples/dir2.c: Likewise.
47517         * manual/examples/execinfo.c: Likewise.
47518         * manual/examples/filecli.c: Likewise.
47519         * manual/examples/filesrv.c: Likewise.
47520         * manual/examples/fmtmsgexpl.c: Likewise.
47521         * manual/examples/genpass.c: Likewise.
47522         * manual/examples/inetcli.c: Likewise.
47523         * manual/examples/inetsrv.c: Likewise.
47524         * manual/examples/isockad.c: Likewise.
47525         * manual/examples/longopt.c: Likewise.
47526         * manual/examples/memopen.c: Likewise.
47527         * manual/examples/memstrm.c: Likewise.
47528         * manual/examples/mkfsock.c: Likewise.
47529         * manual/examples/mkisock.c: Likewise.
47530         * manual/examples/mygetpass.c: Likewise.
47531         * manual/examples/pipe.c: Likewise.
47532         * manual/examples/popen.c: Likewise.
47533         * manual/examples/rprintf.c: Likewise.
47534         * manual/examples/search.c: Likewise.
47535         * manual/examples/select.c: Likewise.
47536         * manual/examples/setjmp.c: Likewise.
47537         * manual/examples/sigh1.c: Likewise.
47538         * manual/examples/sigusr.c: Likewise.
47539         * manual/examples/stpcpy.c: Likewise.
47540         * manual/examples/strdupa.c: Likewise.
47541         * manual/examples/strftim.c: Likewise.
47542         * manual/examples/strncat.c: Likewise.
47543         * manual/examples/subopt.c: Likewise.
47544         * manual/examples/swapcontext.c: Likewise.
47545         * manual/examples/termios.c: Likewise.
47546         * manual/examples/testopt.c: Likewise.
47547         * manual/examples/testpass.c: Likewise.
47548         * manual/examples/timeval_subtract.c: Likewise.
47550         [BZ #13792]
47551         * manual/time.texi (Elapsed Time): Move timeval_subtract example
47552         function to ...
47553         * manual/timeval_subtract.c.texi: ... here, new file.
47555 2012-03-02  David S. Miller  <davem@davemloft.net>
47557         * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
47559 2012-03-02  Joseph Myers  <joseph@codesourcery.com>
47561         [BZ #3976]
47562         * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
47563         (__sin): Save and restore rounding mode and use round-to-nearest
47564         for all computations.
47565         (__cos): Save and restore rounding mode and use round-to-nearest
47566         for all computations.
47567         * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
47568         <fenv.h>.
47569         (tan): Save and restore rounding mode and use round-to-nearest for
47570         all computations.
47571         * math/libm-test.inc (cos_test_tonearest): New function.
47572         (cos_test_towardzero): Likewise.
47573         (cos_test_downward): Likewise.
47574         (cos_test_upward): Likewise.
47575         (sin_test_tonearest): Likewise.
47576         (sin_test_towardzero): Likewise.
47577         (sin_test_downward): Likewise.
47578         (sin_test_upward): Likewise.
47579         (tan_test_tonearest): Likewise.
47580         (tan_test_towardzero): Likewise.
47581         (tan_test_downward): Likewise.
47582         (tan_test_upward): Likewise.
47583         (main): Call the new functions.
47584         * sysdeps/i386/fpu/libm-test-ulps: Update.
47585         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47587         [BZ #10135]
47588         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
47589         small n, then large n, before computing and testing k+n.
47590         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
47591         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
47592         Likewise.
47593         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
47594         Likewise.
47595         * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
47596         * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
47597         * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
47598         * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
47599         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
47600         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
47601         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
47602         * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
47603         * math/libm-test.inc (scalbn_test): Add more tests.
47604         (scalbln_test): Likewise.
47606         * manual/filesys.texi (mode_t): Describe constraints on size and
47607         signedness, not exact equivalence to a particular type.
47608         (ino_t): Likewise.
47609         (ino64_t): Likewise.
47610         (dev_t): Likewise.
47611         (nlink_t): Likewise.
47612         (blkcnt_t): Likewise.
47613         (blkcnt64_t): Likewise.
47614         * manual/llio.texi (off_t): Likewise.
47616         [BZ #3976]
47617         * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
47618         (__ieee754_exp): Save and restore rounding mode and use
47619         round-to-nearest for all computations.
47620         * math/libm-test.inc (exp_test_tonearest): New function.
47621         (exp_test_towardzero): Likewise.
47622         (exp_test_downward): Likewise.
47623         (exp_test_upward): Likewise.
47624         (main): Call the new functions.
47625         * sysdeps/i386/fpu/libm-test-ulps: Update.
47626         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47628 2012-03-01  Chris Demetriou  <cgd@google.com>
47630         * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
47631         have predictable order.
47633 2012-03-01  David S. Miller  <davem@davemloft.net>
47635         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
47637         * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
47638         * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
47639         * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
47640         * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
47642         * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
47643         * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
47644         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
47645         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
47646         * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
47647         * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
47648         * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
47649         * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
47650         * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
47652         * sysdeps/sparc/fpu/libm-test-ulps: Update.
47654         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
47655         * sysdeps/sparc/fpu/libm-test-ulps: to here.
47656         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
47658         * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
47659         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
47660         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
47661         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
47662         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
47663         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
47664         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
47665         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
47666         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
47667         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
47668         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
47669         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
47670         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
47671         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
47672         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
47673         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
47674         * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
47675         * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
47676         * sysdeps/sparc/elf/configure: Regenerated.
47678 2012-03-01  Joseph Myers  <joseph@codesourcery.com>
47680         * configure.in (AS, LD): Require binutils 2.20 or later.
47681         * configure: Regenerated.
47682         * manual/install.texi (Tools for Compilation): Give binutils 2.20
47683         as required minimum version.
47684         * INSTALL: Regenerated.
47686         [BZ #2541]
47687         [BZ #4108]
47688         * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
47689         before squaring exponent.
47690         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
47691         bottom long double and 27 bits of top long double before squaring
47692         exponent.
47693         * math/libm-test.inc (erfc_test): Add more tests.
47694         * sysdeps/i386/fpu/libm-test-ulps: Update.
47695         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
47696         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47698 2012-03-01  Kai Tietz  <ktietz@redhat.com>
47700         * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
47701         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
47702         containing bit-fields.
47703         * soft-fp/extended.h (_FP_UNION_E): Likewise.
47704         * soft-fp/single.h (_FP_UNION_S): Likewise.
47705         * soft-fp/double.h (_FP_UNION_D): Likewise.
47707 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
47709         [BZ #13786]
47710         * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
47711         not include ../strcmp.S.
47712         [USE_AS_STRNCASECMP_L]: Likewise.
47713         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
47714         (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
47715         * sysdeps/i386/i686/multiarch/strncase_l-c.c
47716         (__strncasecmp_l_ia32): Define as alias to
47717         __strncasecmp_l_nonascii.
47719         [BZ #5794]
47720         * math/libm-test.inc (expm1_test): Add test for bug 5794.
47721         * sysdeps/i386/fpu/libm-test-ulps: Update.
47722         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47724         * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
47725         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47727 2012-02-29  Jeff Law  <law@redhat.com>
47729         * resolv/res_query.c (__libc_res_nquerydomain): Avoid
47730         out of bounds read.
47732 2012-02-29  Marek Polacek  <polacek@redhat.com>
47734         [BZ #13706]
47735         * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
47736         * elf/Makefile: Add rules to run tst-unused-dep.out.
47738 2012-02-28  David S. Miller  <davem@davemloft.net>
47740         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
47741         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
47742         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
47743         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
47744         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
47745         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
47747 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
47749         * math/libm-test.inc (llround_test): Move one test from
47750         lround_test.  Use TEST_f_L in moved test.
47751         (lround_test): Move misplaced test to llround_test.  Add testcase
47752         from bug 2561.
47754 2012-02-28  Ulrich Drepper  <drepper@gmail.com>
47756         * sysdeps/x86_64/fpu/e_expf.S: New file.
47757         Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
47759 2012-02-28  Stanislav Brabec  <sbrabec@suse.cz>
47761         [BZ #13637]
47762         * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
47763         of remain_len that may cause incomplete multi-byte character and
47764         false match.
47765         * posix/bug-regex33.c: New file.
47766         * posix/Makefile (tests): Add bug-regex33.
47768 2012-02-28  Joseph Myers  <joseph@codesourcery.com>
47770         * manual/macros.texi: New file.
47771         * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
47772         * manual/libc.texinfo: Include macros.texi.
47773         * manual/creatute.texi: Likewise.
47774         * manual/install.texi: Likewise.
47775         * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
47776         @glibcadj{} in references to the GNU C Library.
47777         * manual/charset.texi: Likewise.
47778         * manual/conf.texi: Likewise.
47779         * manual/contrib.texi: Likewise.  Consistently use "GNU C Library"
47780         when not using those macros.
47781         * manual/creature.texi: Likewise.
47782         * manual/crypt.texi: Likewise.
47783         * manual/errno.texi: Likewise.
47784         * manual/filesys.texi: Likewise.
47785         * manual/header.texi: Likewise.
47786         * manual/install.texi: Likewise.
47787         * manual/intro.texi: Likewise.
47788         * manual/io.texi: Likewise.
47789         * manual/job.texi: Likewise.
47790         * manual/lang.texi: Likewise.
47791         * manual/libc.texiinfo: Likewise.
47792         * manual/llio.texi: Likewise.
47793         * manual/locale.texi: Likewise.
47794         * manual/maint.texi: Likewise.
47795         * manual/math.texi: Likewise.
47796         * manual/memory.texi: Likewise.
47797         * manual/message.texi: Likewise.
47798         * manual/nss.texi: Likewise.
47799         * manual/pattern.texi: Likewise.
47800         * manual/process.texi: Likewise.
47801         * manual/resource.texi: Likewise.
47802         * manual/search.texi: Likewise.
47803         * manual/setjmp.texi: Likewise.
47804         * manual/signal.texi: Likewise.
47805         * manual/socket.texi: Likewise.
47806         * manual/startup.texi: Likewise.
47807         * manual/stdio.texi: Likewise.
47808         * manual/string.texi: Likewise.
47809         * manual/sysinfo.texi: Likewise.
47810         * manual/syslog.texi: Likewise.
47811         * manual/terminal.texi: Likewise.
47812         * manual/time.texi: Likewise.
47813         * manual/users.texi: Likewise.
47814         * INSTALL: Regenerated.
47815         * NOTES: Regenerated.
47816         * sysdeps/gnu/errlist.c: Regenerated.
47818 2012-02-28  Andreas Schwab  <schwab@linux-m68k.org>
47820         * include/dirent.h: Include <dirstream.h> before
47821         <dirent/dirent.h>.
47823 2012-02-28  David S. Miller  <davem@davemloft.net>
47825         * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
47826         * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
47827         * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
47828         * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
47830 2012-02-27  David S. Miller  <davem@davemloft.net>
47832         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
47833         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
47834         * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
47835         * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
47837         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
47838         frame pointer instead of stack pointer relative arg slot.
47839         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
47840         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
47841         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
47843 2012-02-27  Carlos O'Donell  <carlos_odonell@mentor.com>
47845         [BZ #3992]
47846         * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
47848 2012-02-27  David S. Miller  <davem@davemloft.net>
47850         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
47851         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
47852         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
47853         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
47854         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
47855         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
47856         * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
47857         * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
47859 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
47861         * configure.in (CC): Restrict allowed GCC versions to 4.3 and
47862         later.  Allow versions 5-9.
47863         * configure: Regenerated.
47864         * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
47865         required minimum version and 4.6 as recommended version.  Do not
47866         mention bugs in GCC 2.7 and 2.8.
47867         * INSTALL: Regenerated.
47869 2012-02-27  David S. Miller  <davem@davemloft.net>
47871         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
47872         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
47873         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
47874         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
47875         * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
47876         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
47877         * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
47878         * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
47880         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
47881         manipulate bits before adding and subtracting TWO112[sx].
47882         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
47884 2012-02-27  Roland McGrath  <roland@hack.frob.com>
47886         [BZ #13775]
47887         * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
47888         [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
47889         * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
47890         being in POSIX, because they are in 1003.1-2008.
47892         * rt/tst-aio.c: Include <fcntl.h>.
47893         * rt/tst-aio7.c: Likewise.
47894         * rt/tst-aio64.c: Likewise.
47896         * stdio-common/tst-fmemopen.c (main): Remove spurious const.
47898 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
47900         * manual/install.texi (--with-headers): Describe headers as
47901         interface headers, not private headers.
47902         (Specific advice for GNU/Linux systems): Describe use of headers
47903         from "make headers_install", not private headers from older
47904         kernels.
47905         * INSTALL: Regenerated.
47906         * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
47907         Change to 2.6.19.
47908         * sysdeps/unix/sysv/linux/configure: Regenerated.
47910         * manual/llio.texi (fclean): Remove documentation.
47912         * manual/Makefile (libc-texi-generated): New variable.  Include
47913         version.texi.
47914         (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
47915         $(libc-texi-generated), not duplicated list of files.
47916         (version.texi, stamp-version): New rules.
47917         (realclean): Remove $(libc-texi-generated), not individual files
47918         from that list.  Do not remove dir-add.texinfo.
47919         * manual/libc.texinfo: Comment out uses of edition numbers and
47920         references to printed manual.  Remove last-updated dates.
47921         (EDITION): Comment out.
47922         (ISBN): Likewise.
47923         (VERSION, UPDATED): Remove.
47924         (version.texi): Include.
47926 2012-02-27  Andreas Schwab  <schwab@linux-m68k.org>
47928         * sysdeps/posix/spawni.c: Include <signal.h>.
47929         * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
47930         * sysdeps/pthread/aio_fsync.c: Likewise.
47932 2012-02-26  Ulrich Drepper  <drepper@gmail.com>
47934         * conform/Makefile (tests): Run only when not cross-compiling and
47935         when fast-check is not defined.
47937         * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
47938         * conform/data/limits.h-data: Fixes for POSIX2008.
47939         * conform/run-conformtest.sh: Run all tests.
47940         * include/arpa/inet.h: Changes to allow conformtest.pl to use the
47941         headers.
47942         * include/bits/dlfcn.h: Likewise.
47943         * include/langinfo.h: Likewise.
47944         * include/monetary.h: Likewise.
47945         * include/sys/poll.h: Likewise.
47947         * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
47948         for __USE_GNU.
47949         * posix/spawn.h: Define __need_sigset_t.
47950         * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
47951         * posix/unistd.h: Declare ctermid only for XPG before XPG6.
47952         * rt/aio.h: Don't include fcntl.h and signal.h.  Use bits/siginfo.h
47953         to get sigevent_t only.
47954         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
47955         only for __USE_GNU.
47956         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
47957         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
47958         process_vm_writev only for __USE_GNU.
47959         * termios/termios.h: Declare tcgetsid also for POSIX2008.
47961         * conform/Makefile: For now ignore errors from run-conformtest.
47962         * conform/conformtest.pl: Simplify code.  Add -ansi to CFLAGS for
47963         POSIX to avoid namespace pollution.  Don't prepend headers.
47964         * conform/data/aio.h-data: Fixes for POSIX testing.
47965         * conform/data/fcntl.h-data: Likewise.
47966         * conform/data/glob.h-data: Likewise.
47967         * conform/data/grp.h-data: Likewise.
47968         * conform/data/pthread.h-data: Likewise.
47969         * conform/data/pwd.h-data: Likewise.
47970         * conform/data/signal.h-data: Likewise.
47971         * conform/data/spawn.h-data: Likewise.
47972         * conform/data/stdio.h-data: Likewise.
47973         * conform/data/stdlib.h-data: Likewise.
47974         * conform/data/stropts.h-data: Likewise.
47975         * conform/data/sys/mman.h-data: Likewise.
47976         * conform/data/sys/stat.h-data: Likewise.
47977         * conform/data/sys/types.h-data: Likewise.
47978         * conform/data/sys/wait.h-data: Likewise.
47979         * conform/data/time.h-data: Likewise.
47980         * conform/data/unistd.h-data: Likewise.
47981         * conform/data/utime.h-data: Likewise.
47983         * io/sys/stat.h: fchmod was always in POSIX.
47984         * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
47985         * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
47986         * rt/aio.h: Define __need_timespec before including <time.h>.
47987         * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
47988         struct.  Add forward declaration of pthread_attr_t and use it in
47989         sigevent.
47990         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
47991         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
47992         * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
47993         always remove CLK_TCK definition.
47995 2012-02-26  Andreas Schwab  <schwab@linux-m68k.org>
47997         * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
47999 2012-02-25  Ulrich Drepper  <drepper@gmail.com>
48001         * conform/run-conformtest.sh: New file.
48002         * conform/Makefile: Run run-conformtest for tests.
48003         * conform/conformtest.pl: Many bug fixes.  Add ISO C99, ISO C11
48004         support.
48006         * conform/data/uchar.h-data: New file.
48007         * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
48008         * conform/data/arpa/inet.h-data: Likewise.
48009         * conform/data/assert.h-data: Likewise.
48010         * conform/data/complex.h-data: Likewise.
48011         * conform/data/cpio.h-data: Likewise.
48012         * conform/data/ctype.h-data: Likewise.
48013         * conform/data/dirent.h-data: Likewise.
48014         * conform/data/dlfcn.h-data: Likewise.
48015         * conform/data/errno.h-data: Likewise.
48016         * conform/data/fcntl.h-data: Likewise.
48017         * conform/data/float.h-data: Likewise.
48018         * conform/data/fmtmsg.h-data: Likewise.
48019         * conform/data/fnmatch.h-data: Likewise.
48020         * conform/data/ftw.h-data: Likewise.
48021         * conform/data/glob.h-data: Likewise.
48022         * conform/data/grp.h-data: Likewise.
48023         * conform/data/iconv.h-data: Likewise.
48024         * conform/data/inttypes.h-data: Likewise.
48025         * conform/data/langinfo.h-data: Likewise.
48026         * conform/data/libgen.h-data: Likewise.
48027         * conform/data/limits.h-data: Likewise.
48028         * conform/data/locale.h-data: Likewise.
48029         * conform/data/math.h-data: Likewise.
48030         * conform/data/monetary.h-data: Likewise.
48031         * conform/data/mqueue.h-data: Likewise.
48032         * conform/data/ndbm.h-data: Likewise.
48033         * conform/data/net/if.h-data: Likewise.
48034         * conform/data/netdb.h-data: Likewise.
48035         * conform/data/netinet/in.h-data: Likewise.
48036         * conform/data/nl_types.h-data: Likewise.
48037         * conform/data/poll.h-data: Likewise.
48038         * conform/data/pthread.h-data: Likewise.
48039         * conform/data/pwd.h-data: Likewise.
48040         * conform/data/regex.h-data: Likewise.
48041         * conform/data/sched.h-data: Likewise.
48042         * conform/data/search.h-data: Likewise.
48043         * conform/data/semaphore.h-data: Likewise.
48044         * conform/data/setjmp.h-data: Likewise.
48045         * conform/data/signal.h-data: Likewise.
48046         * conform/data/spawn.h-data: Likewise.
48047         * conform/data/stdarg.h-data: Likewise.
48048         * conform/data/stdio.h-data: Likewise.
48049         * conform/data/stdlib.h-data: Likewise.
48050         * conform/data/string.h-data: Likewise.
48051         * conform/data/strings.h-data: Likewise.
48052         * conform/data/stropts.h-data: Likewise.
48053         * conform/data/sys/ipc.h-data: Likewise.
48054         * conform/data/sys/mman.h-data: Likewise.
48055         * conform/data/sys/msg.h-data: Likewise.
48056         * conform/data/sys/resource.h-data: Likewise.
48057         * conform/data/sys/select.h-data: Likewise.
48058         * conform/data/sys/sem.h-data: Likewise.
48059         * conform/data/sys/shm.h-data: Likewise.
48060         * conform/data/sys/socket.h-data: Likewise.
48061         * conform/data/sys/stat.h-data: Likewise.
48062         * conform/data/sys/statvfs.h-data: Likewise.
48063         * conform/data/sys/time.h-data: Likewise.
48064         * conform/data/sys/timeb.h-data: Likewise.
48065         * conform/data/sys/times.h-data: Likewise.
48066         * conform/data/sys/types.h-data: Likewise.
48067         * conform/data/sys/uio.h-data: Likewise.
48068         * conform/data/sys/un.h-data: Likewise.
48069         * conform/data/sys/utsname.h-data: Likewise.
48070         * conform/data/sys/wait.h-data: Likewise.
48071         * conform/data/syslog.h-data: Likewise.
48072         * conform/data/tar.h-data: Likewise.
48073         * conform/data/termios.h-data: Likewise.
48074         * conform/data/utime.h-data: Likewise.
48075         * conform/data/utmpx.h-data: Likewise.
48076         * conform/data/varargs.h-data: Likewise.
48077         * conform/data/wchar.h-data: Likewise.
48078         * conform/data/wctype.h-data: Likewise.
48079         * conform/data/wordexp.h-data: Likewise.
48081         * include/stropts.h: New file.
48082         * include/uchar.h: New file.
48083         * include/aio.h: Changes to allow conformtest.pl to use the headers.
48084         * include/assert.h: Likewise.
48085         * include/ctype.h: Likewise.
48086         * include/dirent.h: Likewise.
48087         * include/dlfcn.h: Likewise.
48088         * include/fcntl.h: Likewise.
48089         * include/fnmatch.h: Likewise.
48090         * include/glob.h: Likewise.
48091         * include/grp.h: Likewise.
48092         * include/libio.h: Likewise.
48093         * include/locale.h: Likewise.
48094         * include/math.h: Likewise.
48095         * include/net/if.h: Likewise.
48096         * include/netdb.h: Likewise.
48097         * include/netinet/in.h: Likewise.
48098         * include/pthread.h: Likewise.
48099         * include/pwd.h: Likewise.
48100         * include/regex.h: Likewise.
48101         * include/sched.h: Likewise.
48102         * include/search.h: Likewise.
48103         * include/setjmp.h: Likewise.
48104         * include/signal.h: Likewise.
48105         * include/stdio.h: Likewise.
48106         * include/stdlib.h: Likewise.
48107         * include/string.h: Likewise.
48108         * include/sys/cdefs.h: Likewise.
48109         * include/sys/mman.h: Likewise.
48110         * include/sys/msg.h: Likewise.
48111         * include/sys/resource.h: Likewise.
48112         * include/sys/select.h: Likewise.
48113         * include/sys/socket.h: Likewise.
48114         * include/sys/stat.h: Likewise.
48115         * include/sys/statvfs.h: Likewise.
48116         * include/sys/time.h: Likewise.
48117         * include/sys/times.h: Likewise.
48118         * include/sys/uio.h: Likewise.
48119         * include/sys/utsname.h: Likewise.
48120         * include/sys/wait.h: Likewise.
48121         * include/termios.h: Likewise.
48122         * include/time.h: Likewise.
48123         * include/ulimit.h: Likewise.
48124         * include/unistd.h: Likewise.
48125         * include/utime.h: Likewise.
48126         * include/wchar.h: Likewise.
48127         * include/wctype.h: Likewise.
48128         * include/wordexp.h: Likewise.
48130         * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
48132         * time/time.h: TIME_UTC must be a macro.
48133         Make timespec_get available for ISO C11 only as well.
48135 2012-02-24  Ulrich Drepper  <drepper@gmail.com>
48137         * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
48138         Reported by Peng Haitao <penght@cn.fujitsu.com>.
48140 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
48142         * configure.in: Use -o not -a in test for unsupported multi-arch.
48144 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
48146         * manual/texinfo.tex: Update to version 2012-01-19.16.
48148 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
48150         * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
48152 2012-02-24  Roland McGrath  <roland@hack.frob.com>
48154         [BZ #13738]
48155         * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
48156         * manual/fdl-1.3.texi: New file.
48157         * manual/fdl-1.1.texi: File removed.
48159         [BZ #13738]
48160         * manual/libc.texinfo (FDL_VERSION): New @set.
48161         Use it for mention of FDL in cover text.
48162         (Documentation License): Use it in @include file name.
48164 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
48165             Roland McGrath  <roland@hack.frob.com>
48167         [BZ #5461]
48168         * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
48169         (not LONG_LONG_MAX and LONG_LONG_MIN.
48170         * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
48171         LLONG_MIN.  Refer to LONG_LONG_MIN only as older GCC-specific
48172         name.
48173         (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
48175 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
48177         [BZ #2547]
48178         [BZ #11365]
48179         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
48180         manipulate bits before adding and subtracting TWO23[sx].
48181         * math/libm-test.inc (nearbyint_test): Add more tests.
48183 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
48185         [BZ #2548]
48186         * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
48187         bits before adding and subtracting TWO23[sx].
48188         * math/libm-test.inc (rint_test): Add more tests.
48189         (rint_test_tonearest): Likewise.
48190         (rint_test_towardzero): Likewise.
48191         (rint_test_downward): Likewise.
48192         (rint_test_upward: Likewise.
48194 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
48196         [BZ #10110]
48197         * include/stdc-predef.h: New file.  Extracted from features.h.
48198         * include/features.h: Include stdc-predef.h.
48199         * Makefile (headers): Add stdc-predef.h.
48200         * CONFORMANCE (Compiler limitations): Update.
48202 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
48204         * manual/libc.texinfo (VERSION, UPDATED): Revert.
48206 2012-02-21  David S. Miller  <davem@davemloft.net>
48208         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
48209         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
48211 2012-02-20  David S. Miller  <davem@davemloft.net>
48213         * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
48214         using a normal save/restore sequence, rather than allocating a
48215         dummy stack frame just to store a frame pointer and restore.
48216         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
48218 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
48220         * manual/install.texi: Fix stray word in line-wrapped comment.
48222 2012-02-20  David S. Miller  <davem@davemloft.net>
48224         * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
48225         both binutils and gcc support GOTDATA.
48227         * sysdeps/unix/sparc/sysdep.h: Document why we don't use
48228         "rd %pc" in the PIC register setup sequences.
48230         * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
48231         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
48232         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
48233         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
48234         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
48235         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
48236         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
48237         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
48238         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
48239         (SYSCALL_ERROR_HANDLER): Likewise.
48240         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
48241         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
48242         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
48243         (SYSCALL_ERROR_HANDLER): Likewise.
48245         * config.h.in (HAVE_BINUTILS_GOTDATA): New.
48246         (HAVE_GCC_GOTDATA): New.
48247         * sysdeps/sparc/elf/configure.in: Test for GOTDATA
48248         relocation support in both binutils and gcc.
48249         * sysdeps/sparc/elf/configure: Regenerate.
48251         * sysdeps/sparc/sparc32/elf/configure.in: Delete.
48252         * sysdeps/sparc/sparc32/elf/configure: Delete.
48253         * sysdeps/sparc/sparc64/elf/configure.in: Delete.
48254         * sysdeps/sparc/sparc64/elf/configure: Delete.
48255         * sysdeps/sparc/elf/configure.in: New file.
48256         * sysdeps/sparc/elf/configure: Generate.
48258         * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
48259         * sysdeps/sparc/sparc32/elf/configure: Regenerate.
48260         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
48261         * sysdeps/sparc/sparc64/elf/configure: Regenerate.
48262         * config.h.in (BROKEN_SPARC_WDISP22): Remove.
48264 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
48266         * manual/install.texi: Do not mention specific glibc version
48267         numbers.
48268         * manual/libc.texinfo (VERSION, UPDATED): Update.
48269         (@copying): Use @copyright{} and range of years.
48271 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
48273         [BZ #13695]
48274         * csu/Makefile (distribute): Remove initfini.c and defs.awk.
48275         [crti.S not in sysdirs] (generated): Do not append.
48276         [crti.S not in sysdirs] (omit-deps): Likewise.
48277         [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
48278         [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
48279         [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
48280         [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
48281         [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
48282         Likewise.
48283         [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
48284         [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
48285         [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
48286         * csu/defs.awk: Remove file.
48287         * sysdeps/generic/initfini.c: Likewise.
48288         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
48289         variable.
48290         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
48291         Likewise.
48293 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
48295         * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
48296         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
48297         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
48298         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
48299         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
48300         * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
48301         <bits/epoll.h>.
48302         (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
48303         (__EPOLL_PACKED): Define to empty if not defined by
48304         <bits/epoll.h>.
48305         (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
48306         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48307         bits/epoll.h.
48309 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
48311         * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
48312         * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
48313         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
48314         * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
48315         <bits/timerfd.h>.
48316         (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
48317         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48318         bits/timerfd.h.
48320 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
48322         * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
48323         in C locale.
48324         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
48325         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
48326         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
48327         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48329 2012-02-20  Aurelien Jarno  <aurelien@aurel32.net>
48331         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
48332         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
48334 2012-02-19  Andreas Schwab  <schwab@linux-m68k.org>
48336         * manual/errno.texi (Error Codes): Add EHWPOISON entry.
48337         * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
48338         defined.
48339         * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
48340         Likewise.
48341         * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
48342         entry for 2.16.
48344 2012-02-19  Aurelien Jarno  <aurelien@aurel32.net>
48346         * math/w_acos.c: Use non-signaling floating-point comparisons.
48347         * math/w_acosf.c: Likewise.
48348         * math/w_acosh.c: Likewise.
48349         * math/w_acoshf.c: Likewise.
48350         * math/w_acoshl.c: Likewise.
48351         * math/w_acosl.c: Likewise.
48352         * math/w_asin.c: Likewise.
48353         * math/w_asinf.c: Likewise.
48354         * math/w_asinl.c: Likewise.
48355         * math/w_atanh.c: Likewise.
48356         * math/w_atanhf.c: Likewise.
48357         * math/w_atanhl.c: Likewise.
48358         * math/w_exp2.c: Likewise.
48359         * math/w_exp2f.c: Likewise.
48360         * math/w_exp2l.c: Likewise.
48361         * math/w_j0.c: Likewise.
48362         * math/w_j0f.c: Likewise.
48363         * math/w_j0l.c: Likewise.
48364         * math/w_j1.c: Likewise.
48365         * math/w_j1f.c: Likewise.
48366         * math/w_j1l.c: Likewise.
48367         * math/w_jn.c: Likewise.
48368         * math/w_jnf.c: Likewise.
48369         * math/w_log.c: Likewise.
48370         * math/w_log10.c: Likewise.
48371         * math/w_log10f.c: Likewise.
48372         * math/w_log10l.c: Likewise.
48373         * math/w_log2.c: Likewise.
48374         * math/w_log2f.c: Likewise.
48375         * math/w_log2l.c: Likewise.
48376         * math/w_logf.c: Likewise.
48377         * math/w_logl.c: Likewise.
48378         * math/w_sqrt.c: Likewise.
48379         * math/w_sqrtf.c: Likewise.
48380         * math/w_sqrtl.c: Likewise.
48381         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
48382         * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
48383         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
48384         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
48385         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
48387 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
48389         [BZ #9739]
48390         * manual/string.texi (strnlen): Use correct parameter name in
48391         equivalent expression.
48393 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
48395         [BZ #11174]
48396         * manual/users.texi (seteuid): Consistently use neweuid for
48397         argument name.
48399 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
48401         [BZ #13704]
48402         * manual/nss.texi (Services in the NSS configuration): Correct
48403         list of services in example configuration file.
48405 2012-02-19  Nick Bowler  <nbowler@draconx.ca>
48407         [BZ #11322]
48408         * manual/arith.texi: Remove statements about negative zero
48409         behaving identically to zero.
48411 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
48413         [BZ #5993]
48414         * manual/install.texi: Do not document upgrading from libc5.
48416 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
48418         [BZ #4596]
48419         * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
48421 2012-02-18  David S. Miller  <davem@davemloft.net>
48423         * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
48424         (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
48425         %o7 across the call.
48426         (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
48427         instead.
48428         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
48429         SETUP_PIC_REG_LEAF.
48430         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
48431         * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
48432         * sysdeps/sparc/crtn.S: Likewise.
48434 2012-02-17  Ulrich Drepper  <drepper@gmail.com>
48436         * aout/Makefile: Remove.
48438 2012-02-18  Rafe Kettler  <rafe.kettler@gmail.com>
48440         [BZ #13058]
48441         * manual/examples/argp-ex1.c (main): Format definition in GNU
48442         style.
48443         * manual/examples/argp-ex2.c (main): Likewise.
48444         * manual/examples/argp-ex3.c (main): Likewise.
48445         * manual/examples/argp-ex4.c (main): Likewise.
48446         * manual/examples/longopt.c (main): Use new-style prototype
48447         definition.
48448         * manual/examples/strncat.c (main): Specify return type and use
48449         (void) for arguments.
48450         * manual/examples/subopt.c (main): Use char **argv argument.
48452 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
48454         [BZ #5077]
48455         * manual/lang.texi (FLT_EPSILON): Avoid description depending on
48456         rounding modes.
48458 2012-02-17  Fabrice Bauzac  <fabrice.bauzac@wanadoo.fr>
48460         [BZ #6907]
48461         * manual/string.texi (strchr): Change when strchrnul is
48462         recommended.
48464 2012-02-17  Dwayne Grant McConnell  <decimal@us.ibm.com>
48466         [BZ #174]
48467         * manual/locale.texi (setlocale): Document LOCPATH.
48469 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
48471         [BZ #10210]
48472         * manual/process.texi (execle): Move @dots{} before last argument.
48474 2012-02-17  Paul Bolle  <pebolle@tiscali.nl>
48476         [BZ #12047]
48477         * manual/charset.texi (Generic Charset Conversion): Fix typo
48478         (LC_TYPE -> LC_CTYPE).
48480 2012-02-17  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>
48482         [BZ #5805]
48483         * manual/arith.texi (scalbn): Use @var{} on parameter names.
48484         (scalbnf): Likewise.
48485         (scalbnl): Likewise.
48486         (scalbln): Likewise.
48487         (scalblnf): Likewise.
48488         (scalblnl): Likewise.
48489         * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
48490         (vwarnx): Likewise.
48491         (verr): Likewise.
48492         (verrx): Likewise.
48493         * manual/filesys.texi (telldir): Use braces around return type.
48494         * manual/llio.texi (mmap): Add space after comma.
48495         (mmap64): Likewise.
48496         * manual/math.texi (jn): Use @var{} on parameter names.
48497         (jnf): Likewise.
48498         (jnl): Likewise.
48499         (yn): Likewise.
48500         (ynf): Likewise.
48501         (ynl): Likewise.
48502         * manual/memory.texi (alloca): Remove semicolon on @deftypefun
48503         line.
48504         * manual/resource.texi (ulimit): Use @dots{} instead of literal
48505         "...".
48506         (sched_get_priority_min): Remove semicolon on @deftypefun line.
48507         (sched_get_priority_max): Likewise.
48508         * manual/signal.texi (sigvec): Add space after comma.
48509         * manual/socket.texi (if_nametoindex): Use @var{} on parameter
48510         names.
48511         (if_indextoname): Likewise.
48512         (if_freenameindex): Likewise.
48513         (sendto): Use ',' instead of '.' in prototype.
48514         * manual/startup.texi (syscall): Use @dots{} instead of literal
48515         "...".
48516         * manual/stdio.texi (__fpending): Separate initial words of
48517         paragraph from @deftypefun line.
48518         * manual/syslog.texi (syslog): Use @dots{} instead of literal
48519         "...".
48520         (vsyslog): Use @var{} on parameter names.
48521         * manual/terminal.texi (stty): Use @var{} on parameter names.
48522         * manual/users.texi (getutmp): Use @var{} on parameter names.
48523         (getutmpx): Likewise.
48525 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
48527         [BZ #6884]
48528         * manual/stdio.texi (fopen): Fix typos in description of
48529         ",ccs=STRING".
48531 2012-02-17  Aurelien Jarno  <aurelien@aurel32.net>
48533         [BZ #4026]
48534         * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
48535         get clock_id definition.
48537 2012-02-17  Thomas Schwinge  <thomas@schwinge.name>
48539         [BZ #4822]
48540         * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
48541         (madvise): Cast every argument to void on its own.
48543 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
48545         [BZ #9902]
48546         * manual/startup.texi (Exit Status): Fix typo.
48548 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
48550         [BZ #10140]
48551         * manual/examples/argp-ex1.c: Include <stdlib.h>.
48552         * manual/examples/argp-ex2.c: Likewise.
48553         * manual/examples/argp-ex3.c: Likewise.
48555 2012-02-16  Richard Henderson  <rth@redhat.com>
48557         * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
48558         * sysdeps/s390/s390-32/initfini.c: Remove.
48559         * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
48560         * sysdeps/s390/s390-64/initfini.c: Remove.
48562 2012-02-15  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
48564         * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
48565         compiler output for sysdeps/generic/initfini.c.
48566         * sysdeps/sh/elf/initfini.c: Remove file.
48568 2012-02-16  David S. Miller  <davem@davemloft.net>
48570         [BZ #11494]
48571         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
48573         * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
48574         * sysdeps/sparc/crti.S: New file.
48575         * sysdeps/sparc/crtn.S: New file.
48576         * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
48577         * sysdeps/sparc/sparc64/Makefile: Likewise.
48579 2012-02-15  Mike Frysinger  <vapier@gentoo.org>
48581         [BZ #3335]
48582         * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
48584 2012-02-15  Roland McGrath  <roland@hack.frob.com>
48586         [BZ #4822]
48587         * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
48589         * mach/devstream.c (cookie_io_functions_t): Macro removed.
48590         (write, read, close): Likewise.
48591         Patch by Aurelien Jarno <aurelien@aurel32.net>.
48593 2012-02-15  Joseph Myers  <joseph@codesourcery.com>
48595         * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
48596         * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
48597         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
48598         * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
48599         <bits/signalfd.h>.
48600         (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
48601         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48602         bits/signalfd.h.
48604 2012-02-14  Marek Polacek  <polacek@redhat.com>
48606         * sysdeps/x86_64/crti.S: New file.
48607         * sysdeps/x86_64/crtn.S: New file.
48608         * sysdeps/x86_64/elf/initfini.c: Remove file.
48610 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
48612         * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
48613         * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
48614         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
48615         * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
48616         <bits/inotify.h>.
48617         (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
48618         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48619         bits/inotify.h.
48621 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
48623         * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
48624         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
48625         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
48626         * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
48627         <bits/eventfd.h>.
48628         (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
48629         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48630         bits/eventfd.h.
48632 2012-02-10  Thomas Schwinge  <thomas@codesourcery.com>
48634         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
48635         __feraiseexcept instead of feraiseexcept.
48637         * rt/tst-cpuclock1.c: Add a few comments, and error checking for
48638         nanosleep invocations.
48639         * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
48640         strings, and add error checking for a nanosleep invocations.
48642 2012-02-09  Paul Eggert  <eggert@cs.ucla.edu>
48644         Replace FSF snail mail address with URLs, as per GNU coding standards.
48645         Most of the snail mail addresses were wrong anyway, and omitting
48646         them makes the source code easier to maintain.  Almost all of the
48647         changes are to license notices and to locale LC_IDENTIFICATION
48648         addresses, except for this one:
48649         * manual/libc.texinfo: In "Published by", give the FSF's URL,
48650         not its snail mail address.
48652 2012-02-09  Richard Henderson  <rth@twiddle.net>
48654         * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
48655         of kernel-features.h.
48657         * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
48659 2012-02-08  Marek Polacek  <polacek@redhat.com>
48661         * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
48662         * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
48663         * sysdeps/gnu/_G_config.h: Likewise.
48664         * sysdeps/generic/_G_config.h: Likewise.
48666 2012-02-08  Andreas Schwab  <schwab@linux-m68k.org>
48668         * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
48669         tests.
48670         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48672         * sysdeps/powerpc/powerpc32/crti.S: New file.
48673         * sysdeps/powerpc/powerpc32/crtn.S: New file.
48674         * sysdeps/powerpc/powerpc64/crti.S: New file.
48675         * sysdeps/powerpc/powerpc64/crtn.S: New file.
48677         * Makeconfig (have-initfini): Don't set.
48678         * config.make.in (have-initfini, need-nopic-initfini): Don't set.
48679         * configure.in (nopic_initfini): Don't substitute.
48680         * config.h.in (HAVE_INITFINI): Don't #undef.
48681         * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
48682         * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
48684 2012-02-08  Joseph Myers  <joseph@codesourcery.com>
48686         Support crti.S and crtn.S provided directly by architectures.
48687         * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
48688         [crti.S in sysdirs] (omit-deps): Likewise.
48689         [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
48690         [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
48691         [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
48692         [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
48693         [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
48694         [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
48695         [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
48696         [crti.S in sysdirs] (initfini.c): Remove vpath directive.
48697         * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
48698         compiler output for sysdeps/generic/initfini.c.
48699         * sysdeps/i386/elf/Makefile: Remove file.
48700         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
48702 2012-02-07  Marek Polacek  <polacek@redhat.com>
48704         * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
48705         * sysdeps/gnu/_G_config.h: Likewise.
48706         * sysdeps/mach/hurd/_G_config.h: Likewise.
48708 2012-02-07  Marek Polacek  <polacek@redhat.com>
48710         * math/Makefile (tests): Add tst-CMPLX2.
48711         * math/tst-CMPLX2.c: New file.
48713 2012-02-07  Andreas Schwab  <schwab@linux-m68k.org>
48715         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
48717         * math/libm-test.inc (jn_test): Add missing L suffix.
48719 2012-02-06  Marek Polacek  <polacek@redhat.com>
48721         * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
48722         * sysdeps/i386/fpu/e_powf.S: Likewise.
48723         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
48724         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
48725         * sysdeps/i386/fpu/e_acosh.S: Likewise.
48726         * sysdeps/i386/fpu/e_pow.S: Likewise.
48727         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
48728         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
48729         * sysdeps/i386/fpu/s_expm1.S: Likewise.
48730         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
48731         * sysdeps/i386/fpu/e_log2.S: Likewise.
48732         * sysdeps/i386/fpu/e_log2l.S: Likewise.
48733         * sysdeps/i386/fpu/e_scalb.S: Likewise.
48734         * sysdeps/i386/fpu/e_powl.S: Likewise.
48735         * sysdeps/i386/fpu/s_log1p.S: Likewise.
48736         * sysdeps/i386/fpu/e_log10f.S: Likewise.
48737         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
48738         * sysdeps/i386/fpu/e_logl.S: Likewise.
48739         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
48740         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
48741         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
48742         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
48743         * sysdeps/i386/fpu/e_log2f.S: Likewise.
48744         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
48745         * sysdeps/i386/fpu/e_log.S: Likewise.
48746         * sysdeps/i386/fpu/s_cexp.S: Likewise.
48747         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
48748         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
48749         * sysdeps/i386/fpu/e_logf.S: Likewise.
48750         * sysdeps/i386/fpu/e_log10l.S: Likewise.
48751         * sysdeps/i386/fpu/e_atanh.S: Likewise.
48752         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
48753         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
48754         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
48755         * sysdeps/i386/fpu/e_log10.S: Likewise.
48756         * sysdeps/i386/fpu/s_frexp.S: Likewise.
48757         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
48758         * sysdeps/i386/fpu/s_asinh.S: Likewise.
48759         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
48760         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
48761         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
48762         * sysdeps/i386/asm-syntax.h: Likewise.
48763         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
48764         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
48765         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
48766         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
48767         * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
48768         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
48769         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
48770         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
48771         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
48772         * sysdeps/powerpc/sysdep.h: Likewise.
48773         * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
48774         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
48776 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
48778         [BZ #411]
48779         * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
48781 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
48783         * sysdeps/i386/sysdep.h: Include <features.h>.
48784         (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
48785         version.
48787 2012-02-05  Joseph Myers  <joseph@codesourcery.com>
48789         * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
48790         Define.
48791         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
48792         LOAD_PIC_REG_STR.
48794 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
48796         * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
48797         (SETUP_PIC_REG): Use GET_PC_THUNK.
48798         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
48799         macro.
48801 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
48803         * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
48804         for non-PIC compilation.
48805         (SETUP_PIC_REG): Add .p2align directive.
48806         * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
48807         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
48808         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
48809         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
48810         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
48811         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
48812         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
48813         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
48814         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
48815         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
48816         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
48817         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
48818         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
48819         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
48820         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
48821         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
48822         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
48823         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
48824         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
48825         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
48826         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
48827         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
48828         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
48829         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
48830         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
48831         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
48832         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
48833         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
48834         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
48835         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
48836         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
48837         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
48838         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
48839         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
48840         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
48841         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
48842         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
48843         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
48844         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
48845         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
48846         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
48848 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
48850         * math/tst-CMPLX.c: Include <stdio.h>.
48852 2012-01-31  Joseph Myers  <joseph@codesourcery.com>
48854         * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
48855         float.
48856         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
48857         * sysdeps/sparc/bits/mathdef.h: Likewise.
48859 2012-01-31  Marek Polacek  <polacek@redhat.com>
48861         * libio/libio.h: Don't define _PARAMS.
48862         * locale/programs/config.h: Don't define PARAMS.
48863         * stdlib/strtol_l.c: Likewise.
48864         (__strtol_l): Remove PARAMS from the prototype.
48866 2012-01-31  Ulrich Drepper  <drepper@gmail.com>
48868         * malloc/malloc.c: Remove name translation.  Don't use mixed-cap
48869         names.  Just use the correct names.  Remove unnecessary wrapper
48870         functions.
48871         * malloc/arena.c: Likewise.
48872         * malloc/hooks.c: Likewise.
48874         * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
48875         ARENA_TEST says not to.  Simplify test for creation of a new arena.
48876         Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
48878 2012-01-30  Ulrich Drepper  <drepper@gmail.com>
48880         * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
48881         into tail calls.
48882         (update_get_addr): New function.
48883         (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
48884         GET_ADDR_MODULE parameter.
48886 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
48888         * crypt/cert.c: Remove __STDC__ conditionals.
48889         * crypt/crypt-entry.c: Likewise.
48890         * crypt/crypt_util.c: Likewise.
48891         * libio/filedoalloc.c: Likewise.
48892         * libio/fileops.c: Likewise.
48893         * libio/genops.c: Likewise.
48894         * libio/iofclose.c: Likewise.
48895         * libio/iofdopen.c: Likewise.
48896         * libio/iofopen.c: Likewise.
48897         * libio/iofopen64.c: Likewise.
48898         * libio/iogetdelim.c: Likewise.
48899         * libio/iopopen.c: Likewise.
48900         * libio/obprintf.c: Likewise.
48901         * libio/oldfileops.c: Likewise.
48902         * libio/oldiofclose.c: Likewise.
48903         * libio/oldiofdopen.c: Likewise.
48904         * libio/oldiofopen.c: Likewise.
48905         * libio/oldiopopen.c: Likewise.
48906         * libio/wfiledoalloc.c: Likewise.
48907         * libio/wgenops.c: Likewise.
48908         * locale/programs/xmalloc.c: Likewise.
48909         * misc/syslog.c: Likewise.
48910         * stdio-common/xbug.c: Likewise.
48911         * string/memchr.c: Likewise.
48912         * string/memcmp.c: Likewise.
48913         * string/memrchr.c: Likewise.
48914         * string/rawmemchr.c: Likewise.
48915         * sysdeps/posix/getcwd.c: Likewise.
48916         * time/strftime_l.c: Likewise.
48918 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
48920         * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
48921         * config.make.in (config-cflags-sse2avx): Define.
48922         * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
48923         Fix typo.
48925 2012-01-29  Chris Metcalf  <cmetcalf@tilera.com>
48927         * scripts/config.guess: Update from upstream config git repository.
48928         * scripts/config.sub: Likewise.
48930 2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
48932         * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
48933         (EM_NUM): Update.
48934         (R_TILEPRO_*, R_TILEGX_*): New macros.
48936         * scripts/firstversions.awk: Fix bug in version range handling.
48938         * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
48940         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
48942         * include/sys/epoll.h: New file.
48943         * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
48944         libc_hidden_def.
48946 2012-01-28  Ulrich Drepper  <drepper@gmail.com>
48948         * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
48949         Avoid unnecessary __WORDSIZE == 64 test.
48950         (fmaxf): Use VEX format if possible.
48951         (fmax): Likewise.
48952         (fminf): Likewise.
48953         (fmin): Likewise.
48955         * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
48956         * math/math_private.h: Remove libc_fegetround* and
48957         libc_fesetround*.
48958         * sysdeps/i386/configure.in: Check for -msse2avx.
48959         * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
48960         also if SSE2AVX is defined.
48961         Remove libc_fegetround* and libc_fesetround*.
48962         * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
48963         if config-cflags-sse2avx is yes.  Also add -DSSE2AVX to defines.
48964         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
48965         of HAS_YMM_USABLE.
48966         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
48967         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
48968         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
48969         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
48970         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
48972         * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
48974 2012-01-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48976         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
48977         size is not set.
48978         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
48980 2012-01-27  Ulrich Drepper  <drepper@gmail.com>
48982         [BZ #13618]
48983         * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
48984         relocation.
48985         * Makeconfig (libm): Define.
48986         * elf/Makefile: Add rules to build and run tst-relsort1.
48987         * elf/tst-relsort1.c: New file.
48988         * elf/tst-relsort1mod1.c: New file.
48989         * elf/tst-relsort1mod2.c: New file.
48991 2012-01-27  Joseph Myers  <joseph@codesourcery.com>
48993         * math/s_ldexp.c: Remove __STDC__ conditionals.
48994         * math/s_ldexpf.c: Likewise.
48995         * math/s_ldexpl.c: Likewise.
48996         * math/s_nextafter.c: Likewise.
48997         * math/s_nexttowardf.c: Likewise.
48998         * math/s_significand.c: Likewise.
48999         * math/s_significandf.c: Likewise.
49000         * math/s_significandl.c: Likewise.
49001         * math/w_jnl.c: Likewise.
49002         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
49003         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
49004         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
49005         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
49006         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
49007         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
49008         * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
49009         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
49010         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
49011         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
49012         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
49013         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
49014         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
49015         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
49016         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
49017         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
49018         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
49019         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
49020         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
49021         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
49022         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
49023         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
49024         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
49025         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
49026         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
49027         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
49028         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
49029         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
49030         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
49031         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
49032         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
49033         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
49034         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
49035         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
49036         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
49037         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
49038         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
49039         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
49040         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
49041         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
49042         * sysdeps/ieee754/k_standard.c: Likewise.
49043         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
49044         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
49045         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
49046         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
49047         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
49048         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
49049         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
49050         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
49051         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
49052         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
49053         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
49054         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
49055         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
49056         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
49057         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
49058         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
49059         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
49060         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
49061         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
49062         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
49063         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
49064         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
49065         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
49066         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
49067         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
49068         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
49069         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
49070         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
49071         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
49072         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
49073         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
49074         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
49075         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
49076         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
49077         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
49078         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
49079         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
49080         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
49081         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
49082         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
49083         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
49084         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
49085         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
49086         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
49087         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
49088         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
49089         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
49090         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
49091         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
49092         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
49093         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
49094         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
49095         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
49096         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
49097         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
49098         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
49099         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
49100         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
49101         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
49102         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
49103         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
49104         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
49105         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
49106         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
49107         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
49108         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
49109         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
49110         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
49111         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
49112         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
49113         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
49114         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
49115         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
49116         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
49117         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
49118         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
49119         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
49120         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
49121         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
49122         * sysdeps/ieee754/s_matherr.c: Likewise.
49123         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
49124         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
49125         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
49126         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
49128 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
49130         * crypt/md5.h: Remove __STDC__ conditionals.
49131         * libio/libioP.h: Likewise.
49132         * locale/programs/config.h: Likewise.
49133         * sysdeps/generic/sysdep.h: Likewise.
49134         * sysdeps/i386/asm-syntax.h: Likewise.
49135         * sysdeps/s390/asm-syntax.h: Likewise.
49136         * sysdeps/unix/sysdep.h: Likewise.
49137         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
49138         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
49140 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
49142         * libio/libio.h: Remove __STDC__ conditionals.
49143         * malloc/obstack.h: Likewise.
49144         * math/complex.h: Likewise.
49145         * math/math.h: Likewise.
49146         * sysdeps/generic/_G_config.h: Likewise.
49147         * sysdeps/gnu/_G_config.h: Likewise.
49148         * sysdeps/mach/hurd/_G_config.h: Likewise.
49149         * sysdeps/powerpc/bits/mathdef.h: Likewise.
49150         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
49151         * sysdeps/sparc/bits/mathdef.h: Likewise.
49153 2012-01-26  Ulrich Drepper  <drepper@gmail.com>
49155         [BZ #13583]
49156         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
49157         Clean up HAS_* macros.
49158         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
49159         bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
49160         possible.
49161         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
49162         HAS_AVX.
49163         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
49164         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
49165         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
49166         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
49167         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
49169 2012-01-25  Joseph Myers  <joseph@codesourcery.com>
49171         * elf/tst-unique3.cc (gets): Remove declaration.
49172         * elf/tst-unique3lib.cc (gets): Likewise.
49173         * elf/tst-unique3lib2.cc (gets): Likewise.
49174         * elf/tst-unique4.cc (gets): Likewise.
49176 2012-01-24  Ulrich Drepper  <drepper@gmail.com>
49178         * include/stdio.h: Add C++ protection.  Add gets declarations and
49179         definitions.
49180         * debug/tst-chk1.c: Don't declare gets here.
49181         * stdio-common/tst-gets.c: Likewise.
49183 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
49185         * posix/glob: Remove directory.
49187 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
49189         * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
49191 2012-01-22  Pino Toscano  <toscano.pino@tiscali.it>
49193         * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
49194         of the non-standard EPFNOSUPPORT.
49196 2011-12-26  Samuel Thibault  <samuel.thibault@ens-lyon.org>
49198         * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
49199         __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
49200         ANYWHERE set to 1 only on KERN_NO_SPACE error.
49202 2012-01-21  Ulrich Drepper  <drepper@gmail.com>
49204         * wcsmbs/uchar.h: Test __STDC_VERSION__.
49206 2012-01-20  Ulrich Drepper  <drepper@gmail.com>
49208         * nscd/aicache.c (addhstaiX): Do not cache negative results of
49209         transient errors.
49210         * nscd/grpcache.c (cache_addgr): Likewise.
49211         * nscd/hstcache.c (cache_addhst): Likewise.
49212         * nscd/initgrcache.c (addinitgroupsX): Likewise.
49213         * nscd/pwdcache.c (cache_addpw): Likewise.
49214         * nscd/servicescache.c (cache_addserv): Likewise.
49216 2012-01-16  Ulrich Drepper  <drepper@gmail.com>
49218         * malloc/malloc.c: Various cleanups.
49219         * malloc/hooks.c: Likewise.
49221         * stdlib/Makefile (tests): Add bug-fmtmsg1.
49222         * stdlib/bug-fmtmsg1.c: New file.
49224         * stdlib/fmtmsg.c (init): Add missing unlock.
49225         Patch by Peng Haitao <penght@cn.fujitsu.com>.
49227 2012-01-12  Marek Polacek  <polacek@redhat.com>
49229         * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
49230         and _GNU_SOURCE.
49232 2012-01-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
49234         * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
49235         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
49236         macro to ensure uniqueness of label name.
49237         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
49238         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
49240 2012-01-11  Ulrich Drepper  <drepper@gmail.com>
49242         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
49244         * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
49245         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
49246         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
49247         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
49249 2012-01-10  Ulrich Drepper  <drepper@gmail.com>
49251         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
49253         * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
49254         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
49255         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
49257         * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
49259         * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
49260         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
49261         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
49262         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
49264         * math/bits/math-finite.h: Add ldexp support.
49266 2012-01-10  Marek Polacek  <polacek@redhat.com>
49268         * locale/programs/localedef.h (show_archive_content): Add noreturn
49269         attribute.
49271 2012-01-09  Ulrich Drepper  <drepper@gmail.com>
49273         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
49275 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
49277         * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
49279         * io/Makefile (headers): Add bits/poll2.h.
49281 2011-01-05  Will Schmidt  <will_schmidt@vnet.ibm.com>
49283         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
49284         typo #include statement.
49286 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
49288         * include/sys/cdefs.h: Define __attribute_alloc_size.
49289         * catgets/gencat.c: Add alloc_size attribute and apply consistently
49290         the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
49291         * elf/pldd.c: Likewise.
49292         * iconv/iconv_charmap.c: Likewise.
49293         * iconv/iconvconfig.c: Likewise.
49294         * iconv/strtab.c: Likewise.
49295         * locale/programs/locale.c: Likewise.
49296         * locale/programs/localedef.h: Likewise.
49297         * locale/programs/simple-hash.c: Likewise.
49298         * nscd/nscd.h: Likewise.
49299         * nss/makedb.c: Likewise.
49300         * sysdeps/generic/ldconfig.h: Likewise.
49301         * locale/programs/localedef.c: Remove xmalloc prototype.
49302         * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
49304 2012-01-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
49306         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
49307         appropriate.
49309 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
49311         * math/Makefile (tests): Add tst-CMPLX.
49312         * math/tst-CMPLX.c: New file.
49314         * math/complex.h (CMPLXL): Fix typo.
49316         * debug/Makefile (routines): Add poll_chk and ppoll_chk.
49317         * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
49318         GLIBC_2.16.
49319         * debug/tst-chk1.c: Add poll and ppoll tests.
49320         * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
49321         * include/sys/poll.h: Add hidden proto for ppoll.
49322         * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
49323         * sysdeps/mach/hurd/ppoll.c: Likewise.
49324         * io/ppoll.c: Likewise.
49325         * debug/poll_chk.c: New file.
49326         * debug/ppoll_chk.c: New file.
49327         * include/bits/poll2.h: New file.
49328         * io/bits/poll2.h: New file.
49330         [BZ #1350]
49331         * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
49333         * configure.in: static is always set to yes.  Remove.
49334         * config.make.in: Don't set build-static.
49335         * Makeconfig: Remove use of build-static.
49336         * dlfcn/Makefile: Likewise.
49337         * elf/Makefile: Likewise.
49338         * math/Makefile: Likewise.
49339         * misc/Makefile: Likewise.
49340         * nptl/Makefile: Likewise.
49341         * sysdeps/mach/hurd/Makefile: Likewise.
49343         * configure.in: PWD_P is not used anymore.
49344         * config.make.in: Remove PWD_P entry.
49346         * configure.in: Remove last remnants of RANLIB.
49347         No need to check for signed size_t anymore.
49348         Don't set libc_commonpagesize and libc_relro_required here for Alpha
49349         and IA-64.
49350         Remove __builtin_expect test because we require at least gcc 3.4.
49351         * aclocal.m4: Likewise.
49353         * wcsmbs/mbrtoc16.c: Implement using towc function.
49354         * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
49355         * wcsmbs/wcsmbsload.c: Likewise.
49356         * iconv/gconv_simple.c: Likewise.
49357         * iconv/gconv_int.h: Likewise.
49358         * iconv/gconv_builtin.h: Likewise.
49359         * iconv/iconv_prog.c: Remove CHAR16 handling.
49361         * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
49363         * wcsmbs/mbrtowc.c: Better check for invalid inputs.
49365         * configure.in: Remove --with-elf and --enable-bounded options.
49366         Dont set base_machine for ia64.  More non-ELF conditions removed.
49367         Remove testing and setting of leading underscore information.
49368         * config.make.in (build-bounded): Set to no.
49369         * config.h.in: Remove NO_UNDERSCORES entry.
49370         * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS.  ELF has
49371         them.
49372         * csu/start.c: Remove !NO_UNDERSCORE code.
49373         * locale/localeinfo.h: Likewise.
49374         * sysdeps/generic/machine-gmon.h: Likewise.
49375         * sysdeps/generic/sysdep.h: Likewise.
49376         * sysdeps/i386/sysdep.h: Likewise.
49377         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
49378         * sysdeps/mach/sysdep.h: Likewise.
49379         * sysdeps/s390/s390-32/sysdep.h: Likewise.
49380         * sysdeps/s390/s390-64/sysdep.h: Likewise.
49381         * sysdeps/sh/sysdep.h: Likewise.
49382         * sysdeps/sparc/sparc32/alloca.S: Likewise.
49383         * sysdeps/unix/i386/sysdep.S: Likewise.
49384         * sysdeps/unix/sparc/start.c: Likewise.
49385         * sysdeps/unix/sparc/sysdep.S: Likewise.
49386         * sysdeps/unix/sparc/sysdep.h: Likewise.
49387         * sysdeps/unix/start.c: Likewise.
49388         * sysdeps/unix/x86_64/sysdep.S: Likewise.
49389         * sysdeps/x86_64/sysdep.h: Likewise.
49391 2012-01-07  Ulrich Drepper  <drepper@gmail.com>
49393         [BZ #13553]
49394         * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
49395         for non-gcc.
49396         * argp/argp-fmtstream.h: Use const instead __const.
49397         * argp/argp.h: Likewise.
49398         * assert/assert.h: Likewise.
49399         * bits/fenv.h: Likewise.
49400         * bits/sched.h: Likewise.
49401         * bits/sigset.h: Likewise.
49402         * bits/sigthread.h: Likewise.
49403         * catgets/nl_types.h: Likewise.
49404         * conform/data/pthread.h-data: Likewise.
49405         * crypt/crypt-private.h: Likewise.
49406         * crypt/crypt.h: Likewise.
49407         * crypt/crypt_util.c: Likewise.
49408         * ctype/ctype.h: Likewise.
49409         * debug/execinfo.h: Likewise.
49410         * debug/mbsnrtowcs_chk.c: Likewise.
49411         * debug/mbsrtowcs_chk.c: Likewise.
49412         * debug/wcsnrtombs_chk.c: Likewise.
49413         * debug/wcsrtombs_chk.c: Likewise.
49414         * debug/wcstombs_chk.c: Likewise.
49415         * dirent/dirent.h: Likewise.
49416         * dlfcn/dlfcn.h: Likewise.
49417         * elf/neededtest4.c: Likewise.
49418         * grp/grp.h: Likewise.
49419         * gshadow/gshadow.h: Likewise.
49420         * iconv/gconv.h: Likewise.
49421         * iconv/gconv_int.h: Likewise.
49422         * iconv/gconv_simple.c: Likewise.
49423         * iconv/iconv.h: Likewise.
49424         * iconv/loop.c: Likewise.
49425         * iconv/skeleton.c: Likewise.
49426         * include/aio.h: Likewise.
49427         * include/aliases.h: Likewise.
49428         * include/argz.h: Likewise.
49429         * include/arpa/inet.h: Likewise.
49430         * include/assert.h: Likewise.
49431         * include/dirent.h: Likewise.
49432         * include/dlfcn.h: Likewise.
49433         * include/execinfo.h: Likewise.
49434         * include/fcntl.h: Likewise.
49435         * include/fenv.h: Likewise.
49436         * include/glob.h: Likewise.
49437         * include/grp.h: Likewise.
49438         * include/libintl.h: Likewise.
49439         * include/mntent.h: Likewise.
49440         * include/netdb.h: Likewise.
49441         * include/pwd.h: Likewise.
49442         * include/rpc/netdb.h: Likewise.
49443         * include/sched.h: Likewise.
49444         * include/search.h: Likewise.
49445         * include/shadow.h: Likewise.
49446         * include/signal.h: Likewise.
49447         * include/stdio.h: Likewise.
49448         * include/stdlib.h: Likewise.
49449         * include/string.h: Likewise.
49450         * include/sys/socket.h: Likewise.
49451         * include/sys/stat.h: Likewise.
49452         * include/sys/statfs.h: Likewise.
49453         * include/sys/statvfs.h: Likewise.
49454         * include/sys/syslog.h: Likewise.
49455         * include/sys/time.h: Likewise.
49456         * include/sys/uio.h: Likewise.
49457         * include/time.h: Likewise.
49458         * include/unistd.h: Likewise.
49459         * include/utmp.h: Likewise.
49460         * include/wchar.h: Likewise.
49461         * include/wctype.h: Likewise.
49462         * inet/aliases.h: Likewise.
49463         * inet/arpa/inet.h: Likewise.
49464         * inet/netinet/ether.h: Likewise.
49465         * inet/netinet/in.h: Likewise.
49466         * intl/libintl.h: Likewise.
49467         * io/bits/fcntl2.h: Likewise.
49468         * io/fcntl.h: Likewise.
49469         * io/ftw.h: Likewise.
49470         * io/sys/poll.h: Likewise.
49471         * io/sys/stat.h: Likewise.
49472         * io/sys/statfs.h: Likewise.
49473         * io/sys/statvfs.h: Likewise.
49474         * io/utime.h: Likewise.
49475         * libio/bits/stdio.h: Likewise.
49476         * libio/bits/stdio2.h: Likewise.
49477         * libio/libio.h: Likewise.
49478         * libio/libioP.h: Likewise.
49479         * libio/stdio.h: Likewise.
49480         * locale/lc-ctype.c: Likewise.
49481         * locale/locale.h: Likewise.
49482         * login/utmp.h: Likewise.
49483         * malloc/arena.c: Likewise.
49484         * malloc/malloc.c: Likewise.
49485         * malloc/malloc.h: Likewise.
49486         * malloc/mcheck.c: Likewise.
49487         * malloc/mtrace.c: Likewise.
49488         * math/bits/mathcalls.h: Likewise.
49489         * math/fenv.h: Likewise.
49490         * math/math_private.h: Likewise.
49491         * misc/bits/error.h: Likewise.
49492         * misc/bits/syslog.h: Likewise.
49493         * misc/err.h: Likewise.
49494         * misc/error.h: Likewise.
49495         * misc/fstab.h: Likewise.
49496         * misc/mntent.h: Likewise.
49497         * misc/regexp.h: Likewise.
49498         * misc/search.h: Likewise.
49499         * misc/sgtty.h: Likewise.
49500         * misc/sys/mman.h: Likewise.
49501         * misc/sys/syslog.h: Likewise.
49502         * misc/sys/uio.h: Likewise.
49503         * misc/sys/xattr.h: Likewise.
49504         * misc/ttyent.h: Likewise.
49505         * nis/rpcsvc/ypclnt.h: Likewise.
49506         * nss/nss.h: Likewise.
49507         * posix/bits/unistd.h: Likewise.
49508         * posix/fnmatch.h: Likewise.
49509         * posix/glob.h: Likewise.
49510         * posix/sched.h: Likewise.
49511         * posix/spawn.h: Likewise.
49512         * posix/sys/wait.h: Likewise.
49513         * posix/unistd.h: Likewise.
49514         * posix/wordexp.h: Likewise.
49515         * pwd/pwd.h: Likewise.
49516         * resolv/netdb.h: Likewise.
49517         * resource/sys/resource.h: Likewise.
49518         * rt/aio.h: Likewise.
49519         * rt/bits/mqueue2.h: Likewise.
49520         * rt/mqueue.h: Likewise.
49521         * shadow/shadow.h: Likewise.
49522         * signal/signal.h: Likewise.
49523         * socket/send.c: Likewise.
49524         * socket/sendto.c: Likewise.
49525         * socket/sys/socket.h: Likewise.
49526         * stdio-common/printf.h: Likewise.
49527         * stdlib/bits/stdlib.h: Likewise.
49528         * stdlib/fmtmsg.h: Likewise.
49529         * stdlib/monetary.h: Likewise.
49530         * stdlib/stdlib.h: Likewise.
49531         * stdlib/ucontext.h: Likewise.
49532         * streams/stropts.h: Likewise.
49533         * string/argz.h: Likewise.
49534         * string/bits/string2.h: Likewise.
49535         * string/string.h: Likewise.
49536         * string/strings.h: Likewise.
49537         * sunrpc/rpc/auth.h: Likewise.
49538         * sunrpc/rpc/auth_des.h: Likewise.
49539         * sunrpc/rpc/clnt.h: Likewise.
49540         * sunrpc/rpc/netdb.h: Likewise.
49541         * sunrpc/rpc/pmap_clnt.h: Likewise.
49542         * sunrpc/rpc/xdr.h: Likewise.
49543         * sysdeps/generic/inttypes.h: Likewise.
49544         * sysdeps/generic/net/if.h: Likewise.
49545         * sysdeps/generic/sys/swap.h: Likewise.
49546         * sysdeps/gnu/net/if.h: Likewise.
49547         * sysdeps/gnu/utmpx.h: Likewise.
49548         * sysdeps/i386/fpu/bits/fenv.h: Likewise.
49549         * sysdeps/i386/i486/bits/string.h: Likewise.
49550         * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
49551         * sysdeps/s390/bits/string.h: Likewise.
49552         * sysdeps/s390/fpu/bits/fenv.h: Likewise.
49553         * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
49554         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
49555         * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
49556         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
49557         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
49558         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
49559         * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
49560         * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
49561         * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
49562         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
49563         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
49564         * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
49565         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
49566         * sysdeps/unix/sysv/linux/readv.c: Likewise.
49567         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
49568         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
49569         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
49570         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
49571         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
49572         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
49573         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
49574         * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
49575         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
49576         * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
49577         * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
49578         * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
49579         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
49580         * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
49581         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
49582         * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
49583         * sysvipc/sys/ipc.h: Likewise.
49584         * sysvipc/sys/msg.h: Likewise.
49585         * sysvipc/sys/sem.h: Likewise.
49586         * sysvipc/sys/shm.h: Likewise.
49587         * termios/termios.h: Likewise.
49588         * time/sys/time.h: Likewise.
49589         * time/time.h: Likewise.
49590         * wcsmbs/bits/wchar2.h: Likewise.
49591         * wcsmbs/uchar.h: Likewise.
49592         * wcsmbs/wchar.h: Likewise.
49593         * wctype/wctype.h: Likewise.
49595         [BZ #13551]
49596         * Makeconfig: Remove all but ELF support including AIX support.
49597         * Makerules: Likewise.
49598         * config.h.in: Likewise.
49599         * config.make.in: Likewise.
49600         * configure: Likewise.
49601         * configure.in: Likewise.
49602         * csu/Makefile: Likewise.
49603         * csu/version.c: Likewise.
49604         * debug/Makefile: Likewise.
49605         * dlfcn/Makefile: Likewise.
49606         * elf/Makefile: Likewise.
49607         * extra-lib.mk: Likewise.
49608         * iconv/Makefile: Likewise.
49609         * include/libc-symbols.h: Likewise.
49610         * include/shlib-compat.h: Likewise.
49611         * resolv/Makefile: Likewise.
49612         * resolv/res_libc.c: Likewise.
49613         * rt/Makefile: Likewise.
49614         * sysdeps/i386/asm-syntax.h: Likewise.
49615         * sysdeps/i386/sysdep.h: Likewise.
49616         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
49617         * sysdeps/mach/sysdep.h: Likewise.
49618         * sysdeps/powerpc/powerpc32/Makefile: Likewise.
49619         * sysdeps/powerpc/powerpc64/Makefile: Likewise.
49620         * sysdeps/s390/asm-syntax.h: Likewise.
49621         * sysdeps/s390/s390-32/sysdep.h: Likewise.
49622         * sysdeps/s390/s390-64/sysdep.h: Likewise.
49623         * sysdeps/sh/sysdep.h: Likewise.
49624         * sysdeps/unix/sparc/sysdep.h: Likewise.
49625         * sysdeps/wordsize-32/divdi3.c: Likewise.
49626         * sysdeps/x86_64/sysdep.h: Likewise.
49628         * argp/Versions: Remove _argp_unlock_xxx.
49630         [BZ #13559]
49631         * abilist/ld.abilist: Update.  Adjust for removal of tls option.
49632         * abilist/libBrokenLocale.abilist: Likewise.
49633         * abilist/libanl.abilist: Likewise.
49634         * abilist/libc.abilist: Likewise.
49635         * abilist/libcrypt.abilist: Likewise.
49636         * abilist/libdl.abilist: Likewise.
49637         * abilist/libm.abilist: Likewise.
49638         * abilist/libnsl.abilist: Likewise.
49639         * abilist/libpthread.abilist: Likewise.
49640         * abilist/libresolv.abilist: Likewise.
49641         * abilist/librt.abilist: Likewise.
49642         * abilist/libthread_db.abilist: Likewise.
49643         * abilist/libutil.abilist: Likewise.
49644         * abilist/libnss_db.abilist: New file.
49646         * scripts/abilist.awk: Add support for indirect functions.
49648         * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
49650         * sysdeps/generic/ldsodefs.h: Remove Alpha support.
49652         * shlib-versions: Remove entries for ports architectures.
49654         * elf/tls-macros.h: Remove support for Alpha and IA-64.  Should be in
49655         files in ports.
49656         * elf/stackguard-macros.h: Remove support for IA-64.
49657         * elf/tst-auditmod1.c: Likewise.
49658         * sysdeps/generic/ldsodefs.h: Likewise.
49660         * sysdeps/unix/sysv/linux/configure.in: Ports should define
49661         libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
49662         configure files.
49664         [BZ #13552]
49665         * configure.in: Remove --enable-omitfp support.
49666         * FAQ.in: Adjust.
49667         * config.make.in: Likewise.
49668         * Makeconfig: Likewise.
49669         * manual/install.texi: Likewise.
49671         In case anyone cares, the IA-64 architecture could move to ports.
49672         * sysdeps/ia64/*: Removed.
49673         * sysdeps/unix/sysv/linux/ia64/*: Removed.
49674         * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
49676         [BZ #13555]
49677         * configure.in: Remove entries for unsupported architectures.
49679         [BZ #13533]
49680         * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
49681         * iconv/gconv_simple.c: Rename char16_t routines.  Add char16_t<->utf8
49682         routines.
49683         * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
49684         * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
49685         * wcsmbs/c16rtomb.c: Fix a few problems.  Disable all the code and
49686         fall back to using wcrtomb.
49687         * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
49688         * wcsmbs/wcsmbsload.c: Make char16 routines optional.  Adjust for
49689         renaming.
49690         * wcsmbs/Makefile (tests): Add tst-c16c32-1:
49691         * wcsmbs/tst-c16c32-1.c: New file.
49693         * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
49694         local variable.
49696         * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
49698         * elf/tst-unique3.cc: Add explicit declaration of gets.
49699         * elf/tst-unique3lib.cc: Likewise.
49700         * elf/tst-unique3lib2.cc: Likewise.
49701         * elf/tst-unique4.cc: Likewise.
49703         * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
49705 2012-01-06  Joseph Myers  <joseph@codesourcery.com>
49707         [BZ #13566]
49708         * assert/assert.h (static_assert): Don't define for C++.
49709         * libio/stdio.h (gets): Do declare for C++ <= C++11.
49710         * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
49712 2012-01-03  Ulrich Drepper  <drepper@gmail.com>
49714         * iconv/loop.c (single loop): Fix assertion in storing of
49715         remaining bytes.
49717         * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
49719 2012-01-01  Ulrich Drepper  <drepper@gmail.com>
49721         * posix/getconf.c: Update copyright year.
49722         * nss/getent.c: Likewise.
49723         * nss/makedb.c: Likewise.
49724         * iconv/iconvconfig.c: Likewise.
49725         * iconv/iconv_prog.c: Likewise.
49726         * elf/ldconfig.c: Likewise.
49727         * elf/pldd.c: Likewise.
49728         * elf/sotruss.ksh: Likewise.
49729         * catgets/gencat.c: Likewise.
49730         * csu/version.c: Likewise.
49731         * elf/ldd.bash.in: Likewise.
49732         * elf/sprof.c (print_version): Likewise.
49733         * locale/programs/locale.c: Likewise.
49734         * locale/programs/localedef.c: Likewise.
49735         * login/programs/pt_chown.c: Likewise.
49736         * nscd/nscd.c (print_version): Likewise.
49737         * debug/xtrace.sh: Likewise.
49738         * malloc/memusage.sh: Likewise.
49739         * malloc/mtrace.pl: Likewise.
49740         * debug/catchsegv.sh: Likewise.
49742 2011-12-30  Jakub Jelinek  <jakub@redhat.com>
49744         * posix/regex_internal.c (re_string_fetch_byte_case): Remove
49745         pure attribute.
49747 2011-12-24  Ulrich Drepper  <drepper@gmail.com>
49749         [BZ #13533]
49750         * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
49751         * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
49752         transformations.
49753         * iconv/gconv_int.h: Likewise.
49754         * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
49755         * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
49756         from libc for GLIBC_2.16.
49757         * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
49758         * wcsmbs/wcrtomb.c: Define c32rtomb alias.
49759         * wcsmbs/uchar.h: Really define mbstate_t.
49760         * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
49761         * wcsmbs/c16rtomb.c: New file.
49762         * wcsmbs/mbrtoc16.c: New file.
49763         * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
49764         for C/POSIX locale.
49765         (__wcsmbs_load_conv): Do not fill in c16 routines yet.
49766         * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
49768         * wcsmbs/wchar.h: Add missing __restrict.
49770 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
49772         [BZ #13532]
49773         * time/Makefile (routines): Add timespec_get.
49774         * time/Versions: Export timespec_get from libc for GLIBC_2.16.
49775         * time/time.h: Define TIME_UTC and declare timespec_get.  Define
49776         timespec for ISO C11.
49777         * time/timespec_get.c: New file.
49778         * sysdeps/unix/sysv/linux/timespec_get.c: New file.
49779         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
49781         [BZ #13531]
49782         * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
49783         * stdlib/stdlib.h: Declare aligned_alloc.
49784         * Versions.def: Add GLIBC_2.16 for libc.
49785         * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
49787         [BZ 13527]
49788         * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
49789         ISO C11.
49791         * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
49792         code.
49794         [BZ #13528]
49795         * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
49797         [BZ #13529]
49798         * assert/assert.h (static_assert): Define.
49800         * version.h: Update for 2.16 development version.
49802         [BZ #13526]
49803         * include/features.h: Handle __STDC_VERSION__ >= 201112 and
49804         _ISOC11_SOURCE.
49806         * version.h (RELEASE): Bump for 2.15 release.
49807         * include/features.h (__GLIBC_MINOR__): Bump to 15.
49809         * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
49810         Patch by Marek Polacek <mpolacek@redhat.com>.
49812         * bits/byteswap.h: Protect long long constants with __extension__.
49813         * sysdeps/i386/bits/byteswap.h: Likewise.
49814         * sysdeps/ia64/bits/byteswap.h: Likewise.
49815         * sysdeps/s390/bits/byteswap.h: Likewise.
49816         * sysdeps/x86_64/bits/byteswap.h: Likewise.
49818 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49820         [BZ #13540]
49821         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
49822         destination buffer.
49823         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
49825 2011-12-23  Marek Polacek  <polacek@redhat.com>
49827         * elf/dl-addr.c (determine_info): Add inline keyword.
49828         * elf/tst-auditmod4b.c (check_avx): Likewise.
49829         * elf/tst-auditmod6b.c (check_avx): Likewise.
49830         * elf/tst-auditmod6c.c (check_avx): Likewise.
49831         * elf/tst-auditmod7b.c (check_avx): Likewise.
49833 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
49835         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
49836         !__SSE_MATH__.
49838 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49840         [BZ #13540]
49841         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
49842         processing for last bytes.
49844 2011-08-06  Bruno Haible  <bruno@clisp.org>
49846         [BZ #13061]
49847         * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
49848         U+0385, not to U+1FEE.
49850         [BZ #13062]
49851         * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
49852         entry for U+00A5 U+0301.
49854 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
49856         [BZ #13166]
49857         * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
49858         buffer for the output is too small.
49860         * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
49861         optimization.
49863         [BZ #13185]
49864         * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
49865         SSE flags if possible.
49867 2011-12-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49869         [BZ #13540]
49870         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
49871         processing for last bytes.
49873 2011-12-22  Joseph Myers  <joseph@codesourcery.com>
49875         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
49876         (syscall-list-default-options, syscall-list-default-condition)
49877         (syscall-list-includes): Define.
49878         ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
49879         list of ABIs and options and #if conditions for each ABI.  Do not
49880         handle common syscalls between ABIs specially.
49881         * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
49882         Remove.
49883         (syscall-list-variants, syscall-list-32bit-options)
49884         (syscall-list-32bit-condition, syscall-list-64bit-options)
49885         (syscall-list-64bit-condition): Define.
49886         * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
49887         (syscall-list-variants, syscall-list-32bit-options)
49888         (syscall-list-32bit-condition, syscall-list-64bit-options)
49889         (syscall-list-64bit-condition): Define.
49890         * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
49891         Remove.
49892         (syscall-list-variants, syscall-list-32bit-options)
49893         (syscall-list-32bit-condition, syscall-list-64bit-options)
49894         (syscall-list-64bit-condition): Define.
49895         * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
49896         Remove.
49897         (syscall-list-variants, syscall-list-32bit-options)
49898         (syscall-list-32bit-condition, syscall-list-64bit-options)
49899         (syscall-list-64bit-condition): Define.
49901 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
49903         * locale/iso-639.def: Add brx entry.
49905         [BZ #13328]
49906         * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
49907         Proposed by Mariusz_Cukr <marcukr@op.pl>.
49909         * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
49910         __feraiseexcept_renamed.
49912 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
49914         [BZ #13538]
49915         * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
49916         EPOLLET with unsigned values.
49917         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
49918         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
49920         * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
49921         to large cancellation.
49922         * math/s_cacoshf.c: Likewise.
49923         * math/s_cacoshl.c: Likewise.
49925 2011-11-18  Richard B. Kreckel  <kreckel@ginac.de>
49927         [BZ #13305]
49928         [BZ #12786]
49929         * math/s_cacosh.c: Fix rare miscomputation in cacosh().
49930         * math/s_cacoshf.c: Likewise.
49931         * math/s_cacoshl.c: Likewise.
49933 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
49935         [BZ #13439]
49936         * iconv/gconv.h: Define __GCONV_SWAP.
49937         * iconvdata/unicode.c: The swap bit must be stored in __flags.
49938         * iconvdata/utf-16.c: Likewise.
49939         * iconvdata/utf-32.c: Likewise.
49941 2011-12-21  Andreas Schwab  <schwab@linux-m68k.org>
49943         [BZ #13524]
49944         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
49945         numerator after shifting it by one limb.
49947 2011-12-19  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
49949         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
49950         under [__USE_EXTERN_INLINES].
49952 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
49954         [BZ #13446]
49955         * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
49957 2011-11-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
49959         * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
49960         * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
49961         optimized code.
49962         * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
49963         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
49964         * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
49965         * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
49966         for strncasecmp/strncasecmp_l compilation.
49967         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
49968         * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
49970 2011-12-08  Marek Polacek  <mpolacek@redhat.com>
49972         [BZ #13484]
49973         * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
49974         of __asm__.
49976 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
49978         [BZ #13506]
49979         * time/tzfile.c (__tzfile_read): Check values from file header.
49981 2011-11-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
49983         * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
49984         * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
49985         * powerpc/powerpc32/dl-start.S: Likewise.
49986         * powerpc/powerpc32/elf/start.S: Likewise.
49987         * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
49988         * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
49989         * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
49990         * powerpc/powerpc32/fpu/s_floor.S: Likewise.
49991         * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
49992         * powerpc/powerpc32/fpu/s_lround.S: Likewise.
49993         * powerpc/powerpc32/fpu/s_rint.S: Likewise.
49994         * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
49995         * powerpc/powerpc32/fpu/s_round.S: Likewise.
49996         * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
49997         * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
49998         * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
49999         * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
50000         * powerpc/powerpc32/memset.S: Likewise.
50001         * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
50002         * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
50003         * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
50004         * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
50005         * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
50006         * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
50007         * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
50008         * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
50009         * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
50010         * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
50011         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
50012         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
50013         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
50015 2011-11-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
50017         * math/libm-test.inc: Added more nearbyint tests.
50018         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
50019         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
50020         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
50021         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
50023 2011-11-21  Ross Lagerwall  <rosslagerwall@gmail.com>
50025         * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
50026         FD_CLOEXEC.
50028 2011-11-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50030         * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
50031         Add wcscpy-ssse3 wcscpy-c.
50032         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
50033         * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
50034         * sysdeps/x86_64/multiarch/wcscpy.S: New file.
50035         * sysdeps/x86_64/wcschr.S: New file.
50036         * sysdeps/x86_64/wcsrchr.S: New file.
50037         * string/test-strcmp.c: Remove checking of wcscmp function for
50038         wrong alignments.
50039         * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
50040         (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
50041         wcsrchr-sse2 wcsrchr-c.
50042         * sysdeps/i386/i686/multiarch/wcschr.S: New file.
50043         * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
50044         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
50045         * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
50046         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
50047         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
50048         * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
50049         * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
50050         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
50051         * wcsmbc/wcschr.c (WCSCHR): New macro.
50053 2011-11-17  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50055         * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
50056         * wcsmbs/test-wcsrchr.c: New file.
50057         * string/test-strrchr.c: Add wcsrchr support.
50058         (WIDE): New macro.
50059         * wcsmbs/test-wcscpy.c: New file.
50060         * string/test-strcpy.c: Add wcscpy support.
50061         (WIDE): New macro.
50063 2011-12-10  Ulrich Drepper  <drepper@gmail.com>
50065         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
50066         the inner loop.
50068 2011-12-06  Andreas Schwab  <schwab@linux-m68k.org>
50070         [BZ #13472]
50071         * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
50073 2011-12-04  Ulrich Drepper  <drepper@gmail.com>
50075         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
50076         Minor optimizations.
50078         * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
50079         * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
50080         * sunrpc/clnt_udp.c (clntudp_call): Likewise.
50082 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
50084         * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
50085         IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
50086         IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
50087         for gcc to avoid warnings.
50088         * inet/Makefile (tests): Add tst-checks.
50089         * inet/tst-checks.c: New file.
50091         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
50092         warning.
50094         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
50095         __wmemcmp_sse2.
50097         * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
50098         * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
50100         * malloc/mcheck.h: Fix use of incorrect encoding in comment.
50102 2011-12-02  Ulrich Drepper  <drepper@gmail.com>
50104         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
50105         problem.
50107         * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
50109 2011-11-29  Joseph Myers  <joseph@codesourcery.com>
50111         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
50112         conditional on GCC version.
50113         (__arch_compare_and_exchange_val_8_acq)
50114         (__arch_compare_and_exchange_val_16_acq)
50115         (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
50116         (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
50117         (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
50119 2011-12-02  Joseph Myers  <joseph@codesourcery.com>
50121         * sysdeps/sh/backtrace.c: New file.
50123 2011-12-02  Andreas Schwab  <schwab@redhat.com>
50125         * misc/bits/select2.h (__FD_ELT): Mark as extension.  Add
50126         parenthesis.
50128 2011-12-01  Andreas Schwab  <schwab@redhat.com>
50130         * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
50131         falling back to utime.
50133 2011-11-30  Andreas Schwab  <schwab@redhat.com>
50135         * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
50136         expectations for float.
50138 2011-11-29  Andreas Schwab  <schwab@redhat.com>
50140         * locale/weight.h (findidx): Add parameter len.
50141         * locale/weightwc.h (findidx): Likewise.
50142         * posix/fnmatch_loop.c (FCT): Adjust caller.
50143         * posix/regcomp.c (build_equiv_class): Likewise.
50144         * posix/regex_internal.h (re_string_elem_size_at): Likewise.
50145         * posix/regexec.c (check_node_accept_bytes): Likewise.
50146         * string/strcoll_l.c (STRCOLL): Likewise.
50147         * string/strxfrm_l.c (STRXFRM): Likewise.
50149 2011-11-17  Ulrich Drepper  <drepper@gmail.com>
50151         * Makefile.in: Remove CVSOPT handling.
50152         * configure.in: Remove use of AC_REVISION.
50153         * iconvdata/Makefile (distribute): No need to filter out CVS.
50154         * scripts/list-sources.sh: Remove CVS, subversion and monotone
50155         handling.
50157 2011-11-16  Andreas Schwab  <schwab@redhat.com>
50159         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
50160         [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
50161         [USE_AS_STRNCASECMP_L]: Likewise.
50162         (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
50163         NO_TLS_DIRECT_SEG_REFS.
50164         * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
50165         Fix argument offsets for non-PIC.
50166         [USE_AS_STRNCASECMP_L]: Likewise.
50167         (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
50168         NO_TLS_DIRECT_SEG_REFS.
50170 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
50172         * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
50173         O_CLOEXEC.
50174         * locale/loadlocale.c (_nl_load_locale): Likewise.
50176 2011-11-15  Andreas Schwab  <schwab@redhat.com>
50178         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
50179         [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
50180         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
50181         (SYSCALL_GETTIME): Set errno on error.
50183         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
50184         count references to noai6ai_cached.
50186 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
50188         * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
50190         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
50191         FD_CLOEXEC for /proc/self/maps.
50193         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
50194         FD_CLOEXEC for /proc/meminfo.
50196         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
50197         gai.conf.
50199         * resolv/res_query.c (res_hostalias):  Don't allow cancellation and set
50200         FD_CLOEXEC for given file.
50202         * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
50204         * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
50205         FD_CLOEXEC for /etc/hosts.
50206         (_gethtent): Likewise.
50208         * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
50210         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
50211         cancellation and set FD_CLOEXEC for /etc/netgroup.
50213         * nss/nss_files/files-key.c (search): Don't allow cancellation when
50214         reading /etc/publickey.
50216         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
50217         allow cancellation when reading /etc/group.
50219         * nss/nss_files/files-alias.c (internal_setent): Don't allow
50220         cancellation.
50221         (get_next_alias): Likewise for included file.  Also set FD_CLOEXEC.
50223         * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
50224         when using data file.
50226         * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
50228         * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
50229         (write_nis_obj): Use "c" and "e" in fopen.
50231         * misc/mntent_r.c (__setmntent): Also append e to fopen format.
50233         * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
50235         * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
50237         * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
50239         * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
50240         locale.alias.
50242         * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
50244         * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
50246         * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
50248         * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
50249         file parsing and set FD_CLOEXEC.
50251 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
50253         * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
50255 2011-11-14  Andreas Schwab  <schwab@redhat.com>
50257         * malloc/arena.c (arena_get2): Don't call reused_arena when
50258         _int_new_arena failed.
50260 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
50262         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
50263         (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
50264         * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
50265         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
50266         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
50267         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
50268         to compile strcasecmp and strncasecmp.
50269         * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
50270         * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
50272         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
50274 2011-11-13  Ulrich Drepper  <drepper@gmail.com>
50276         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
50277         locale-defines.sym to gen-as-const-headers.
50278         (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
50279         strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
50280         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
50281         to compile strcasecmp and strncasecmp.
50282         * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
50283         strcasecmp_l and strncasecmp_l.
50284         * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
50285         * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
50286         * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
50287         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
50288         * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
50289         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
50290         * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
50291         * sysdeps/i386/i686/multiarch/strncase.S: New file.
50292         * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
50293         * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
50294         * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
50296 2011-11-12  Ulrich Drepper  <drepper@gmail.com>
50298         * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
50299         result of SYSDEP_GETTIME_CPU to retval.
50300         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
50301         parameter list to macro.  Remove trailing semicolon.  Adjust users.
50303         * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
50304         variable.
50306         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
50307         mantissa words.
50308         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
50310         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
50311         from unused variable.
50313         * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
50314         DWARF definitions.
50315         * sysdeps/generic/dwarf2.h: Don't define enums when using the file
50316         for assembling.
50318         * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
50319         over namespaces.
50321         * sunrpc/rpc_prot.c (rejected): Fix case value.
50323         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
50324         unsigned long long int to avoid warnings in shift.
50326         * posix/regex_internal.c (re_string_reconstruct): Actually use result
50327         of use of trans.
50328         * posix/regex_internal.h (re_string_wchar_at): Remove temporary
50329         variable tmp.
50331         * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
50332         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
50333         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
50335         * nis/nis_table.c (nis_list): Use variable of correct type for
50336         result of __follow_path call.
50338 2011-11-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
50340         * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
50341         of math functions ceil, trunc, floor, round, and sqrt, when
50342         avaliable on the platform.
50343         * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
50344         name clash.
50345         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
50346         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
50347         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
50349 2011-10-30  Marek Polacek  <mpolacek@redhat.com>
50351         * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
50352         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
50354 2011-11-11  Roland McGrath  <roland@hack.frob.com>
50356         * include/unistd.h: Fix __readlink return type.
50357         Reported by Chris Metcalf <cmetcalf@tilera.com>.
50359 2011-11-11  Ulrich Drepper  <drepper@gmail.com>
50361         * stdlib/ucontext.h: Undo last change for makecontext.
50363 2011-11-11  Andreas Schwab  <schwab@redhat.com>
50365         * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
50367         * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
50368         * setjmp/setjmp.h: Mark functions as non-leaf.
50369         * setjmp/bits/setjmp2.h: Likewise.
50370         * stdlib/ucontext.h: Likewise.
50372 2011-11-10  Andreas Schwab  <schwab@redhat.com>
50374         * malloc/arena.c (_int_new_arena): Don't increment narenas.
50375         (reused_arena): Don't check arena limit.
50376         (arena_get2): Atomically check arena limit.
50378 2011-11-08  Ulrich Drepper  <drepper@gmail.com>
50380         * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
50381         * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
50383         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
50384         instructions.
50386 2011-11-07  Andreas Schwab  <schwab@redhat.com>
50388         * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
50389         handler when locking.
50391         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
50392         Fix size of allocated buffer.
50394 2011-11-04  Andreas Schwab  <schwab@redhat.com>
50396         [BZ #10103]
50397         * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
50398         declarations for long double functions.
50399         * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
50401         * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
50403 2011-11-03  Andreas Schwab  <schwab@redhat.com>
50405         * nscd/nscd.c (main): Don't start AVC thread until credentials are
50406         installed.
50408         * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
50409         is disabled.
50411 2011-11-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
50413         * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
50415 2011-11-01  Andreas Schwab  <schwab@linux-m68k.org>
50417         * include/alloca.h (stackinfo_alloca_round): Define.
50418         (extend_alloca): Use it.
50419         [_STACK_GROWS_UP]: Correct check for adjacent allocation.
50420         * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
50421         here.
50423         * scripts/check-local-headers.sh: Ignore libaudit.h.
50425         * nscd/Makefile (extra-objs): Make recursively expanded.
50427 2011-11-01  Ulrich Drepper  <drepper@gmail.com>
50429         * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
50430         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
50432         * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
50433         * posix/tst-rfc3484-2.c: Likewise.
50434         * posix/tst-rfc3484-3.c: Likewise.
50436         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
50437         process_vm_writev.
50438         * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
50439         process_vm_writev.
50440         * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
50441         process_vm_writev from libc using GLIBC_2.15 version.
50443         * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
50445 2011-10-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
50447         * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
50448         stack usage.
50450 2011-10-31  Ulrich Drepper  <drepper@gmail.com>
50452         [BZ #13367]
50453         * nss/getent.c (initgroups_keys): Show error message in case no group
50454         names are given.
50456         * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
50457         * inet/check_pf.c: Provide dummy versions of __free_in6ai and
50458         __bump_nl_timestamp.
50459         * nscd/connections (nscd_init): When host database is served open
50460         netlink socket and request notification about configuration changes.
50461         (main_loop_poll): Track netlink file descriptor and bump timestamp
50462         in case data becomes available.
50463         (main_loop_epoll): Likewise.
50464         * nscd/nscd-client.h (DB_VERSION): Bump to 2.
50465         (database_pers_head): Add extra_data fileds.
50466         Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
50467         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
50468         * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
50469         Adjust caller.
50470         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
50471         in6ai data, call __free_in6ai.
50472         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
50473         Add -DHAVE_NETLINK.
50474         * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite.  Cache the
50475         interface information.  Reuse previous data if netlink timestamp
50476         is not changed.
50477         (__bump_nl_timestamp): New function.
50478         (__free_in6ai): New function.
50480 2011-10-30  Ulrich Drepper  <drepper@gmail.com>
50482         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
50483         close_not_cancel_no_status here.
50484         (__check_pf): Reorganize code a bit to not call close twice if OOM.
50486 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
50488         [BZ #13276]
50489         * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
50490         return value.
50492         * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
50493         * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
50494         asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
50496 2011-07-03  Andreas Jaeger  <aj@suse.de>
50498         [BZ #10709]
50499         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
50500         of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
50501         * math/libm-test.inc (sin_test): Add test case.
50503 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
50505         [BZ #13337]
50506         * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
50507         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
50509         * elf/chroot_canon.c (chroot_canon): Cleanups.
50511         * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
50513         [BZ #13335]
50514         * elf/chroot_canon.c (chroot_canon): Fix readlink call.
50515         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
50517         * string/test-strchr.c: Make usable for strchrnul testing.
50518         * string/test-strchrnul.c: New file.
50519         * string/Makefile (strop-tests): Add strchrnul.
50521         * po/it.po: Update from translation team.
50522         * po/es.po: Likewise.
50524 2011-10-28  Ulrich Drepper  <drepper@gmail.com>
50526         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
50527         the three constants needed as parameters.  Drop the others.
50528         (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
50529         __m128i_strloadu_tolower.
50530         Create and initialize variable zero and use it in all the places
50531         where _mm_setzero_si128 was used.
50533         * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
50534         doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
50535         mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
50536         * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
50537         anymore.
50538         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
50539         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
50540         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
50541         __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
50542         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
50543         __mpranred, __mptan.
50544         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
50545         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
50546         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
50547         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
50548         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
50549         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
50550         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
50551         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
50552         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
50554 2011-10-28  Andreas Schwab  <schwab@redhat.com>
50556         * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
50557         redefine if SHARED.
50558         * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
50560         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
50561         wide char related routines to wcsmbs subdir.
50563 2011-10-27  Andreas Schwab  <schwab@redhat.com>
50565         [BZ #13344]
50566         * misc/sys/cdefs.h (__THROWNL): Define.
50567         * posix/unistd.h: Use __THREADNL instead of __THREAD
50568         for memory synchronization functions.
50570 2011-10-26  Roland McGrath  <roland@hack.frob.com>
50572         [BZ #13349]
50573         * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
50574         doesn't exist.
50575         * manual/stdio.texi (Obstack Streams): Node removed.
50577 2011-10-26  Andreas Schwab  <schwab@redhat.com>
50579         * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
50580         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
50581         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
50583         * math/math_private.h (math_force_eval): Allow non-addressable
50584         arguments.
50585         * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
50587 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
50589         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
50590         file is not needed.
50592         * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
50593         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
50594         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
50595         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
50596         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
50597         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
50598         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
50599         * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
50600         Add AVX variants.
50601         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
50602         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
50603         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
50604         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
50605         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
50606         * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
50607         * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
50608         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
50609         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
50610         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
50611         * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
50612         * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
50613         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
50614         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
50615         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
50616         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
50617         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
50618         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
50619         * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
50621         * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
50622         all the time.  Define bit_AVX.  Define HAS_* macros using bit_* macros.
50624         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
50625         place.  Use VEX encoding when compiling for AVX.
50627 2011-10-25  Andreas Schwab  <schwab@redhat.com>
50629         * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
50630         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
50632         * string/test-strchr.c (do_test): Don't generate NUL bytes.
50634 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
50636         * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
50637         useless if() expression.
50638         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
50639         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
50640         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
50641         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
50642         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
50643         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
50644         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
50645         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
50646         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
50647         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
50648         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
50649         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
50650         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
50651         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
50652         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
50653         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
50654         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
50655         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
50656         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
50658         * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
50660 2011-10-25  Andreas Schwab  <schwab@redhat.com>
50662         * elf/dl-deps.c (_dl_map_object_deps): Remove always true
50663         condition.
50664         * elf/dl-fini.c (_dl_sort_fini): Likewise.
50666 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
50668         * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
50669         .text section.  Avoid duplicate constants.
50670         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
50671         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50672         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
50673         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50674         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
50675         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50676         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50677         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50678         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
50679         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
50680         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
50681         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
50682         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
50683         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
50684         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
50685         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
50686         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
50687         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
50688         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
50689         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50690         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
50691         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
50692         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
50693         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
50694         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
50695         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
50696         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
50697         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
50698         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
50699         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
50700         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
50701         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
50702         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
50703         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
50704         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
50705         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
50706         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
50707         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
50708         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
50709         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
50710         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
50711         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
50712         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
50713         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
50714         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
50716 2011-10-24  Ulrich Drepper  <drepper@gmail.com>
50718         * sysdeps/x86_64/dla.h: Move to ...
50719         * sysdeps/x86_64/fpu/dla.h: ...here.
50720         (DLA_FMS): Some compilers fail to inline __builtin_fma in some
50721         situations.  Use __builtin_fma only for gcc 4.6 and up.
50723         * config.make.in: Add have-mfma4 entry.
50724         * configure.in: Substitute libc_cv_cc_fma4.
50725         * math/Makefile (dbl-only-routines): Add sincostab.
50726         * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
50727         Use __sincostab not sincos.
50728         * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
50729         name is a macro.
50730         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
50731         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50732         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50733         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.  Define singArctan2
50734         using __copysign.
50735         * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr.  Don't define
50736         __cr and __cpymn.  Define __cpy unless NO___CPY is defined.  Define
50737         norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
50738         * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
50739         and __inv.
50740         * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
50741         * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
50742         __copysign.
50743         * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos.  Don't
50744         define aliases when function name is a macro.
50745         * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
50746         sysdeps/ieee754/dbl-64/sincos.tbl.
50747         * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
50748         fma4-enabled routines.
50749         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
50750         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
50751         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
50752         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
50753         * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
50754         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
50755         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
50756         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
50757         * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
50758         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
50759         * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
50760         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
50761         * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
50762         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
50763         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
50764         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
50765         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
50766         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
50767         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
50768         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
50769         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
50770         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
50771         * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
50772         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
50773         * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
50774         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
50775         * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
50776         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
50777         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
50778         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
50780         * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
50781         rename.
50782         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50783         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50784         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50785         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50786         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50787         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50788         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
50789         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50791 2011-10-24  Andreas Schwab  <schwab@redhat.com>
50793         * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
50795 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
50797         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
50799         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
50800         prediction.
50801         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
50803         * string/strnlen.c: Don't define STRNLEN, reverse logic.
50804         Remove unused variable magic_bits.
50805         * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
50807         * string/strnlen.c: Define and use STRNLEN macro.
50808         * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
50809         Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
50810         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
50811         * wcsmbs/wcslen.c: Define and use WCSLEN.
50812         * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
50813         * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
50814         * sysdeps/i386/i686/multiarch/strnlen.S: New file.
50815         * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
50816         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
50817         * sysdeps/i386/i686/multiarch/wcslen.S: New file.
50818         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
50820 2011-10-20  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50822         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
50823         strnlen-sse2-no-bsf.
50824         Rename strlen-no-bsf to strlen-sse2-no-bsf.
50825         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
50826         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
50827         Add strnlen support.
50828         (USE_AS_STRNLEN): New macro.
50829         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
50830         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
50831         Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
50832         * sysdeps/x86_64/wcslen.S: New file.
50834 2011-10-20  Michael Zolotukhin  <michael.v.zolotukhin@gmail.com>
50836         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
50837         XMM-moves are used for copying on small sizes.
50839 2011-10-19  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50841         * wcsmbs/Makefile (strop-tests): Add wcschr.
50842         * wcsmbs/test-wcschr.c: New file.
50843         * string/test-strchr.c: Update.
50844         Add wcschr support.
50845         (WIDE): New macro.
50847 2011-10-18  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50849         * wcsmbs/Makefile (strop-tests): Add wcslen.
50850         * wcsmbs/test-wcslen.c: New file.
50851         * string/test-strlen.c: Update.
50852         Add wcslen support.
50853         (WIDE): New macro.
50855 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
50857         * po/it.po: Update from translation team.
50859 2011-09-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50861         * sysdeps/x86_64/wcscmp.S: Update.
50862         Fix wrong comparison semantics.
50863         wcscmp shall use signed comparison not unsigned.
50864         Don't use substraction to avoid overflow bug.
50865         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
50866         * wcsmbc/wcscmp.c: Likewise.
50867         * string/test-strcmp.c: Likewise.
50868         Add new tests to check cases with negative values.
50870 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
50872         * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
50873         * sysdeps/x86_64/dla.h: ...here.  New file.
50874         * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
50875         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50876         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50877         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50878         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50879         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
50880         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50881         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
50882         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50884 2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
50886         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
50887         __ynl_finite aliases.
50889 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
50891         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
50893         * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
50894         define DLA_FMA.
50895         [DLA_FMA] (EMULV): Use DLA_FMA.
50896         [DLA_FMA] (MUL12): Use EMULV.
50897         * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
50898         that are not needed.
50899         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50900         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50901         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50902         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50903         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50904         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
50905         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50907 2011-10-22  Andreas Schwab  <schwab@linux-m68k.org>
50909         * math/s_nan.c: Undef __nan.
50910         * math/s_nanf.c: Undef __nanf.
50911         * math/s_nanl.c: Undef __nanl.
50912         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
50913         "math_private.h".
50915 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
50917         * math/s_catan.c: Add branch predictions.
50918         * math/s_catanf.c: Likewise.
50919         * math/s_catanh.c: Likewise.
50920         * math/s_catanhf.c: Likewise.
50921         * math/s_catanhl.c: Likewise.
50922         * math/s_catanl.c: Likewise.
50923         * math/s_cexp.c: Likewise.
50924         * math/s_cexpf.c: Likewise.
50925         * math/s_cexpl.c: Likewise.
50926         * math/s_clog.c: Likewise.
50927         * math/s_clog10.c: Likewise.
50928         * math/s_clog10f.c: Likewise.
50929         * math/s_clog10l.c: Likewise.
50930         * math/s_clogf.c: Likewise.
50931         * math/s_clogl.c: Likewise.
50932         * math/s_csqrt.c: Likewise.
50933         * math/s_csqrtf.c: Likewise.
50934         * math/s_csqrtl.c: Likewise.
50935         * math/s_ctanf.c: Likewise.
50936         * math/s_ctanh.c: Likewise.
50937         * math/s_ctanhf.c: Likewise.
50938         * math/s_ctanhl.c: Likewise.
50939         * math/s_ctanl.c: Likewise.
50941         * math/math_private.h: Define __nan, __nanf, __nanl.
50942         * math/s_cacosh.c: Include <math_private.h>.
50943         * math/s_cacoshl.c: Likewise.
50944         * math/s_casinh.c: Likewise.
50945         * math/s_casinhf.c: Likewise.
50946         * math/s_casinhl.c: Likewise.
50947         * math/s_ccos.c: Rely entire on ccosh.
50948         * math/s_ccosf.c: Rely entire on ccoshf.
50949         * math/s_ccosl.c: Rely entirely on ccoshl.
50950         * math/s_ccosh.c: Add branch predicion helpers.  Add branch prediction.
50951         Remove tests for FE_INVALID.
50952         * math/s_ccoshf.c: Likewise.
50953         * math/s_ccoshl.c: Likewise.
50954         * math/s_csin.c: Likewise.
50955         * math/s_csinf.c: Likewise.
50956         * math/s_csinh.c Likewise.
50957         * math/s_csinhf.c: Likewise.
50958         * math/s_csinhl.c: Likewise.
50959         * math/s_csinl.c: Likewise.
50960         * math/s_ctan.c: Likewise.
50961         * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
50962         * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
50963         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
50965 2011-10-21  Ulrich Drepper  <drepper@gmail.com>
50967         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
50968         compilation problems.
50970         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
50971         __builtin_expect.
50973 2011-10-20  Ulrich Drepper  <drepper@gmail.com>
50975         * sysdeps/i386/configure.in: Test for -mfma4 option.
50976         * config.h.in: Add HAVE_FMA4_SUPPORT entry.
50977         * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
50978         COMMON_CPUID_INDEX_80000001.
50979         * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
50980         * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
50981         use it if FMA3 is not supported.
50982         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
50984         * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
50985         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
50987 2011-10-20  Andreas Schwab  <schwab@redhat.com>
50989         [BZ #12892]
50990         * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
50991         it would create a cycle with a link time dependency.
50993 2011-10-19  Ulrich Drepper  <drepper@gmail.com>
50995         * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
50996         instruction.
50997         * string/Makefile (strop-tests): Add rawmemchr.
50998         * string/test-rawmemchr.c: New file.
51000         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
51001         * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file.  Split out from...
51002         * sysdeps/x86_64/multiarch/strcmp.S: ...here.  Include strcmp-sse42.S
51003         when compiling str{,n}casecmp and when AVX is available.  Hook up
51004         new optimized code in initializers.
51006 2011-10-19  Andreas Schwab  <schwab@redhat.com>
51008         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
51009         __feraiseexcept instead of feraiseexcept.
51011 2011-10-18  Ulrich Drepper  <drepper@gmail.com>
51013         * math/math_private.h: Define defaults for libc_fetestexcept and
51014         libc_feupdateenv.
51015         * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
51016         * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
51017         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
51018         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
51019         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
51020         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
51021         libc_fetestexcept and libc_feupdateenv.
51023         * math/math_private.h: Define defaults for libc_feholdexcept_setround,
51024         libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
51025         * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
51026         * sysdeps/x86_64/fpu/math_private.h: Define special version of
51027         libc_feholdexcept_setround.
51029         * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
51030         Add s_nearbyint-c and s_nearbyintf-c.
51031         * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
51032         nearbyintf inlines.
51033         * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
51034         * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
51035         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
51036         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
51038         * math/math_private.h: Define defaults for libc_fegetround,
51039         libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
51040         libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
51041         libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
51042         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
51043         libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
51044         standard functions.
51045         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
51046         Remove comments and hacks for old compiler versions.
51047         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
51048         libc_fegetround, libc_fesetround, libc_feholdexcept, and
51049         libc_feholdexceptl.
51051 2011-10-18  Andreas Schwab  <schwab@redhat.com>
51053         * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
51054         (__feraiseexcept_renamed): Add __NTH.
51055         (feraiseexcept): Add __NTH.  Rename local variables to fix
51056         namespace violations.
51058 2011-10-17  Ulrich Drepper  <drepper@gmail.com>
51060         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
51062         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
51064         * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
51065         recently added interfaces.
51066         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
51068         * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
51069         about macro parameter expansion.
51071         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
51072         __NO_MATH_INLINES is defined.  Cleanups.
51074         * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
51075         and __floorf is target has SSE4.1.
51076         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
51077         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
51078         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
51079         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
51081         * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
51082         name.
51083         (floorf): Likewise.
51085         * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
51087 2011-10-17  Andreas Schwab  <schwab@redhat.com>
51089         * misc/sys/cdefs.h: Fix last change.
51091         * grp/initgroups.c (internal_getgrouplist): Fix initgroups
51092         database lookup.
51094 2011-10-16  Ulrich Drepper  <drepper@gmail.com>
51096         * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
51098         * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
51099         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
51100         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
51101         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
51102         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
51103         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
51104         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
51105         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
51106         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
51107         * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
51108         * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
51109         * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
51110         * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
51111         * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
51112         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
51113         * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
51114         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
51115         * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
51116         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
51117         * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
51118         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
51119         * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
51121         * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
51122         ceil, ceilf, floor, floorf.
51124         * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
51125         Perform IRELATIVE relocations last.
51127         * elf/do-rel.h: Add another parameter nrelative, replacing the
51128         local variable with the same name.  Change name of the function
51129         to end in Rel or Rela (uppercase).
51130         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
51131         nrelative to ranges.  Only nonzero for DT_REL/DT_RELA.  Pass to the
51132         elf_dynamic_do_##reloc function.
51134 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
51136         * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
51137         is sufficient, at least on modern CPUs.
51139         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
51141         * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
51142         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
51144         * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
51145         __expl_finite.
51146         * math/bits/math-finite.h: Add entries for exp.
51147         * math/e_expl.c: Add __*_finite alias.
51148         * sysdeps/i386/fpu/e_exp.S: Likewise.
51149         * sysdeps/i386/fpu/e_expf.S: Likewise.
51150         * sysdeps/i386/fpu/e_expl.c: Likewise.
51151         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
51152         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
51153         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
51154         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
51155         * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
51156         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
51157         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
51159         * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
51160         is sufficient, at least on modern CPUs.
51162         * ctype/ctype-info.c (__ctype_init): Define.
51163         * include/ctype.h (__ctype_init): Declare.
51164         (__ctype_b_loc): The variable is always initialized.
51165         (__ctype_toupper_loc): Likewise.
51166         (__ctype_tolower_loc): Likewise.
51167         * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
51168         * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
51170 2011-10-15  Andreas Schwab  <schwab@linux-m68k.org>
51172         * wcsmbs/wmemcmp.c (WMEMCMP): Define.
51174         * configure.in: Also look in $cxxmachine/include for C++ system
51175         headers.
51177 2011-09-27  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51179         * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
51180         memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
51181         * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
51182         * sysdeps/x86_64/multiarch/memcmp.S: Update.  Add __memcmp_ssse3.
51183         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
51184         (USE_AS_WMEMCMP): New macro.
51185         Fixing indents.
51186         * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
51187         * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
51188         * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
51189         * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
51190         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51191         wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
51192         * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
51193         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
51194         * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
51195         * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
51196         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
51197         (USE_AS_WMEMCMP): New macro.
51198         * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
51199         * sysdeps/string/test-memcmp.c: Update.
51200         Fix simple_wmemcmp.
51201         Add new tests.
51202         * wcsmbs/wmemcmp.c: Update.
51203         (WMEMCMP): New macro.
51204         Fix overflow bug.
51206 2011-10-12  Andreas Jaeger  <aj@suse.de>
51208         [BZ #13268]
51209         * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
51211 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
51213         * libio/iofwide.c (do_length): Avoid warning.
51215         * ctype/ctype.h (__isctype_f): Add missing __THROW.
51217 2011-10-14  Ulrich Drepper  <drepper@gmail.com>
51219         * elf/pldd-xx.c (find_maps): Remove leftover debug message.
51221         * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
51222         * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
51223         * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
51224         * sysdeps/i386/i686/fpu/e_log.S: New file.
51225         * sysdeps/i386/i686/fpu/e_logf.S: New file.
51226         * sysdeps/i386/i686/fpu/e_logl.S: New file.
51228         * ctype/ctype.h: Add support for inlined isXXX functions when
51229         compiling C++ code.
51231 2011-10-14  Andreas Schwab  <schwab@redhat.com>
51233         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
51235         * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
51237 2011-10-13  Roland McGrath  <roland@hack.frob.com>
51239         [BZ #13291]
51240         * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
51242 2011-10-13  Andreas Schwab  <schwab@redhat.com>
51244         * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
51245         * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
51246         feraiseexcept.
51248         * sysdeps/x86_64/memrchr.S: Check for zero size.
51250         * string/stratcliff.c: Add memrchr tests.
51252 2011-10-12  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51254         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51255         memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
51256         rawmemchr-sse2 rawmemchr-sse2-bsf.
51257         * sysdeps/i386/i686/multiarch/memchr.S: New file.
51258         * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
51259         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
51260         * sysdeps/i386/i686/multiarch/memrchr.S: New file.
51261         * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
51262         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
51263         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
51264         * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
51265         * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
51266         * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
51267         * string/memrchr.c (MEMRCHR): New macro.
51269 2011-10-12  Ulrich Drepper  <drepper@gmail.com>
51271         Add integration with gcc's -ffinite-math-only and optimize wrapper
51272         functions in libm.
51273         * Versions.def: Define GLIBC_2.15 version for libm.
51274         * math/Makefile (headers): Add bits/math-finite.h.
51275         * math/bits/math-finite.h: New file.
51276         * sysdeps/ia64/fpu/bits/math-finite.h: New file.
51277         * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
51278         * math/e_acoshl.c: Add __*_finite alias.
51279         * math/e_acosl.c: Likewise.
51280         * math/e_asinl.c: Likewise.
51281         * math/e_atan2l.c: Likewise.
51282         * math/e_atanhl.c: Likewise.
51283         * math/e_coshl.c: Likewise.
51284         * math/e_exp10.c: Likewise.
51285         * math/e_exp10f.c: Likewise.
51286         * math/e_exp10l.c: Likewise.
51287         * math/e_exp2l.c: Likewise.
51288         * math/e_fmodl.c: Likewise.
51289         * math/e_gammal_r.c: Likewise.
51290         * math/e_hypotl.c: Likewise.
51291         * math/e_j0l.c: Likewise.
51292         * math/e_j1l.c: Likewise.
51293         * math/e_jnl.c: Likewise.
51294         * math/e_lgammal_r.c: Likewise.
51295         * math/e_log10l.c: Likewise.
51296         * math/e_log2l.c: Likewise.
51297         * math/e_logl.c: Likewise.
51298         * math/e_powl.c: Likewise.
51299         * math/e_sinhl.c: Likewise.
51300         * math/e_sqrtl.c: Likewise.
51301         * math/e_scalb.c: Completely rewritten and optimized.
51302         * math/e_scalbf.c: Likewise.
51303         * math/e_scalbl.c: Likewise.
51304         * math/w_acos.c: Likewise.
51305         * math/w_acosf.c: Likewise.
51306         * math/w_acosl.c: Likewise.
51307         * math/w_acosh.c: Likewise.
51308         * math/w_acoshf.c: Likewise.
51309         * math/w_acoshl.c: Likewise.
51310         * math/w_asin.c: Likewise.
51311         * math/w_asinf.c: Likewise.
51312         * math/w_asinl.c: Likewise.
51313         * math/w_atan2.c: Likewise.
51314         * math/w_atan2f.c: Likewise.
51315         * math/w_atan2l.c: Likewise.
51316         * math/w_atanh.c: Likewise.
51317         * math/w_atanhf.c: Likewise.
51318         * math/w_atanhl.c: Likewise.
51319         * math/w_exp10.c: Likewise.
51320         * math/w_exp10f.c: Likewise.
51321         * math/w_exp10l.c: Likewise.
51322         * math/w_fmod.c: Likewise.
51323         * math/w_fmodf.c: Likewise.
51324         * math/w_fmodl.c: Likewise.
51325         * math/w_j0.c: Likewise.
51326         * math/w_j0f.c: Likewise.
51327         * math/w_j0l.c: Likewise.
51328         * math/w_j1.c: Likewise.
51329         * math/w_j1f.c: Likewise.
51330         * math/w_j1l.c: Likewise.
51331         * math/w_jn.c: Likewise.
51332         * math/w_jnf.c: Likewise.
51333         * math/w_log.c: Likewise.
51334         * math/w_logf.c: Likewise.
51335         * math/w_logl.c: Likewise.
51336         * math/w_log10.c: Likewise.
51337         * math/w_log10f.c: Likewise.
51338         * math/w_log10l.c: Likewise.
51339         * math/w_log2.c: Likewise.
51340         * math/w_log2f.c: Likewise.
51341         * math/w_log2l.c: Likewise.
51342         * math/w_pow.c: Likewise.
51343         * math/w_powf.c: Likewise.
51344         * math/w_powl.c: Likewise.
51345         * math/w_remainder.c: Likewise.
51346         * math/w_remainderf.c: Likewise.
51347         * math/w_remainderl.c: Likewise.
51348         * math/w_scalb.c: Likewise.
51349         * math/w_scalbf.c: Likewise.
51350         * math/w_scalbl.c: Likewise.
51351         * math/w_sqrt.c: Likewise.
51352         * math/w_sqrtf.c: Likewise.
51353         * math/w_sqrtl.c: Likewise.
51354         * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
51355         are declared.  Include <bits/math-finite.h> if -ffinite-math-only is
51356         used.
51357         * math/math_private.h: Declare __kernel_standard_f.
51358         * math/w_cosh.c: Remove cruft and optimize a bit.
51359         * math/w_coshf.c: Likewise.
51360         * math/w_coshl.c: Likewise.
51361         * math/w_exp2.c: Likewise.
51362         * math/w_exp2f.c: Likewise.
51363         * math/w_exp2l.c: Likewise.
51364         * math/w_hypot.c: Likewise.
51365         * math/w_hypotf.c: Likewise.
51366         * math/w_hypotl.c: Likewise.
51367         * math/w_lgamma.c: Likewise.
51368         * math/w_lgamma_r.c: Likewise.
51369         * math/w_lgammaf.c: Likewise.
51370         * math/w_lgammaf_r.c: Likewise.
51371         * math/w_lgammal.c: Likewise.
51372         * math/w_lgammal_r.c: Likewise.
51373         * math/w_sinh.c: Likewise.
51374         * math/w_sinhf.c: Likewise.
51375         * math/w_sinhl.c: Likewise.
51376         * math/w_tgamma.c: Likewise.
51377         * math/w_tgammaf.c: Likewise.
51378         * math/w_tgammal.c: Likewise.
51379         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
51380         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
51381         * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
51382         Minor optimizations.  Pretty printing.  Remove cruft.
51383         * sysdeps/i386/fpu/e_acosf.S: Likewise.
51384         * sysdeps/i386/fpu/e_acosh.S: Likewise.
51385         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
51386         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
51387         * sysdeps/i386/fpu/e_acosl.c: Likewise.
51388         * sysdeps/i386/fpu/e_asin.S: Likewise.
51389         * sysdeps/i386/fpu/e_asinf.S: Likewise.
51390         * sysdeps/i386/fpu/e_atan2.S: Likewise.
51391         * sysdeps/i386/fpu/e_atan2f.S: Likewise.
51392         * sysdeps/i386/fpu/e_atan2l.c: Likewise.
51393         * sysdeps/i386/fpu/e_atanh.S: Likewise.
51394         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
51395         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
51396         * sysdeps/i386/fpu/e_exp10.S: Likewise.
51397         * sysdeps/i386/fpu/e_exp10f.S: Likewise.
51398         * sysdeps/i386/fpu/e_exp10l.S: Likewise.
51399         * sysdeps/i386/fpu/e_exp2.S: Likewise.
51400         * sysdeps/i386/fpu/e_exp2f.S: Likewise.
51401         * sysdeps/i386/fpu/e_exp2l.S: Likewise.
51402         * sysdeps/i386/fpu/e_fmod.S: Likewise.
51403         * sysdeps/i386/fpu/e_fmodf.S: Likewise.
51404         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
51405         * sysdeps/i386/fpu/e_hypot.S: Likewise.
51406         * sysdeps/i386/fpu/e_hypotf.S: Likewise.
51407         * sysdeps/i386/fpu/e_log.S: Likewise.
51408         * sysdeps/i386/fpu/e_log10.S: Likewise.
51409         * sysdeps/i386/fpu/e_log10f.S: Likewise.
51410         * sysdeps/i386/fpu/e_log10l.S: Likewise.
51411         * sysdeps/i386/fpu/e_log2.S: Likewise.
51412         * sysdeps/i386/fpu/e_log2f.S: Likewise.
51413         * sysdeps/i386/fpu/e_log2l.S: Likewise.
51414         * sysdeps/i386/fpu/e_logf.S: Likewise.
51415         * sysdeps/i386/fpu/e_logl.S: Likewise.
51416         * sysdeps/i386/fpu/e_pow.S: Likewise.
51417         * sysdeps/i386/fpu/e_powf.S: Likewise.
51418         * sysdeps/i386/fpu/e_powl.S: Likewise.
51419         * sysdeps/i386/fpu/e_remainder.S: Likewise.
51420         * sysdeps/i386/fpu/e_remainderf.S: Likewise.
51421         * sysdeps/i386/fpu/e_remainderl.S: Likewise.
51422         * sysdeps/i386/fpu/e_scalb.S: Likewise.
51423         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
51424         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
51425         * sysdeps/i386/fpu/e_sqrt.S: Likewise.
51426         * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
51427         * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
51428         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
51429         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
51430         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
51431         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
51432         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
51433         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
51434         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
51435         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
51436         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
51437         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
51438         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
51439         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
51440         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
51441         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
51442         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
51443         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
51444         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
51445         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
51446         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
51447         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
51448         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
51449         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
51450         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
51451         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
51452         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
51453         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
51454         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
51455         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
51456         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
51457         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
51458         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
51459         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
51460         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
51461         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
51462         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
51463         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
51464         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
51465         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
51466         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
51467         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
51468         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
51469         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
51470         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
51471         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
51472         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
51473         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
51474         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
51475         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
51476         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
51477         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
51478         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
51479         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
51480         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
51481         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
51482         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
51483         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
51484         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
51485         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
51486         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
51487         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
51488         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
51489         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
51490         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
51491         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
51492         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
51493         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
51494         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
51495         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
51496         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
51497         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
51498         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
51499         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
51500         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
51501         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
51502         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
51503         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
51504         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
51505         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
51506         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
51507         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
51508         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
51509         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
51510         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
51511         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
51512         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
51513         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
51514         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
51515         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
51516         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
51517         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
51518         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
51519         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
51520         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
51521         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
51522         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
51523         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
51524         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
51525         * sysdeps/s390/fpu/e_sqrt.c: Likewise.
51526         * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
51527         * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
51528         * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
51529         * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
51530         * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
51531         * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
51532         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
51533         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
51534         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
51535         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
51536         * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
51537         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
51538         * sysdeps/x86_64/fpu/e_sqrt.c: Likewise.  Fix parameter order
51539         * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
51540         * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
51541         (__isnanf): Likewise.
51542         (__isinf_ns): Likewise.
51543         (__isinf_nsf): Likewise.
51544         (__finite): Likewise.
51545         (__finitef): Likewise.
51546         (__ieee754_sqrt): Define as macro.
51547         (__ieee754_sqrtf): Define as macro.
51548         (__ieee754_sqrtl): Define as macro.
51549         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
51550         inlined copy.
51551         * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
51552         __FINITE_MATH_ONLY__ consistent.
51553         * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
51555 2011-10-10  Andreas Schwab  <schwab@linux-m68k.org>
51557         * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
51558         of rawmemchr.
51560         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
51562 2011-10-09  Ulrich Drepper  <drepper@gmail.com>
51564         * po/ja.po: Update from translation team.
51566 2011-10-08  Roland McGrath  <roland@hack.frob.com>
51568         * locale/programs/locarchive.c (prepare_address_space): New function.
51569         (create_archive, enlarge_archive, open_archive): Use it.
51571         * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
51572         inside [SHARED], where it is used.
51574         * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
51576         * nss/getent.c (netgroup_keys): Remove unused variable.
51577         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
51579 2011-10-08  Ulrich Drepper  <drepper@gmail.com>
51581         * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
51582         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
51583         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
51584         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
51585         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
51586         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
51587         * math/Makefile (libm-calls): Add s_isinf_ns.
51588         * math/divtc3.c: Use __isinf_nsl instead of isinf.
51589         * math/multc3.c: Likewise.
51590         * math/s_casin.c: Likewise.
51591         * math/s_casinf.c: Likewise.
51592         * math/s_casinl.c: Likewise.
51593         * math/s_ccos.c: Likewise.
51594         * math/s_ccosf.c: Likewise.
51595         * math/s_ccosl.c: Likewise.
51596         * math/s_ctan.c: Likewise.
51597         * math/s_ctanf.c: Likewise.
51598         * math/s_ctanh.c: Likewise.
51599         * math/s_ctanhf.c: Likewise.
51600         * math/s_ctanhl.c: Likewise.
51601         * math/s_ctanl.c: Likewise.
51602         * math/w_fmod.c: Likewise.
51603         * math/w_fmodf.c: Likewise.
51604         * math/w_fmodl.c: Likewise.
51605         * math/w_remainder.c: Likewise.
51606         * math/w_remainderf.c: Likewise.
51607         * math/w_remainderl.c: Likewise.
51608         * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
51609         * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
51610         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
51611         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
51612         * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
51613         * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
51614         * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
51615         __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
51617         * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
51618         of the number.
51619         * stdio-common/printf_fphex.c: Likewise.
51620         * stdio-common/printf_size.c: Likewise.
51622         * math/e_exp10.c: Include math_private.h using <...> not "...".
51623         * math/e_exp10f.c: Likewise.
51624         * math/e_exp10l.c: Likewise.
51625         * math/e_exp2l.c: Likewise.
51626         * math/e_j0l.c: Likewise.
51627         * math/e_j1l.c: Likewise.
51628         * math/e_jnl.c: Likewise.
51629         * math/e_lgammal_r.c: Likewise.
51630         * math/e_rem_pio2l.c: Likewise.
51631         * math/e_scalb.c: Likewise.
51632         * math/e_scalbf.c: Likewise.
51633         * math/e_scalbl.c: Likewise.
51634         * math/k_cosl.c: Likewise.
51635         * math/k_sinl.c: Likewise.
51636         * math/k_tanl.c: Likewise.
51637         * math/s_cacoshf.c: Likewise.
51638         * math/s_catan.c: Likewise.
51639         * math/s_catanf.c: Likewise.
51640         * math/s_catanh.c: Likewise.
51641         * math/s_catanhf.c: Likewise.
51642         * math/s_catanhl.c: Likewise.
51643         * math/s_catanl.c: Likewise.
51644         * math/s_ccosh.c: Likewise.
51645         * math/s_ccoshf.c: Likewise.
51646         * math/s_ccoshl.c: Likewise.
51647         * math/s_cexp.c: Likewise.
51648         * math/s_cexpf.c: Likewise.
51649         * math/s_cexpl.c: Likewise.
51650         * math/s_clog.c: Likewise.
51651         * math/s_clog10.c: Likewise.
51652         * math/s_clog10f.c: Likewise.
51653         * math/s_clog10l.c: Likewise.
51654         * math/s_clogf.c: Likewise.
51655         * math/s_clogl.c: Likewise.
51656         * math/s_csin.c: Likewise.
51657         * math/s_csinf.c: Likewise.
51658         * math/s_csinh.c: Likewise.
51659         * math/s_csinhf.c: Likewise.
51660         * math/s_csinhl.c: Likewise.
51661         * math/s_csinl.c: Likewise.
51662         * math/s_csqrt.c: Likewise.
51663         * math/s_csqrtf.c: Likewise.
51664         * math/s_csqrtl.c: Likewise.
51665         * math/s_ctan.c: Likewise.
51666         * math/s_ctanf.c: Likewise.
51667         * math/s_ctanh.c: Likewise.
51668         * math/s_ctanhf.c: Likewise.
51669         * math/s_ctanhl.c: Likewise.
51670         * math/s_ctanl.c: Likewise.
51671         * math/s_ldexp.c: Likewise.
51672         * math/s_ldexpf.c: Likewise.
51673         * math/s_ldexpl.c: Likewise.
51674         * math/s_significand.c: Likewise.
51675         * math/s_significandf.c: Likewise.
51676         * math/s_significandl.c: Likewise.
51677         * math/w_acos.c: Likewise.
51678         * math/w_acosf.c: Likewise.
51679         * math/w_acosh.c: Likewise.
51680         * math/w_acoshf.c: Likewise.
51681         * math/w_acoshl.c: Likewise.
51682         * math/w_acosl.c: Likewise.
51683         * math/w_asin.c: Likewise.
51684         * math/w_asinf.c: Likewise.
51685         * math/w_asinl.c: Likewise.
51686         * math/w_atan2.c: Likewise.
51687         * math/w_atan2f.c: Likewise.
51688         * math/w_atan2l.c: Likewise.
51689         * math/w_atanh.c: Likewise.
51690         * math/w_atanhf.c: Likewise.
51691         * math/w_atanhl.c: Likewise.
51692         * math/w_cosh.c: Likewise.
51693         * math/w_coshf.c: Likewise.
51694         * math/w_coshl.c: Likewise.
51695         * math/w_dremf.c: Likewise.
51696         * math/w_exp10.c: Likewise.
51697         * math/w_exp10f.c: Likewise.
51698         * math/w_exp10l.c: Likewise.
51699         * math/w_exp2.c: Likewise.
51700         * math/w_exp2f.c: Likewise.
51701         * math/w_fmod.c: Likewise.
51702         * math/w_fmodf.c: Likewise.
51703         * math/w_fmodl.c: Likewise.
51704         * math/w_hypot.c: Likewise.
51705         * math/w_hypotf.c: Likewise.
51706         * math/w_hypotl.c: Likewise.
51707         * math/w_j0.c: Likewise.
51708         * math/w_j0f.c: Likewise.
51709         * math/w_j0l.c: Likewise.
51710         * math/w_j1.c: Likewise.
51711         * math/w_j1f.c: Likewise.
51712         * math/w_j1l.c: Likewise.
51713         * math/w_jn.c: Likewise.
51714         * math/w_jnf.c: Likewise.
51715         * math/w_jnl.c: Likewise.
51716         * math/w_lgamma.c: Likewise.
51717         * math/w_lgamma_r.c: Likewise.
51718         * math/w_lgammaf.c: Likewise.
51719         * math/w_lgammaf_r.c: Likewise.
51720         * math/w_lgammal.c: Likewise.
51721         * math/w_lgammal_r.c: Likewise.
51722         * math/w_log.c: Likewise.
51723         * math/w_log10.c: Likewise.
51724         * math/w_log10f.c: Likewise.
51725         * math/w_log10l.c: Likewise.
51726         * math/w_log2.c: Likewise.
51727         * math/w_log2f.c: Likewise.
51728         * math/w_log2l.c: Likewise.
51729         * math/w_logf.c: Likewise.
51730         * math/w_logl.c: Likewise.
51731         * math/w_pow.c: Likewise.
51732         * math/w_powf.c: Likewise.
51733         * math/w_powl.c: Likewise.
51734         * math/w_remainder.c: Likewise.
51735         * math/w_remainderf.c: Likewise.
51736         * math/w_remainderl.c: Likewise.
51737         * math/w_scalb.c: Likewise.
51738         * math/w_scalbf.c: Likewise.
51739         * math/w_scalbl.c: Likewise.
51740         * math/w_sinh.c: Likewise.
51741         * math/w_sinhf.c: Likewise.
51742         * math/w_sinhl.c: Likewise.
51743         * math/w_sqrt.c: Likewise.
51744         * math/w_sqrtf.c: Likewise.
51745         * math/w_sqrtl.c: Likewise.
51746         * math/w_tgamma.c: Likewise.
51747         * math/w_tgammaf.c: Likewise.
51748         * math/w_tgammal.c: Likewise.
51750         * po/ja.po: Update from translation team.
51752 2011-09-29  Andreas Jaeger  <aj@suse.de>
51754         [BZ #13179]
51755         * sunrpc/netname.c (netname2host): Fix logic.
51757         [BZ #6779]
51758         [BZ #6783]
51759         * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
51760         correctly.
51761         * math/w_remainder.c (__remainder): Likewise.
51762         * math/w_remainderf.c (__remainderf): Likewise.
51763         * math/libm-test.inc (remainder_test): Add test cases.
51765 2011-10-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
51767         * stdlib/longlong.h: Update from GCC.  Fix zarch smul_ppmm and
51768         sdiv_qrnnd.
51770 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
51772         * string/test-memcmp.c: Avoid unncessary #defines.
51773         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
51775 2011-08-31  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51777         * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
51778         Use new sse2 version for core i3 - i7 as it's faster
51779         than sse42 version.
51780         (bit_Prefer_PMINUB_for_stringop): New.
51781         * sysdeps/x86_64/rawmemchr.S: Update.
51782         Replace with faster SSE2 version.
51783         * sysdeps/x86_64/memrchr.S: New file.
51784         * sysdeps/x86_64/memchr.S: Update.
51785         Replace with faster SSE2 version.
51787 2011-09-12  Marek Polacek  <mpolacek@redhat.com>
51789         * elf/dl-load.c (lose): Add cast to avoid warning.
51791 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
51793         * po/ca.po: Update from translation team.
51795         * inet/getnetgrent_r.c: Hook up nscd.
51796         * nscd/Makefile (routines): Add nscd_netgroup.
51797         (nscd-modules): Add netgroupcache.
51798         (CFLAGS-netgroupcache.c): Define.
51799         * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
51800         (cache_search): Add const to second parameter.
51801         * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
51802         INNETGR.
51803         (dbs): Add netgrdb entry.
51804         (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
51805         (verify_persistent_db): Handle netgrdb.
51806         (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
51807         * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
51808         GETFDNETGR.
51809         (netgroup_response_header): Define.
51810         (innetgroup_response_header): Define.
51811         (datahead): Add netgroup_response_header and innetgroup_response_header
51812         elements.
51813         * nscd/nscd.conf: Add entries for netgroup cache.
51814         * nscd/nscd.h (dbtype): Add netgrdb.
51815         (_PATH_NSCD_NETGROUP_DB): Define.
51816         (netgroup_iov_disabled): Declare.
51817         (xmalloc, xcalloc, xrealloc): Move declarations here.
51818         (cache_search): Adjust prototype.
51819         Add netgroup-related prototypes.
51820         * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
51821         * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
51822         (__nscd_innetgr): Declare.
51823         * nscd/selinux.c (perms): Use access_vector_t as element type and
51824         add netgroup-related initializers.
51825         * nscd/netgroupcache.c: New file.
51826         * nscd/nscd_netgroup.c: New file.
51827         * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
51828         * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
51829         For four parameters use innetgr.
51830         * nss/nss_files/files-init.c: Add definition and callback for netgr.
51831         * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
51832         (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
51833         * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
51835         * nscd/connections.c (register_traced_file): Don't register file
51836         for disabled databases.
51838 2011-10-06  Ulrich Drepper  <drepper@gmail.com>
51840         * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
51842         * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
51843         from tree and freeing node.
51845 2011-09-25  Jiri Olsa  <jolsa@redhat.com>
51847         * nss/nsswitch.c (__nss_database_lookup): Handle
51848         nss_parse_service_list out of memory case.
51850 2011-09-15  Jiri Olsa  <jolsa@redhat.com>
51852         * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
51853         out of memory case.
51855 2011-10-04  Andreas Schwab  <schwab@redhat.com>
51857         * include/dlfcn.h (__RTLD_NOIFUNC): Define.
51858         * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
51859         pass it down.
51860         * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
51861         elf_machine_rela, elf_machine_lazy_rel.
51862         (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
51863         (ELF_DYNAMIC_DO_REL): Likewise.
51864         (ELF_DYNAMIC_DO_RELA): Likewise.
51865         (ELF_DYNAMIC_RELOCATE): Likewise.
51866         * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
51867         to ELF_DYNAMIC_DO_REL.
51868         * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
51869         (dl_main): In trace mode always set __RTLD_NOIFUNC.
51870         * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
51871         elf_machine_rela.
51872         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
51873         skip_ifunc, don't call ifunc function if non-zero.
51874         (elf_machine_rela): Likewise.
51875         (elf_machine_lazy_rel): Likewise.
51876         (elf_machine_lazy_rela): Likewise.
51877         * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
51878         (elf_machine_lazy_rel): Likewise.
51879         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
51880         Likewise.
51881         (elf_machine_lazy_rel): Likewise.
51882         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
51883         Likewise.
51884         (elf_machine_lazy_rel): Likewise.
51885         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
51886         (elf_machine_lazy_rel): Likewise.
51887         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
51888         (elf_machine_lazy_rel): Likewise.
51889         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
51890         (elf_machine_lazy_rel): Likewise.
51891         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
51892         (elf_machine_lazy_rel): Likewise.
51893         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
51894         (elf_machine_lazy_rel): Likewise.
51895         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
51896         (elf_machine_lazy_rel): Likewise.
51898 2011-09-28  Ulrich Drepper  <drepper@gmail.com>
51900         * nss/nss_files/files-init.c (_nss_files_init): Use static
51901         initialization for all the *_traced_file variables.
51903 2011-09-28  Andreas Schwab  <schwab@redhat.com>
51905         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
51907 2011-09-27  Roland McGrath  <roland@hack.frob.com>
51909         [BZ #13226]
51910         * manual/signal.texi (Longjmp in Handler): Grammar fixes.
51912 2011-09-27  Andreas Schwab  <schwab@redhat.com>
51914         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
51915         Reread the line before reparsing it.
51917 2011-09-26  Andreas Schwab  <schwab@redhat.com>
51919         * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
51921 2011-09-21  Chung-Lin Tang  <cltang@codesourcery.com>
51922             Maxim Kuvyrkov  <maxim@codesourcery.com>
51923             Joseph Myers  <joseph@codesourcery.com>
51925         * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
51926         if needed for __stack_chk_guard.
51928 2011-09-19  Roland McGrath  <roland@hack.frob.com>
51930         * sysdeps/posix/spawni.c (script_execute): Always define it.
51931         It will be optimized away if unused.
51932         (maybe_script_execute): New function.
51933         (__spawni): Call it.
51935         * Makerules: Don't include tls.make.
51936         (config-tls): Always set to thread.
51937         * tls.make.c: File removed.
51939 2011-09-19  Mike Frysinger  <vapier@gentoo.org>
51941         * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
51942         * config.make.in (CPPFLAGS-config): New substituted variable.
51944 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
51946         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
51948         [BZ #13192]
51949         * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
51950         Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
51952 2011-09-15  Roland McGrath  <roland@hack.frob.com>
51954         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
51955         (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
51956         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
51957         (CALL_FAIL): Likewise.
51958         * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
51959         (CALL_FAIL): Macro removed.
51960         Patch mostly by Mike Frysinger <vapier@gentoo.org>.
51962 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
51964         * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
51965         for __FINITE_MATH_ONLY__ == 1.
51967 2011-09-15  Andreas Schwab  <schwab@redhat.com>
51969         * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
51970         __ieee754_sqrt instead of sqrt.
51971         * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
51972         __ieee754_sqrtf instead of sqrtf.
51973         * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
51974         __floorf instead of floorf.
51975         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
51976         __floorf, __truncf instead of floorf, truncf.
51978 2011-09-14  Ulrich Drepper  <drepper@gmail.com>
51980         * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
51982         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
51983         __extern_always_inline.
51984         Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
51985         32-bit.
51987 2011-09-14  Andreas Schwab  <schwab@redhat.com>
51989         * elf/rtld.c (dl_main): Also relocate in dependency order when
51990         doing symbol dependency testing.
51992 2011-09-13  Andreas Schwab  <schwab@linux-m68k.org>
51994         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
51995         Always define `refsym'.
51997 2011-09-13  Andreas Schwab  <schwab@redhat.com>
51999         * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
52000         (__FD_ELT): Renamed from __FDELT.
52001         * misc/bits/select2.h (__FD_ELT): Likewise.
52002         * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
52003         __FD_MASK instead of __FDELT, __FDMASK.
52004         * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
52005         Likewise.
52006         * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
52007         Likewise.
52009         * elf/Makefile (gen-ldd): Fix pattern.
52011         * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
52012         (init_tls): Likewise.
52014 2011-09-12  Ulrich Drepper  <drepper@gmail.com>
52016         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
52018 2011-09-12  Andreas Schwab  <schwab@redhat.com>
52020         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
52021         `struct cmsghdr *' instead of `void *'.
52022         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
52023         Likewise.
52025 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
52027         * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
52028         if non-absolute.
52029         * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
52030         ldd_rewrite_script.
52032 2011-09-11  Ulrich Drepper  <drepper@gmail.com>
52034         * configure.in: Remove --with-tls option.
52035         * config.h.in: Remove HAVE_TLS_SUPPORT entry.
52036         * sysdeps/i386/elf/configure.in: Always test for TLS support and err
52037         out in case it is missing.
52038         * sysdeps/ia64/elf/configure.in: Likewise.
52039         * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
52040         * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
52041         * sysdeps/s390/s390-32/elf/configure.in: Likewise.
52042         * sysdeps/s390/s390-64/elf/configure.in: Likewise.
52043         * sysdeps/sh/elf/configure.in: Likewise.
52044         * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
52045         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
52046         * sysdeps/x86_64/elf/configure.in: Likewise.
52047         * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
52048         * sysdeps/mach/hurd/tls.h: Likewise.
52050         [BZ #13067]
52051         * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
52053         [BZ #13090]
52054         * configure.in: Fix use of AC_INIT.
52056         * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
52058 2011-09-10  Ulrich Drepper  <drepper@gmail.com>
52060         * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
52061         __set_errno.
52062         * malloc/hooks.c: Likewise.
52064         [BZ #11929]
52065         * malloc/arena.c (ptmalloc_init_minimal): Removed.  Initialize all
52066         variables statically.
52067         (narenas): Initialize.
52068         (list_lock): Initialize.
52069         (ptmalloc_init): Don't call ptmalloc_init_minimal.  Remove
52070         initializtion of main_arena and list_lock.  Small cleanups.
52071         Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
52072         * malloc/malloc.c: Remove malloc_getpagesize.  Include <ldsodefs.h>.
52073         Add initializers to main_arena and mp_.
52074         (malloc_state): Remove pagesize member.  Change all users to use
52075         GLRO(dl_pagesize).
52077         * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
52078         * sysdeps/unix/sysv/linux/getpagesize.c: Simplify.  GLRO(dl_pagesize)
52079         is always initialized.
52081         * malloc/malloc.c: Removed unused configurations and dead code.
52082         * malloc/arena.c: Likewise.
52083         * malloc/hooks.c: Likewise.
52084         * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
52086         * include/tls.h: Removed.  USE___THREAD must always be defined.
52087         * bits/libc-tsd.h: Don't handle !USE___THREAD.
52088         * elf/dl-libc.c: Likewise.
52089         * elf/dl-tsd.c: Likewise.
52090         * include/errno.h: Likewise.
52091         * include/netdb.h: Likewise.
52092         * include/resolv.h: Likewise.
52093         * inet/herrno-loc.c: Likewise.
52094         * inet/herrno.c: Likewise.
52095         * malloc/arena.c: Likewise.
52096         * malloc/hooks.c: Likewise.
52097         * malloc/malloc.c: Likewise.
52098         * resolv/res-state.c: Likewise.
52099         * resolv/res_libc.c: Likewise.
52100         * sysdeps/i386/dl-machine.h: Likewise.
52101         * sysdeps/ia64/dl-machine.h: Likewise.
52102         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
52103         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
52104         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
52105         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
52106         * sysdeps/sh/dl-machine.h: Likewise.
52107         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
52108         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
52109         * sysdeps/unix/i386/sysdep.S: Likewise.
52110         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
52111         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
52112         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
52113         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
52114         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
52115         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
52116         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
52117         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
52118         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
52119         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
52120         * sysdeps/unix/x86_64/sysdep.S: Likewise.
52121         * sysdeps/x86_64/dl-machine.h: Likewise.
52122         * tls.make.c: Likewise.
52124         * configure.in: Remove --with-__thread option.  Make tests for
52125         --no-whole-archive, __builtin_expect, symbol redirection, __thread,
52126         tls_model attribute fail if no support is available.  Remove
52127         USE_IN_LIBIO.
52128         * Makeconfig: Adjust for dropped configure option.  All features are
52129         now mandatory.
52130         * Makerules: Likewise.
52131         * Versions.def: Likewise.
52132         * argp/argp-fmtstream.c: Likewise.
52133         * argp/argp-fmtstream.h: Likewise.
52134         * argp/argp-help.c: Likewise.
52135         * assert/assert.c: Likewise.
52136         * config.h.in: Likewise.
52137         * config.make.in: Likewise.
52138         * configure: Likewise.
52139         * configure.in: Likewise.
52140         * csu/Versions: Likewise.
52141         * csu/init.c: Likewise.
52142         * elf/tst-audit2.c: Likewise.
52143         * elf/tst-tls10.c: Likewise.
52144         * elf/tst-tls10.h: Likewise.
52145         * elf/tst-tls11.c: Likewise.
52146         * elf/tst-tls12.c: Likewise.
52147         * elf/tst-tls14.c: Likewise.
52148         * elf/tst-tlsmod11.c: Likewise.
52149         * elf/tst-tlsmod12.c: Likewise.
52150         * elf/tst-tlsmod13.c: Likewise.
52151         * elf/tst-tlsmod13a.c: Likewise.
52152         * elf/tst-tlsmod14a.c: Likewise.
52153         * elf/tst-tlsmod15b.c: Likewise.
52154         * elf/tst-tlsmod16a.c: Likewise.
52155         * elf/tst-tlsmod16b.c: Likewise.
52156         * elf/tst-tlsmod7.c: Likewise.
52157         * elf/tst-tlsmod8.c: Likewise.
52158         * elf/tst-tlsmod9.c: Likewise.
52159         * gmon/gmon.c: Likewise.
52160         * grp/fgetgrent_r.c: Likewise.
52161         * grp/putgrent.c: Likewise.
52162         * hurd/fopenport.c: Likewise.
52163         * include/libc-symbols.h: Likewise.
52164         * include/tls.h: Likewise.
52165         * intl/gettextP.h: Likewise.
52166         * intl/loadinfo.h: Likewise.
52167         * locale/global-locale.c: Likewise.
52168         * locale/localeinfo.h: Likewise.
52169         * mach/devstream.c: Likewise.
52170         * malloc/arena.c: Likewise.
52171         * malloc/set-freeres.c: Likewise.
52172         * misc/err.c: Likewise.
52173         * misc/getttyent.c: Likewise.
52174         * misc/mntent_r.c: Likewise.
52175         * posix/getopt.c: Likewise.
52176         * posix/wordexp.c: Likewise.
52177         * pwd/fgetpwent_r.c: Likewise.
52178         * resolv/Versions: Likewise.
52179         * resolv/res_hconf.c: Likewise.
52180         * shadow/fgetspent_r.c: Likewise.
52181         * shadow/putspent.c: Likewise.
52182         * stdio-common/printf_fphex.c: Likewise.
52183         * stdio-common/tmpfile.c: Likewise.
52184         * stdlib/abort.c: Likewise.
52185         * stdlib/fmtmsg.c: Likewise.
52186         * sunrpc/auth_unix.c: Likewise.
52187         * sunrpc/clnt_perr.c: Likewise.
52188         * sunrpc/clnt_tcp.c: Likewise.
52189         * sunrpc/clnt_udp.c: Likewise.
52190         * sunrpc/clnt_unix.c: Likewise.
52191         * sunrpc/openchild.c: Likewise.
52192         * sunrpc/svc_simple.c: Likewise.
52193         * sunrpc/svc_tcp.c: Likewise.
52194         * sunrpc/svc_udp.c: Likewise.
52195         * sunrpc/svc_unix.c: Likewise.
52196         * sunrpc/xdr.c: Likewise.
52197         * sunrpc/xdr_array.c: Likewise.
52198         * sunrpc/xdr_rec.c: Likewise.
52199         * sunrpc/xdr_ref.c: Likewise.
52200         * sunrpc/xdr_stdio.c: Likewise.
52202 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
52204         * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
52206 2011-07-03  Andreas Jaeger  <aj@suse.de>
52208         * math/libm-test.inc (jn_test): Add tests for BZ#11589.
52209         * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
52210         regenerate with gen-libm-tests.pl.
52212 2010-05-12  Petr Baudis  <pasky@suse.cz>
52214         [BZ #11589]
52215         * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
52216         around j0() zero points by switching to j1().
52217         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
52218         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
52219         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
52220         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
52222 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
52224         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
52225         instead of 0.
52226         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
52227         instead of 0.
52228         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
52229         Patch in part by Pavel Roskin <proski@gnu.org>.
52231         [BZ #13138]
52232         * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
52233         realloc.
52234         (_IO_vfscanf_internal): Remove reteof.  Use errout after setting done.
52235         Free memory block if necessary.
52237         [BZ #12847]
52238         * libio/genops.c (INTDEF): For string streams the _lock pointer can
52239         be NULL.  Don't lock in this case.
52241 2011-09-09  Roland McGrath  <roland@hack.frob.com>
52243         * elf/elf.h (ELFOSABI_GNU): New macro.
52244         (ELFOSABI_LINUX): Define to that.
52246 2011-07-29  Denis Zaitceff  <zaitceff@gmail.com>
52248         * string/strncat.c (strncat): Undef the symbol in case it has been
52249         defined in bits/string.h.
52251 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
52253         * elf/sotruss.ksh: Clean up, fix, and complete help messages.
52255         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
52256         link map.
52258 2011-08-17  Andreas Jaeger  <aj@suse.de>
52260         * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
52262 2011-08-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
52263             Ian Lance Taylor  <iant@google.com>
52265         * math/libm-test.inc (lround_test): New testcase.
52266         * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
52268 2011-09-08  Ulrich Drepper  <drepper@gmail.com>
52270         * Makefile: Remove support for automatic cvs check-ins.
52271         * Makerules: Likewise.
52272         * config.make.in: Likewise.
52273         * configure.in: Likewise.
52274         * intl/Makefile: Likewise.
52275         * locale/Makefile: Likewise.
52276         * po/Makefile: Likewise.
52277         * posix/Makefile: Likewise.
52278         * sysdeps/gnu/Makefile: Likewise.
52279         * sysdeps/mach/hurd/Makefile: Likewise.
52280         * sysdeps/sparc/sparc32/Makefile: Likewise.
52282         [BZ #13118]
52283         * posix/Makefile (bug-regex32-ENV): Define.
52284         Patch by John Stanley <jpsinthemix@verizon.net>.
52286         * misc/Makefile (headers): Add bits/select2.h.
52287         * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
52288         * misc/bits/select2.h: New file.
52289         * include/bits/select2.h: New file.
52290         * debug/Makefile (routines): Add fdelt_chk.
52291         * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
52292         * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
52293         FD_ISSET.
52294         * debug/fdelt_chk.c: New file.
52296         * wcsmbs/test-wcscmp.c: Moved from string/*.  Adjust.
52297         * wcsmbs/test-wmemcmp.c: Likewise.
52298         * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
52299         * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
52301 2011-09-08  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52303         * string/Makefile (strop-tests): Add memcmp.
52304         * string/test-wmemcmp.c: New file.
52305         * string/test-memcmp.c: Add wmemcmp support.
52307 2011-09-08  Roland McGrath  <roland@hack.frob.com>
52309         [BZ #13153]
52310         * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
52311         2011-07-19 change.
52313         * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
52314         garbage value in a __mach_port_mod_refs call in the cases of the
52315         task-self and thread-self ports.
52317 2011-09-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
52319         * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
52321 2011-09-08  Andreas Schwab  <schwab@redhat.com>
52323         * elf/dl-load.c (lose): Check for non-null L.
52325 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
52327         * elf/dl-load.c (open_verify): Use O_CLOEXEC.
52329         * elf/dl-libc.c (dlerror_run): Pass back error code from
52330         dl_catch_error.
52332         [BZ #13123]
52333         * elf/dl-load.c (lose): Free l_origin if it is valid.
52335         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
52336         names.
52337         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
52338         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
52339         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
52340         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
52341         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
52342         Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
52344 2011-08-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
52346         * sysdeps/powerpc/fpu/e_hypot.c: New file.
52347         * sysdeps/powerpc/fpu/e_hypotf.c: New file.
52348         * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
52349         * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
52350         * sysdeps/powerpc/fpu/k_cosf.c: New file.
52351         * sysdeps/powerpc/fpu/k_sinf.c: New file.
52352         * sysdeps/powerpc/fpu/s_cosf.c: New file.
52353         * sysdeps/powerpc/fpu/s_sinf.c: New file.
52354         * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
52355         * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
52357 2011-08-15  Alan Modra  <amodra@gmail.com>
52359         [BZ #13092]
52360         * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
52361         * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
52362         * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here.  Add
52363         ppc_mcount to static-only-routines.
52364         * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
52365         __mcount_internal.
52366         * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
52367         __mcount_internal with usual JUMPTARGET.  Remove useless nop.
52369 2011-08-18  David Flaherty  <flaherty@linux.vnet.ibm.com>
52371         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
52372         for finite and infinity parameters.
52374 2011-08-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
52376         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
52377         and add nop instructions for throughput optimization.
52378         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
52380 2011-07-28  Will Schmidt  <will_schmidt@vnet.ibm.com>
52382         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
52383         aligned copy for power7 with vector-scalar instructions.
52384         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
52386 2011-07-24  H.J. Lu  <hongjiu.lu@intel.com>
52388         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
52389         AVX check.
52391 2011-09-07  Andreas Schwab  <schwab@redhat.com>
52393         [BZ #13144]
52394         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
52395         last change.
52397 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
52399         * sysdeps/unix/sysv/linux/x86_64/init-first.c
52400         (_libc_vdso_platform_setup): If vDSO is not present store pointer to
52401         syscall wrapper around clock_gettime in __vdso_clock_gettime.
52402         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
52403         clock_gettime.
52405 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
52407         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
52408         Forgot to demangle the pointer.
52410         * sysdeps/i386/sysdep.h: Define atom_text_section.
52411         * sysdeps/x86_64/sysdep.h: Likewise.
52412         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
52413         section with atom_text_section.
52414         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
52415         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
52416         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
52417         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
52418         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
52420         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
52421         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
52422         already be defined.  Change to take two parameters and don't assign
52423         result to variable.  Adjust all users.
52424         Define INTERNAL_GETTIME if not already defined.
52425         Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
52426         call.
52427         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
52428         HAVE_CLOCK_GETTIME_VSYSCALL.
52429         * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
52431         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
52432         gettimeofday vsyscall, just use time.
52434 2011-09-06  Andreas Schwab  <schwab@redhat.com>
52436         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
52437         <errno.h>.
52439 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
52441         * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
52442         syscall on x86-64.
52443         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
52444         syscall.
52445         * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
52446         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
52447         syscall if possible.
52449 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
52451         * elf/pldd.c (get_process_info): Don't read whole ELF header, just
52452         e_ident.  Don't pass to find_mapsXX.
52453         * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
52455 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
52457         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
52458         strchr-sse2-no-bsf strrchr-sse2-no-bsf
52459         * sysdeps/x86_64/multiarch/strchr.S: Update.
52460         Check bit_slow_BSF bit.
52461         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
52462         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
52463         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
52465 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
52467         [BZ #13134]
52468         * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
52469         before glibc 2.15.
52470         (tryshell): Define.
52471         (__spawni): Change last parameter to be flag.  Test
52472         SPAWN_XFLAGS_USE_PATH flag to use path or not.
52473         Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
52474         * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
52475         * posix/spawni.c: Likewise.
52476         * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
52477         * posix/spawnp.c: Likewise.  Change normal version to use
52478         SPAWN_XFLAGS_USE_PATH.
52479         * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
52480         SPAWN_XFLAGS_TRY_SHELL.
52482         [BZ #13150]
52483         * posix/glob.h: Remove gcc 1.x support.
52485         [BZ #13068]
52486         * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
52488 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
52490         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
52491         strchr-sse2 strrchr-sse2 strchr-sse2-bsf
52492         strrchr-sse2-bsf
52493         * sysdeps/i386/i686/multiarch/strchr.S: New file.
52494         * sysdeps/i386/i686/multiarch/strrchr.S: New file.
52495         * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
52496         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
52497         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
52498         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
52500 2011-08-29  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52502         * sysdeps/x86_64/wcscmp.S: New file.
52504         * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
52505         wcscmp-c wcscmp-sse2
52506         * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
52507         * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
52508         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
52509         * wcsmbs/wcscmp.c: Allow renaming.
52511 2011-09-05  David S. Miller  <davem@davemloft.net>
52513         * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
52514         stack slot, rather than the struct return pointer slot.
52515         * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
52516         * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
52517         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
52518         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
52520 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
52522         * po/ja.po: Update from translation team.
52524         [BZ #13144]
52525         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
52526         kernel in 64-bit binaries.
52528 2011-09-01  David S. Miller  <davem@davemloft.net>
52530         * elf/elf.h (HWCAP_SPARC_*): Move to..
52531         * sysdeps/sparc/sysdep.h: this new file and add new values.
52532         * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
52533         * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
52534         _DL_HWCAP_COUNT to 24.
52535         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
52536         entries.
52537         * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
52538         __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
52539         * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
52540         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
52541         instead of magic constants.
52542         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
52544 2011-08-31  David S. Miller  <davem@davemloft.net>
52546         * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
52547         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
52548         Reimplement to do errno handling inline.
52549         (SYSCALL_ERROR_HANDLER): New macro.
52550         (__SYSCALL_STRING): Do not do errno handling in asm.
52551         (__CLONE_SYSCALL_STRING): Delete.
52552         (__INTERNAL_SYSCALL_STRING): Delete.
52553         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
52554         sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
52555         (PSEUDO): Reimplement to do errno handling inline.
52556         (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
52557         (SYSCALL_ERROR_HANDLER): New macro.
52558         (__SYSCALL_STRING): Do not do errno handling in asm.
52559         (__CLONE_SYSCALL_STRING): Delete.
52560         (__INTERNAL_SYSCALL_STRING): Delete.
52561         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
52562         Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
52563         i386.
52564         (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
52565         (inline_syscall*): Add 'err' argument.
52566         (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
52567         INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
52568         (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
52569         INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
52571         * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
52572         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
52574 2011-08-30  Andreas Schwab  <schwab@redhat.com>
52576         * elf/rtld.c (dl_main): Relocate objects in dependency order.
52578 2011-08-29  Jiri Olsa <jolsa@redhat.com>
52580         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
52581         directive.
52583 2011-08-24  David S. Miller  <davem@davemloft.net>
52585         * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
52587 2011-08-24  Andreas Schwab  <schwab@redhat.com>
52589         * elf/Makefile: Add rules to build and run unload8 test.
52590         * elf/unload8.c: New file.
52591         * elf/unload8mod1.c: New file.
52592         * elf/unload8mod1x.c: New file.
52593         * elf/unload8mod2.c: New file.
52594         * elf/unload8mod3.c: New file.
52596         * elf/dl-close.c (_dl_close_worker): Reset private search list if
52597         it wasn't used.
52599 2011-08-23  David S. Miller  <davem@davemloft.net>
52601         * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
52602         subtract stack bias.
52603         * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
52604         %sp not %fp in calculations.
52605         (_JMPBUF_UNWINDS_ADJ): Likewise.
52607         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
52608         (aio_suspend): Call it to force an exception region around the
52609         AIO_MISC_WAIT() invocation.
52611 2011-08-23  Andreas Schwab  <schwab@redhat.com>
52613         * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
52614         backslash.
52616 2011-07-04  Aurelien Jarno  <aurelien@aurel32.net>
52618         * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
52619         protection macro.
52620         * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
52621         and <dl-machine.h>.
52622         (Elf64_FuncDesc): Remove.
52624 2011-08-22  David S. Miller  <davem@davemloft.net>
52626         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
52627         sigaltstack check, add missing cfi directives.
52628         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
52629         missing cfi directives, and sigaltstack handling.
52631 2011-08-16  Andreas Schwab  <schwab@redhat.com>
52633         [BZ #11724]
52634         * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
52635         object is seen twice.
52636         * elf/dl-fini.c (_dl_sort_fini): Likewise.
52638         * elf/Makefile (distribute): Add tst-initorder2.c.
52639         (tests): Add tst-initorder2.
52640         (modules-names): Add tst-initorder2a tst-initorder2b
52641         tst-initorder2c tst-initorder2d.  Add rules to build them.
52642         ($(objpfx)tst-initorder2.out): New rule.
52643         * elf/tst-initorder2.c: New file.
52644         * elf/tst-initorder2.exp: New file.
52646 2011-08-22  Andreas Schwab  <schwab@redhat.com>
52648         * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
52650         * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
52651         dependencies back to end of function.
52653         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
52654         $(elfobjdir)/ld.so.
52656 2011-08-21  Ulrich Drepper  <drepper@gmail.com>
52658         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
52659         * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
52660         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
52661         * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
52662         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
52663         of __vdso_gettimeofday.
52664         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
52665         __vdso_gettimeofday and __vdso_time.  Define __vdso_getcpu with
52666         attribute_hidden.
52667         (_libc_vdso_platform_setup): Remove initialization of
52668         __vdso_gettimeofday and __vdso_time.
52670 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
52672         * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
52673         and fgetc_unlocked.
52674         * nss/nss_files/files-key.c (search): Use fgets_unlocked and
52675         getc_unlocked.
52677         * elf/dl-open.c (add_to_global): Report additions to the global scope
52678         for LD_DEBUG=scopes.
52679         (dl_open_worker): Also print scope of newly loaded dependencies.
52680         (_dl_show_scope): Indicate if there is no scope.
52682         [BZ #13114]
52683         * stdio-common/Makefile (tests): Add bug24.
52684         * stdio-common/bug24.c: New file.
52686 2011-08-19  Andreas Jaeger  <aj@suse.de>
52688         [BZ #13114]
52689         * libio/fileops.c (_IO_new_file_fopen): Fix handling of
52690         non-existant file when using close-on-exec mode.
52692 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
52694         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
52695         the very first instruction.
52697         * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
52698         the CFI state in the end.
52699         * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
52700         inclusion of dl-trampoline.h.
52701         Based on a patch by Jiri Olsa <jolsa@redhat.com>.
52703 2011-08-19  Andreas Schwab  <schwab@redhat.com>
52705         * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
52706         expectations for long double.
52708         * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
52709         from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
52711 2011-08-14  David S. Miller  <davem@davemloft.net>
52713         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
52714         artificual limit depends upon the system page size.
52716 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
52718         * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
52719         * resolv/Makefile: Define CFLAGS-libresolv.
52721 2011-08-17  Andreas Schwab  <schwab@redhat.com>
52723         * nss/makedb.c (compute_tables): Make variables used in nested
52724         function static.
52726 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
52728         * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
52729         * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
52730         if buffer was too small.
52732         * elf/pldd.c (main): Attach to all threads in the process.
52733         Rewrite /proc handling to use *at functions.
52735 2011-08-16  Ulrich Drepper  <drepper@gmail.com>
52737         * elf/dl-open.c (_dl_show_scope): Take additional parameter which
52738         specifies first scope to show.
52739         (dl_open_worker): Update callers.  Move printing scope of new
52740         object to before the relocation.
52741         * elf/rtld.c (dl_main): Update _dl_show_scope call.
52742         * sysdeps/generic/ldsodefs.h: Update declaration.
52744         * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
52745         string for the scope number.
52747 2011-08-14  Ulrich Drepper  <drepper@gmail.com>
52749         * nscd/servicescache.c (cache_addserv): Make sure written is always
52750         initialized.
52752 2011-08-14  Roland McGrath  <roland@hack.frob.com>
52754         * sysdeps/i386/i486/bits/atomic.h
52755         (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
52756         statement expression, so as to suppress "set but not used" warning.
52757         (__arch_c_compare_and_exchange_val_64_acq): Likewise.
52759         * string/strncat.c (STRNCAT): Use prototype definition.
52761         * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
52762         (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
52763         -Iprograms here.
52764         (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
52765         (localedef-modules): Add localedef.
52766         (locale-modules): Add locale.
52768         * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
52769         * elf/rtld.c (dl_main): Invert order of assignment in last change,
52770         to avoid a warning.
52772 2011-08-14  David S. Miller  <davem@davemloft.net>
52774         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
52775         RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
52777 2011-08-13  Ulrich Drepper  <drepper@gmail.com>
52779         * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
52780         (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
52781         * elf/rtld.c (dl_main): Set l_name of vDSO.
52782         Call _dl_show_scope when DL_DEBUG_SCOPES.
52783         (process_dl_debug): Recognize scopes flag and also set it for all.
52784         * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
52785         Declare _dl_show_scope.
52787         * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
52788         (do_dlopen): Pass caller_dlopen to dl_open.
52789         (__libc_dlopen_mode): Initialize caller_dlopen.
52791         * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
52792         of libc.  Make tolower call locale-independent.  Optimize a bit by
52793         using isdigit instead of isalnum.
52794         * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
52796 2011-08-12  Ulrich Drepper  <drepper@gmail.com>
52798         * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
52799         was a dependency or dynamically loaded.
52801 2011-08-11  Ulrich Drepper  <drepper@gmail.com>
52803         * intl/l10nflist.c: Allow architecture-specific pop function.
52804         * sysdeps/x86_64/l10nflist.c: New file.
52806         * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
52807         classification.
52809 2011-08-10  Andreas Schwab  <schwab@redhat.com>
52811         * include/dirent.h: Add libc_hidden_proto for scandirat and
52812         scandirat64.  Don't declare __scandirat64.
52813         * dirent/scandirat.c: Add libc_hidden_def.
52814         * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
52815         * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
52817 2011-08-10  David S. Miller  <davem@davemloft.net>
52819         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
52820         enum.
52821         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
52822         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
52823         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
52825 2011-08-09  Ulrich Drepper  <drepper@gmail.com>
52827         * Versions.def [libc]: Add GLIBC_2.15.
52828         * dirent/Makefile (routines): Add scandirat and scandirat64.
52829         * dirent/Versions [libc]: Export scandirat and scandirat64 for
52830         GLIBC_2.15.
52831         * dirent/dirent.h: Declare scandirat and scandirat64.
52832         * dirent/scandirat.c: New file.
52833         * dirent/scandirat64.c: New file.
52834         * sysdeps/wordsize-64/scandirat.c: New file.
52835         * sysdeps/wordsize-64/scandirat64.c: New file.
52836         * dirent/opendir.c: Define opendirat.
52837         * dirent/scandir.c: Move code to scandirat.c.  Implement scandir
52838         using scandirat.
52839         * dirent/scandir64.c: Adjust for scandir.c change.
52840         * include/dirent.h: Define scandir_cancel_struct.  Declare __opendirat,
52841         __scandirat64, and __scandir_cancel_handler.
52842         * sysdeps/unix/opendir.c: Rename __opendir to __opendirat.  Take
52843         additional parameter and use openat instead of open (outside of ld.so).
52844         Add new __opendir as wrapper around __opendirat.
52845         * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
52846         here without requiring old scandirat implementation.
52848 2011-08-08  Ulrich Drepper  <drepper@gmail.com>
52850         * dirent/scandir.c (cancel_handler): Renamed to
52851         __scandir_cancel_handler.  Do not define if SKIP_SCANDIR_CANCEL is
52852         defined.  Adjust users.
52853         * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
52854         * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
52856 2011-08-04  Ulrich Drepper  <drepper@gmail.com>
52858         * string/test-string.h (IMPL): Use __STRING to expand name and then
52859         stringify it.
52861         * string/test-strcmp.c: Unify most of the WIDE and !WIDE code.  Lots
52862         of cleanups.
52864 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52866         * string/Makefile: Update.
52867         (strop-tests): Append strncat.
52868         * string/test-wcscmp.c: New file.
52869         New comprehensive test for wcscmp.
52870         * string/test-strcmp.c: Update.
52871         (WIDE): New define.
52873 2011-07-22  Andreas Schwab  <schwab@redhat.com>
52875         * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
52876         line.
52878 2011-07-26  Andreas Schwab  <schwab@redhat.com>
52880         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
52881         encoding to ACE if AI_IDN.
52883 2011-08-01  Jakub Jelinek  <jakub@redhat.com>
52885         * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
52886         to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
52888 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
52890         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
52891         Fix overflow bug in strncat.
52892         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
52894         * string/test-strncat.c: Update.
52895         Add new tests for checking overflow bugs.
52897 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
52899         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
52900         strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
52901         * sysdeps/i386/i686/multiarch/strcat.S: New file.
52902         * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
52903         * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
52904         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
52905         * sysdeps/i386/i686/multiarch/strncat.S: New file.
52906         * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
52907         * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
52909         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
52910         (USE_AS_STRCAT): Define.
52911         Add strcat and strncat support.
52912         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
52914 2011-07-25  Andreas Schwab  <schwab@redhat.com>
52916         * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
52917         __n bigger than INT_MAX+1.
52918         (__strncmp_g): Likewise.
52920 2011-07-23  Ulrich Drepper  <drepper@gmail.com>
52922         * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
52923         * libio/stido.h: Likewise.
52925         * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
52926         (AF_NFC): Define.
52927         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
52928         (AF_NFC): Define.
52930         * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
52931         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
52932         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
52933         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
52934         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
52936         [BZ #13021]
52937         * scripts/test-installation.pl: Don't expect libnss_test1 to be
52938         installed.
52940         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
52941         typo.
52942         (_dl_x86_64_save_sse): Likewise.
52944 2011-07-22  Ulrich Drepper  <drepper@gmail.com>
52946         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
52947         OSXSAVE.
52948         (_dl_x86_64_save_sse): Likewise.
52950         * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
52952         * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
52954 2011-07-21  Andreas Schwab  <schwab@redhat.com>
52956         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
52957         change.
52958         (_dl_x86_64_save_sse): Use correct AVX check.
52960 2011-07-21  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52962         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
52963         bug in strncpy/strncat.
52964         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
52966 2011-07-21  Ulrich Drepper  <drepper@gmail.com>
52968         * string/tester.c (test_strcat): Add tests for different alignments
52969         of source and destination.
52970         (test_strncat): Likewise.
52972 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
52974         [BZ #12852]
52975         * posix/glob.c (glob): Check passed in values before using them in
52976         expressions to avoid some overflows.
52977         (glob_in_dir): Likewise.
52979         [BZ #13007]
52980         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
52981         check for AVX enablement so that we don't crash with old kernels and
52982         new hardware.
52983         * elf/tst-audit4.c: Add same checks here.
52984         * elf/tst-audit6.c: Likewise.
52986         * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
52988 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
52990         * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
52992 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
52994         * po/cs.po: Update from translation team.
52995         * po/bg.po: Likewise.
52997 2011-07-12  Marek Polacek  <mpolacek@redhat.com>
52999         * misc/sys/cdefs.h: Add support for const attribute.
53000         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
53001         to gnu_dev_{major,minor,makedev} functions.
53003 2011-07-20  Marek Polacek  <mpolacek@redhat.com>
53005         * intl/dcigettext.c (get_output_charset): Add missing bracket.
53007 2011-07-20  Andreas Schwab  <schwab@redhat.com>
53009         * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
53010         strlen results.
53012 2011-07-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
53014         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
53015         (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
53016         register in order to avoid conflicts with the soft frame pointer
53017         being held in r11 when necessary.
53018         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
53019         (INTERNAL_VSYSCALL_NCS): Likewise.
53021 2011-07-14  Marek Polacek  <mpolacek@redhat.com>
53023         * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
53024         * elf/dl-fini.c (_dl_fini): Adjust caller.
53025         * elf/dl-close.c (_dl_close_worker): Likewise.
53026         * sysdeps/generic/ldsodefs.h: Adjust declaration.
53028 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
53030         * elf/cache.c (load_aux_cache): Remove unnecessary condition of
53031         "aux_cache->nlibs < 0".
53033         * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
53034         in the reload-count case.
53036 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
53038         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53039         strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
53040         strncat-sse2-unaligned strncat-c strlen-sse2-pminub
53041         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
53042         * sysdeps/x86_64/multiarch/strcat.S: New file.
53043         * sysdeps/x86_64/multiarch/strncat.S: New file.
53044         * sysdeps/x86_64/multiarch/strncat-c.c: New file.
53045         * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
53046         * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
53047         * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
53048         * sysdeps/x86_64/multiarch/strcpy-ssse3.S
53049         (USE_AS_STRCAT): Define.
53050         Add strcat and strncat support.
53051         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
53052         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
53053         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
53054         * string/strncat.c: Update.
53055         (USE_AS_STRNCAT): Define.
53056         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53057         Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
53058         and i7.
53059         * sysdeps/x86_64/multiarch/init-arch.h
53060         (bit_Prefer_PMINUB_for_stringop): New.
53061         (index_Prefer_PMINUB_for_stringop): Likewise.
53062         * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
53063         bit_Prefer_PMINUB_for_stringop.
53065 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
53067         * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
53068         buffer64.
53069         * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
53070         of casting of buffer.
53071         * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
53072         buffer32 and buffer64.
53073         * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
53074         writes instead of casting of buffer.
53075         * crypt/md5.h (struct md5_ctx): Move buffer into union and add
53076         buffer32.
53077         * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
53078         casting of buffer.
53080 2011-07-19  Andreas Schwab  <schwab@redhat.com>
53082         * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
53084 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
53086         * nscd/nscd.c (termination_handler): Don't do anything for a database
53087         if it has not yet been initialized.
53089 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
53091         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
53093 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
53095         * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
53097 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
53099         * po/nl.po: Update from translation team.
53100         * po/sv.po: Likewise.
53102 2011-07-16  Roland McGrath  <roland@hack.frob.com>
53104         * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
53105         now disallowed by GCC.
53107         * configure.in (use-default-link): Default to yes if a test -shared
53108         link meets our qualifications.
53109         * configure: Regenerated.
53111         * config.make.in (output-format): New variable.
53112         * configure.in: Check for ld --print-output-format support.
53113         * configure: Regenerated.
53114         * Makerules ($(common-objpfx)format.lds)
53115         [$(output-format) != unknown]: Just use $(output-format),
53116         instead of the linker-script munging.
53118 2011-07-14  Roland McGrath  <roland@hack.frob.com>
53120         * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
53121         of $(common-objpfx)shlib.lds.
53122         * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
53124         * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
53125         Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
53127         * configure.in (-z relro check): Adjust test code to add a large
53128         writable data section after it.
53129         * configure: Regenerated.
53131 2011-07-11  Roland McGrath  <roland@hack.frob.com>
53133         * configure.in (-z relro check): Fix test code to make the variable
53134         truly const.
53135         * configure: Regenerated.
53137 2011-07-11  Ulrich Drepper  <drepper@gmail.com>
53139         * nscd/nscd.h (struct traced_file): Define.
53140         (struct database_dyn): Remove inotify_descr, reset_res, and filename
53141         elements.  Add traced_files.
53142         (inotify_fd): Declare.
53143         (register_traced_file): Declare.
53144         * nscd/connections.c (dbs): Remove reset_res and filename initializers.
53145         (inotify_fd): Export.
53146         (resolv_conf_descr): Remove.
53147         (nscd_init): Move inotify descriptor creation to main.
53148         Don't register files for notification here.
53149         (register_traced_file): New function.
53150         (invalidate_cache): Don't use reset_res to determine whether to call
53151         res_init, go through the list of registered files.
53152         (main_loop_poll): The inotify descriptors are now stored in the
53153         structures for the traced files.
53154         (main_loop_epoll): Likewise
53155         * nscd/nscd.c (main): Create inotify socket here.  Pass extra argument
53156         to __nss_disable_nscd.
53157         * nscd/cache.c (prune_cache): There is no single inotify descriptor
53158         for a database anymore.  Check the records for all the registered
53159         files instead.
53160         * nss/Makefile (libnss_files-routines): Add files-init.
53161         (libnss_db-routines): Add db-init.
53162         * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
53163         [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
53164         * nss/nss_db/db-init.c: New file.
53165         * nss/nss_files/files-init.c: New file.
53166         * nss/nsswitch.c (nss_load_library): New function.  Broken out of
53167         __nss_lookup_function.
53168         (__nss_lookup_function): Call nss_load_library.
53169         (nss_load_all_libraries): New function.
53170         (__nss_disable_nscd): Take parameter with callback function for files
53171         to register.  Set is_nscd.  Load all the DSOs for the NSS modules
53172         used for the cached services.
53173         * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
53174         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
53175         options for features to all the files in nscd.
53177         * nss/nsswitch.c (nss_parse_file): Add missing fclose.
53179 2011-07-10  Roland McGrath  <roland@hack.frob.com>
53181         * csu/elf-init.c (__libc_csu_init): Comment typo.
53183 2011-07-09  Ulrich Drepper  <drepper@gmail.com>
53185         * po/pl.po: Update from translation team.
53186         * po/ja.po: Likewise.
53187         * po/ru.po: Likewise.
53188         * po/ko.po: Likewise.
53189         * po/fr.po: Likewise.
53191 2011-07-09  Roland McGrath  <roland@hack.frob.com>
53193         * configure.in (.ctors/.dtors header and trailer check):
53194         Use an empirical test on a built program.
53195         * configure: Regenerated.
53197         * configure.in (-z relro check): Use an empirical test on a built DSO.
53198         Detect, but do not require, on ia64.
53199         * configure: Regenerated.
53201         * configure.in (READELF): Find it with AC_CHECK_TOOL.
53202         Update tests that use readelf to use $READELF instead.
53203         * configure: Regenerated.
53205 2011-07-08  Ulrich Drepper  <drepper@gmail.com>
53207         * malloc/hooks.c (memalign_check): Avoid using checked_request2size
53208         if the result is not used.
53210 2011-07-05  Andreas Jaeger  <aj@suse.de>
53212         [BZ#9696]
53213         * stdlib/tst-strtod.c: Add testcase.
53215 2011-07-07  Ulrich Drepper  <drepper@gmail.com>
53217         * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
53218         (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
53219         The latter has a higher limit.  Take additional parameter to pass to
53220         the new function.
53221         (__pathconf): Pass file to __statfs_link_max.
53222         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
53223         __statfs_link_max.
53224         * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
53225         __statfs_link_max.
53227         [BZ #12868]
53228         * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
53229         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
53230         Handle Lustre.
53231         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
53232         (__statfs_filesize_max): Likewise.
53233         Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
53235 2011-07-05  Andreas Jaeger  <aj@suse.de>
53237         * resolv/res_comp.c (dn_skipname): Remove unused variable.
53239 2011-07-06  Marek Polacek  <mpolacek@redhat.com>
53241         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
53242         `status' variable.
53243         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
53244         Likewise.
53246 2011-07-04  H.J. Lu  <hongjiu.lu@intel.com>
53248         * Makefile (strop-tests): Add strncat.
53249         * string/test-strncat.c: New file.
53251 2011-06-30  Marek Polacek  <mpolacek@redhat.com>
53253         * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
53255 2011-06-21  Andreas Jaeger  <aj@suse.de>
53257         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
53258         Copy rule from iconvdata/Makefile.
53260 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
53262         [BZ #12922]
53263         * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
53264         but no long options are defined, just return 'W'.
53266 2011-06-22  Marek Polacek  <mpolacek@redhat.com>
53268         [BZ #9696]
53269         * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
53271 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
53273         * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
53274         netgroups to read.
53275         (innetgr): Likewise.
53277 2011-07-05  Roland McGrath  <roland@hack.frob.com>
53279         * config.make.in (install_root): Default to $(DESTDIR).
53281 2011-07-05  Ulrich Drepper  <drepper@gmail.com>
53283         * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
53285 2011-07-02  Roland McGrath  <roland@hack.frob.com>
53287         * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
53289         * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
53290         containing directory rather than embedding absolute directory names.
53292         * scripts/check-local-headers.sh: Rewritten using awk.
53293         Match by word, not by line.  Print error messages for matches.
53294         * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
53296         * Makerules [shlib-lds-flags empty]:
53297         ($(common-objpfx)libc_pic.opts): New target.
53298         ($(common-objpfx)libc_pic.os.clean): New target.
53299         ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
53301         * config.make.in (OBJCOPY): New variable.
53302         * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
53303         * configure: Regenerated.
53305         * config.make.in (use-default-link): New variable.
53306         * configure.in (use_default_link): Grok --with-default-link to set it.
53307         * configure: Regenerated.
53308         * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
53309         (shlib-lds, shlib-lds-flags): Define to empty.
53311         * Makerules (shlib-lds): New variable.
53312         (shlib-lds-flags): New variable.
53313         (build-shlib, build-moduile, build-module-asneeded): Use it.
53314         ($(common-objpfx)libc.so): Use $(shlib-lds).
53315         ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
53316         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
53318         * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
53319         DT_FLAGS/DT_FLAGS_1 with zero flags.
53321         * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
53322         linker script munging.
53324 2011-07-02  Ulrich Drepper  <drepper@gmail.com>
53326         * crypt/sha512.h (struct sha512_ctx): Add union to access total also
53327         as 128-bit value.
53328         * crypt/sha512.c (sha512_process_block): Perform total addition using
53329         128-bit if possible.
53330         (__sha512_finish_ctx): Likewise.
53331         * crypt/sha256.h (struct sha256_ctx): Add union to access total also
53332         as 64-bit value.
53333         * crypt/sha256.c (SWAP64): Define.
53334         (sha256_process_block): Perform total addition using 64-bit if
53335         possible.
53336         (__sha256_finish_ctx): Likewise.
53338 2011-07-01  Ulrich Drepper  <drepper@gmail.com>
53340         * nscd/pwdcache.c (cache_addpw): Cleanup.  Add branch prediction.
53341         * nscd/initgrcache.c (addinitgroupsX): Likewise.
53342         * nscd/hstcache.c (cache_addhst): Likewise.
53343         * nscd/grpcache.c (cache_addgr): Likewise.
53344         * nscd/aicache.c (addhstaiX): Likewise
53345         * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
53347 2011-07-01  Thorsten Kukuk  <kukuk@suse.de>
53349         * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
53350         * nscd/initgrcache.c (addinitgroupsX): Likewise.
53351         * nscd/hstcache.c (cache_addhst): Likewise.
53352         * nscd/grpcache.c (cache_addgr): Likewise.
53353         * nscd/aicache.c (addhstaiX): Likewise
53355 2011-07-01  Andreas Schwab  <schwab@redhat.com>
53357         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
53358         domain only when needed.
53360 2011-06-30  Andreas Schwab  <schwab@redhat.com>
53362         * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
53363         is always restored.
53365 2011-06-29  Ulrich Drepper  <drepper@gmail.com>
53367         * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
53368         are re-adding the entry.
53369         * nscd/servicescache.c (cache_addserv): Likewise.
53371 2011-06-30  Aurelien Jarno  <aurelien@aurel32.net>
53373         * sysdeps/generic/dl-irel.h: fix protection against multiple
53374         inclusions.
53375         * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
53377 2011-06-28  Ulrich Drepper  <drepper@gmail.com>
53379         [BZ #12935]
53380         * malloc/memusage.sh: Fix quoting in message.
53381         * debug/xtrace.sh: Likewise.
53383         * configure.in: Remove support for --experimental-malloc option, make
53384         it the default.
53385         * config.make.in: Likewise.
53386         * malloc/Makefile: Likewise.
53388 2011-06-27  Andreas Schwab  <schwab@redhat.com>
53390         * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
53391         two-byte characters.
53393 2011-06-27  Roland McGrath  <roland@hack.frob.com>
53395         * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
53396         AC_CACHE_CHECK invocation.
53397         * configure: Regenerated.
53399         * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
53401 2011-06-27  Ulrich Drepper  <drepper@gmail.com>
53403         [BZ #12350]
53404         * nscd/aicache.c (addhstaiX):  Restore only RES_USE_INET6
53405         bit from old_res_options.
53407         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
53409         * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
53410         value type for setfct.
53412 2011-06-23  H.J. Lu  <hongjiu.lu@intel.com>
53414         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
53415         __gettimeofday instead of gettimeofday.
53417 2011-06-26  Ulrich Drepper  <drepper@gmail.com>
53419         * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
53421 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
53423         * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
53425         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
53426         info.
53428 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
53430         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53431         strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
53432         strcpy-sse2-unaligned strncpy-sse2-unaligned
53433         stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
53434         * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
53435         * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
53436         * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
53437         * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
53438         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
53439         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
53440         * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
53441         * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
53442         * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
53443         (STRCPY): Support SSE2 and SSSE3 versions.
53445 2011-06-24  Ulrich Drepper  <drepper@gmail.com>
53447         [BZ #12874]
53448         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
53449         * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
53450         kernels which artificially limit size of requests.
53452 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
53454         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53455         strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
53456         strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
53457         * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
53458         * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
53459         * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
53460         * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
53461         * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
53462         * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
53463         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
53464         * sysdeps/i386/i686/multiarch/strcpy.S: New file.
53465         * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
53466         * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
53467         * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
53468         * sysdeps/i386/i686/multiarch/strncpy.S: New file.
53469         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53470         Enable unaligned load optimization for Intel Core i3, i5 and i7
53471         processors.
53472         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
53473         Define.
53474         (index_Fast_Unaligned_Load): Define.
53475         (HAS_FAST_UNALIGNED_LOAD): Define.
53477 2011-06-23  Marek Polacek  <mpolacek@redhat.com>
53479         * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
53481 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
53483         [BZ #12907]
53484         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
53485         until it is clear that the information is realy needed.
53486         Patch mostly by David Hanisch <david.hanisch@nsn.com>.
53488 2011-06-22  Andreas Schwab  <schwab@redhat.com>
53490         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
53492 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
53494         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
53495         /sys/devices/system/cpu/online if it is usable.
53497         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
53498         reading the information from the /proc filesystem to once a second.
53500 2011-06-21  Andreas Jaeger  <aj@suse.de>
53502         * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
53503         NULL after inclusion of kernel headers.
53505 2011-06-21  Ulrich Drepper  <drepper@gmail.com>
53507         * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
53508         calls to internal_setent.
53510         [BZ #12885]
53511         * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
53512         addresses using gethostbyname4_r ignore IPv4 addresses.
53514         * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
53515         branch using gethostbyname2 is only for AF_INET.  Optimize accordingly.
53517         * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
53519 2011-06-20  David S. Miller  <davem@davemloft.net>
53521         * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
53522         inclusions.
53523         * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
53525         * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
53526         (elf_irel): Use it.
53527         * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
53528         * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
53529         * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
53530         * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
53531         * sysdeps/x86_64/dl-irel.h: Likewise.
53533         * elf/dl-runtime.c: Use elf_ifunc_invoke.
53534         * elf/dl-sym.c: Likewise.
53536 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
53538         * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch.  We
53539         need to dereference resplen2.
53541 2011-06-14  Andreas Schwab  <schwab@redhat.com>
53543         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
53545 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
53547         * Makeconfig: Define vardbdir and inst_vardbdir.
53548         * nss/Makefile: Add rules to install db-Makefile.
53550         * nss/nss_db/db-XXX.c: Cleanup.
53552         * nss/Makefile (libnss_db-dbs): Add db-initgroups.
53553         * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
53554         GLIBC_PRIVATE.
53555         * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
53556         * nss/makedb.c: Implement -g option to specify that value strings
53557         are generated and should not be added to table iterated over for
53558         get*ent calls.
53559         * nss/nss_db/db-initgroups.c: New file.
53561         * nss/getent.c: Add support for initgroups lookups through getgrouplist
53562         interface.
53564         * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
53565         (internal_getgrouplist): Adjust to name change.
53566         Update use_initgroups_entry if this is not the first call.
53567         * nss/databases.def: Add initgroups entry.
53569         * nss/makedb.c (compute_tables): Check result of multiple hash table
53570         sizes to minimize maximum chain length.
53572 2011-06-14  Ulrich Drepper  <drepper@gmail.com>
53574         * Versions.def: Add entry for libnss_db.
53575         * shlib-versions: Likewise.
53576         * nss/Makefile: Add rules to build libnss_db.
53577         * nss/Versions: Add libnss_db information.  Organize libnss_files
53578         entries better.
53579         * nss/db-Makefile: Add gshadow support.  Change rules for the new
53580         makedb progra.  Some minor improvements to generate smaller files.
53581         * nss/nss_db/nss_db.h: Move NSS database header data structures to
53582         here from...
53583         * nss/makedb.c: ...here.
53584         Improve database format to be smaller and require less memory at
53585         runtime.
53586         * nss/nss_db/db-XXX.x: Adjust for new database format.  Don't use
53587         db anymore.
53588         * nss/nss_db/db-netgrp.c: Likewise.
53589         * nss/nss_db/db-open.c: Likewise.
53590         * nss/nss_files/flies-XXX.x: Adjust comments.
53591         * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
53592         * nss/nss_files/files-grp.c: Likewise.
53593         * nss/nss_files/files-hosts.c: Likewise.
53594         * nss/nss_files/files-network.c: Likewise.
53595         * nss/nss_files/files-proto.c: Likewise.
53596         * nss/nss_files/files-pwd.c: Likewise.
53597         * nss/nss_files/files-rpc.c: Likewise.
53598         * nss/nss_files/files-service.c: Likewise.
53599         * nss/nss_files/files-sgrp.c: Likewise.
53600         * nss/nss_files/files-spwd.c: Likewise.
53601         * nss/nss_db/db-alias.c: Removed.
53602         * nss/nss_db/dummy-db.h: Removed.
53604 2011-06-02  Ulrich Drepper  <drepper@gmail.com>
53606         * nss/makedb.c: Rewritten to not use database library.
53607         * nss/Makefile: Update to build new makedb program.
53609 2011-06-14  Andreas Jaeger  <aj@suse.de>
53611         * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
53612         memset declaration.
53614 2011-06-10  Andreas Schwab  <schwab@redhat.com>
53616         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
53617         tmpbuf.
53619 2011-06-10  Roland McGrath  <roland@hack.frob.com>
53621         * Makerules (shlib.lds): Fail if the linker script comes out empty.
53622         * elf/Makefile ($(objpfx)ld.so): Likewise.
53624         * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
53625         Don't list ld.so twice in dependencies.
53627         * posix/bug-regex31.c: Include <stdlib.h>.
53629         * nscd/hstcache.c (cache_addhst): Remove unused variable.
53631         * nis/nss_compat/compat-spwd.c
53632         (getspent_next_nss_netgr): Remove unused variable.
53633         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
53635         * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
53636         nonmembers" output to use the right array.
53638         * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
53640         * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
53642         * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
53643         * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
53644         * catgets/gencat.c (read_input_file): Likewise.
53645         * locale/programs/locarchive.c (enlarge_archive): Likewise.
53647         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
53648         variable definition inside #if's controlling its use.
53650         * inet/getnetgrent_r.c (innetgr): Remove unused variable.
53652         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
53654         * misc/syslog.c (__vsyslog_chk): Remove unused variable.
53656         * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
53657         unreachable code.
53659         * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
53661         * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
53662         * configure: Regenerated.
53664         * Makerules: Revert last change.
53665         * elf/Makefile: Likewise.
53667 2011-06-09  Roland McGrath  <roland@hack.frob.com>
53669         * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
53670         * elf/Makefile ($(objpfx)librtld.os): Likewise.
53671         (reloc-link): Likewise.
53673 2011-06-09  Ulrich Drepper  <drepper@gmail.com>
53675         * elf/Makefile: Add rules to build pldd.
53676         * elf/pldd.c: New file.
53677         * elf/pldd-xx.c: New file.
53679 2011-06-07  Ulrich Drepper  <drepper@gmail.com>
53681         * version.h: Update for 2.15 development version.
53683 2011-06-07  David S. Miller  <davem@davemloft.net>
53685         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
53686         ifuncs.
53687         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
53688         elf_machine_lazy_rel): Likewise.
53689         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
53690         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
53691         elf_machine_lazy_rel): Likewise.
53692         * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
53693         dl_hwcap via passed in argument.
53694         * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
53695         Likewise.
53697 2011-06-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
53699         * stdlib/longlong.h: Update from GCC.  Fix smul_ppmm for S/390.
53701 2011-06-06  Roland McGrath  <roland@hack.frob.com>
53703         [BZ #12849]
53704         * manual/fdl-1.1.texi: New file, verbatim from:
53705         http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
53706         * manual/lgpl-2.1.texi: New file, verbatim from:
53707         http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
53708         * manual/Makefile (licenses): New variable, list those new file names.
53709         (texis): Use it.
53710         (chapters.% top-menu.%): Include $(licenses) with $(appendices).
53712         * manual/fdl.texi: File removed.
53713         * manual/lesser.texi: File removed.
53714         * manual/libc.texinfo (Copying, Documentation License):
53715         Use new @include file names, put @appendix directive before @include.
53717 2011-06-04  Jakub Jelinek  <jakub@redhat.com>
53719         [BZ #12841]
53720         * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
53721         (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
53722         (mq_open): Add __NTH.
53724 2011-06-02  H.J. Lu  <hongjiu.lu@intel.com>
53726         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53727         Assume Intel Core i3/i5/i7 processor if AVX is available.
53729 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
53731         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
53732         typo.
53734 2011-05-31  Andreas Schwab  <schwab@redhat.com>
53736         * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
53737         memory.  Use alloca_account.  Fix memory leak when retrying.
53739 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
53741         * version.h (RELEASE): Bump for 2.14 release.
53742         * include/features.h (__GLIBC_MINOR__): Bump to 14.
53744         * config.make.in (RANLIB): Remove entry.
53746 2011-05-30  Ulrich Drepper  <drepper@gmail.com>
53748         * po/Makefile (po-sed-cmd): Add ksh to extensions.
53749         (libc.pot): Work around missing support for .ksh extension in xgettext.
53751         [BZ #12684]
53752         * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
53753         if both request failed.
53754         (send_dg): In case of server errors clear resplen or *resplen2.
53756         [BZ #12454]
53757         * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
53758         when there are multiple maps.
53759         * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
53760         (_dl_fini): Remove test here.
53762         * elf/rtld.c (dl_main): Don't allow the loader to load itself.
53764 2011-05-29  Ulrich Drepper  <drepper@gmail.com>
53766         [BZ #12350]
53767         * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
53768         bit from old_res_options.
53769         (gaih_inet): Likewise.
53771         [BZ #11099]
53772         * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
53773         as signed.
53775         * resolv/res_init.c (res_setoptions): Make the code more compact.
53777         [BZ #11558]
53778         * resolv/res_init.c (res_setoptions): Recognize use-vc option and
53779         set RES_USEVC.
53781         [BZ #11634]
53782         * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
53784         * malloc/malloc.h: Mark malloc hook variables as deprecated.
53786         [BZ #11781]
53787         * malloc/malloc.h: Declare malloc hook variables as volatile.
53789         * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
53790         in last patch.
53792         [BZ #11799]
53793         * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
53794         raise in the comment.
53795         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
53796         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
53797         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
53799 2011-05-28  Ulrich Drepper  <drepper@gmail.com>
53801         [BZ #12811]
53802         * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
53803         grow the buffers more if it already has to be sufficient.
53804         (build_wcs_upper_buffer): Likewise.
53805         * posix/regexec.c (check_matching): Likewise.
53806         (clean_state_log_if_needed): Likewise.
53807         (extend_buffers): Don't enlarge buffers beyond size of the input
53808         buffer.
53809         Patches mostly by Emil Wojak <emil@wojak.eu>.
53810         * posix/bug-regex32.c: New file.
53811         * posix/Makefile (tests): Add bug-regex32.
53813         * locale/findlocale.c (_nl_find_locale): Return right away if
53814         _nl_explode_name failed.
53815         * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
53817         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
53819         * debug/xtrace.sh: Unify messages.
53820         * malloc/memusage.sh: Likewise.
53822         [BZ #12813]
53823         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
53824         time symbol from vDSO.  Substitute with vsyscall if not available.
53825         * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
53826         __vdso_time.
53828         * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
53829         * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
53830         * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
53831         Add sendmmsg and internal_sendmmsg.
53832         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
53833         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
53834         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
53836         * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
53837         * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
53838         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
53840 2011-05-27  Ulrich Drepper  <drepper@gmail.com>
53842         [BZ #12813]
53843         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
53844         Retrieve getcpu symbol from vDSO.  Substitute with vsyscall if not
53845         available.
53846         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
53847         __vdso_getcpu.
53849         [BZ #12814]
53850         * iconvdata/Makefile (tests): Add bug-iconv9.
53851         * iconvdata/bug-iconv9.c: New file.
53853 2011-05-27  Andreas Schwab  <schwab@redhat.com>
53855         [BZ #12814]
53856         * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
53858 2011-05-25  Jakub Jelinek  <jakub@redhat.com>
53860         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
53861         (struct user_regs_struct): Change intcs field back to cs.
53863 2011-05-25  Ulrich Drepper  <drepper@gmail.com>
53865         * po/ja.po: Update from translation team.
53867 2011-05-23  Ulrich Drepper  <drepper@gmail.com>
53869         [BZ #12795]
53870         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
53871         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
53873 2011-05-20  Andreas Schwab  <schwab@redhat.com>
53875         * stdlib/longlong.h: Update from GCC.
53877 2011-05-23  Andreas Schwab  <schwab@redhat.com>
53879         * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
53880         parameter name.
53881         * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
53882         Add parameter name.
53883         (__sysconf): Pass it down.
53885 2011-05-22  Ulrich Drepper  <drepper@gmail.com>
53887         [BZ #12671]
53888         * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
53889         some situations.
53890         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
53891         * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
53892         add in in __libc_use_alloca calls.  Adjust callers.
53893         (glob): Use malloc in some situations.
53895         * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
53896         and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
53897         pltexit.
53899 2011-05-21  Ulrich Drepper  <drepper@gmail.com>
53901         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
53902         and CLOCK_BOOTTIME_ALARM.
53904         [BZ #12782]
53905         * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
53906         is returned.
53908         * string/_strerror.c (__strerror_r): Print negative errors as signed
53909         numbers.
53911         [BZ #12777]
53912         * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
53913         (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
53914         * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
53916         * configure.in: Fix typo in redirection and correct removal of test
53917         files in two cases.
53919         [BZ #12788]
53920         * locale/setlocale.c (new_composite_name): Fix test to check for
53921         identical name of all categories.
53923         [BZ #12792]
53924         * libio/filedoalloc.c (local_isatty): New function.
53925         (_IO_file_doallocate): Use local_isatty.
53926         * stdio-common/perror.c (perror): In case a new stream is used
53927         forward the stream error.
53928         * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
53929         error flag.
53931 2011-05-20  Ulrich Drepper  <drepper@gmail.com>
53933         [BZ #11869]
53934         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
53935         alloca.
53936         * include/alloca.h (extend_alloca_account): Define.
53938         [BZ #11857]
53939         * posix/regex.h: Fix comments with documentation of user-accessible
53940         fields after compilation and describe correct free'ing of pattern
53941         after re_compile_pattern.
53942         Patch by Reuben Thomas <rrt@sc3d.org>.
53944 2011-05-18  Ryan S. Arnold  <rsa@us.ibm.com>
53946         * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
53947         and -mno-altivec to prevent the compiler from using Altivec and/or
53948         VSX instructions when the corresponding registers are not available.
53950 2011-05-19  Andreas Schwab  <schwab@redhat.com>
53952         * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
53954 2011-05-19  Ulrich Drepper  <drepper@gmail.com>
53956         * libio/freopen.c (freopen): Use __dup2, not dup2.
53957         * libio/freopen64.c (freopen64): Likewise.
53959 2011-05-17  H.J. Lu  <hongjiu.lu@intel.com>
53961         [BZ #12775]
53962         * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
53963         * math/Makefile (tests): Add test-powl.
53964         (CFLAGS-test-powl.c): Define.
53965         * math/test-powl.c: New file.
53967 2011-05-16  H.J. Lu  <hongjiu.lu@intel.com>
53969         * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
53971 2011-05-17  Ulrich Drepper  <drepper@gmail.com>
53973         [BZ #11837]
53974         * iconvdata/gb18030.c: Update to GB18020-2005.
53976 2011-05-16  Ulrich Drepper  <drepper@gmail.com>
53978         * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
53979         RE_SYNTAX_POSIX_AWK): Update to match recent development.
53980         Patch by Aharon Robbins <arnold@skeeve.com>.
53982         [BZ #11892]
53983         * stdlib/putenv.c (putenv): Don't always create copy of the variable
53984         on the stack.
53986         [BZ #11895]
53987         * misc/pselect.c (__pselect): Handle timeout value errors hidden
53988         through underflows.
53990         [BZ #12766]
53991         * misc/error.c (error_at_line): Ensure file_name and old_file_name
53992         point to strings before performing equality test for error_one_per_line
53993         mode.
53995         [BZ #11697]
53996         * login/programs/pt_chown.c (do_pt_chown): Always call chown.
53998         [BZ #11820]
53999         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
54000         (struct user_fpregs_struct): Avoid __uint*_t types.
54002         [BZ #6420]
54003         * malloc/mtrace.c (tr_where): Add additional parameter to point to
54004         symbol info.  Use it instead of calling _dl_addr locally.
54005         (lock_and_info): New function.
54006         (tr_freehook): Call lock_and_info and pass symbol info as additional
54007         parameter to tr_where.
54008         (tr_mallochook): Likewise.
54009         (tr_reallochook): Likewise.
54010         (tr_memalignhook): Likewise.
54012         * malloc/mtrace.c: Remove support for USE_MTRACE_FILE.  It is not
54013         used and couldn't be at all thread-safe.
54015 2011-05-15  Ulrich Drepper  <drepper@gmail.com>
54017         * libio/freopen.c (freopen): Don't close old file descriptor
54018         before the new one is opened.  Instead dup the new file descriptor
54019         to the old one after the new stream is created.
54020         * libio/freopen64.c (freopen64): Likewise.
54021         * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
54022         * libio/fileops.c (_IO_new_file_close_it): Handle new
54023         _IO_FLAGS2_NOCLOSE flag.
54024         (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
54025         If _IO_file_open didn't set FD_CLOEXEC do it after the call.
54026         * libio/oldfileops.c (_IO_old_file_close_it): Handle new
54027         _IO_FLAGS2_NOCLOSE flag.
54028         * include/unistd.h: Add hidden_proto for dup3.
54029         Define __have_dup3.
54030         * io/dup3.c: Define hidden symbol.
54031         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
54033         [BZ #7101]
54034         * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
54035         when an incomplete long option is used.
54036         * posix/tst-getopt_long1.c: New file.
54037         * posix/Makefile (tests): Add tst-getopt_long1.
54039         [BZ #10138]
54040         * scripts/config.guess: Update from autoconf-2.68.
54041         * scripts/config.sub: Likewise.
54043         [BZ #10157]
54044         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
54045         tests into ...
54046         (has_cpuclock): ...this.  New function.
54047         * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
54048         macro here based on has_cpuclock code.
54050         [BZ #10149]
54051         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
54052         First byte (not low byte) is now always NUL.
54053         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
54055         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
54056         Use non-cancelable interfaces.
54058         [BZ #9809]
54059         * locale/iso-639.def: Add entry for Sorani.
54061         [BZ #11901]
54062         * include/stdlib.h: Move include protection to the right place.
54063         Define abort_msg_s.  Declare __abort_msg with it.
54064         * stdlib/abort.c (__abort_msg): Adjust type.
54065         * assert/assert.c (__assert_fail_base): New function.  Majority
54066         of code from __assert_fail.  Allocate memory for __abort_msg with
54067         mmap.
54068         (__assert_fail): Now call __assert_fail_base.
54069         * assert/assert-perr.c: Remove bulk of implementation.  Use
54070         __assert_fail_base.
54071         * include/assert.hL Declare __assert_fail_base.
54072         * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
54073         mmap.
54074         * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
54076 2011-05-14  Ulrich Drepper  <drepper@gmail.com>
54078         [BZ #11952]
54079         [BZ #12453]
54080         * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
54081         until all modules are registered in the DTV.
54082         * elf/Makefile: Add rules to build and run tst-tls19.
54083         * elf/tst-tls19.c: New file.
54084         * elf/tst-tls19mod1.c: New file.
54085         * elf/tst-tls19mod2.c: New file.
54086         * elf/tst-tls19mod3.c: New file.
54087         Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
54089         [BZ #12083]
54090         * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
54091         correctly.
54093         [BZ #12601]
54094         * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
54095         two-byte sequence errors.
54096         * iconvdata/Makefile (tests): Add bug-iconv8.
54097         * iconvdata/bug-iconv8.c: New file.
54099         [BZ #12626]
54100         * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
54101         buf2 definition.
54103         * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
54105         [BZ #12432]
54106         * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
54107         (dummy_getcfa): New function.
54108         (init): Get _Unwind_GetCFA address, use dummy if not found.
54109         (backtrace_helper): In recursion check, also check whether CFA changes.
54110         (__backtrace): Completely initialize arg.
54112         * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
54113         storing incomplete byte sequence in state object.  Avoid testing for
54114         guaranteed too small input if we know there is enough data available.
54116 2011-05-11  Andreas Schwab  <schwab@redhat.com>
54118         * Makeconfig (+link-pie): Indent.
54119         * Rules (binaries-pie): Define if $(have-fpie) and
54120         $(build-shared).
54121         (binaries-shared): Also filter out $(binaries-pie).
54122         ($(addprefix $(objpfx),$(binaries-pie))): New rule.
54123         * nscd/Makefile (others-pie): Add nscd.
54124         (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
54125         ($(objpfx)nscd): Remove command override.
54126         * login/Makefile (others-pie): Add pt_chown.
54127         ($(objpfx)pt_chown): Remove command override.
54128         * elf/Makefile: Add PIE tests to tests and tests-pie variables and
54129         remove command overrides.
54131 2011-05-13  Ulrich Drepper  <drepper@gmail.com>
54133         * libio/tst_putwc.c: Fix error messages.
54135         [BZ #12724]
54136         * libio/fileops.c (_IO_new_file_close_it): Always flush when
54137         currently writing and seek to current position when not.
54138         * libio/Makefile (tests): Add bug-fclose1.
54139         * libio/bug-fclose1.c: New file.
54141 2011-05-12  Ulrich Drepper  <drepper@gmail.com>
54143         [BZ #12511]
54144         * elf/dl-lookup.c (enter): Don't test for copy relocation here and
54145         don't set DF_1_NODELETE here.
54146         (do_lookup_x): When entering new entry test for copy relocation
54147         and if necessary set DF_1_NODELETE flag.
54148         * elf/tst-unique4.cc: New file.
54149         * elf/tst-unique4.h: New file.
54150         * elf/tst-unique4lib.cc: New file.
54151         * elf/Makefile: Add rules to build and run tst-unique4.
54152         Patch by Piotr Bury <pbury@goahead.com>.
54154 2011-05-11  Ulrich Drepper  <drepper@gmail.com>
54156         [BZ #12052]
54157         * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
54159         [BZ #12625]
54160         * misc/mntent_r.c (addmntent): Flush the stream after the output
54162         [BZ #12393]
54163         * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
54164         (is_trusted_path_normalize): Skip initial colon.  Append slash
54165         to empty buffer.  Duplicate is_trusted_path code but allow
54166         constructed patch to be prefix.
54167         (is_dst): Allow $ORIGIN followed by /.
54168         (_dl_dst_substitute): Correct clearing of check_for_trusted.
54169         Correct testing of result of is_trusted_path_normalize
54170         (decompose_rpath): Fix warning.
54172 2011-05-10  Ulrich Drepper  <drepper@gmail.com>
54174         [BZ #11257]
54175         * grp/initgroups.c (internal_getgrouplist): When we found the service
54176         list through the initgroups entry in nsswitch.conf do not always
54177         continue on a successful lookup.  Don't always use the
54178         __nss_group_database value if it is set.
54179         * nss/nsswitch.conf (initgroups): Change action for successful db
54180         lookup to continue for compatibility.
54182 2011-05-09  Ulrich Drepper  <drepper@gmail.com>
54184         [BZ #11532]
54185         * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
54186         and CP774 modules.
54187         * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
54188         and CP774 modules.
54189         * iconvdata/tst-tables.sh: Likewise.
54190         * iconvdata/cp770.c: New file.
54191         * iconvdata/cp771.c: New file.
54192         * iconvdata/cp772.c: New file.
54193         * iconvdata/cp773.c: New file.
54194         * iconvdata/cp774.c: New file.
54195         * iconvdata/testdata/CP770: New file.
54196         * iconvdata/testdata/CP770..UTF8: New file.
54197         * iconvdata/testdata/CP771: New file.
54198         * iconvdata/testdata/CP771..UTF8: New file.
54199         * iconvdata/testdata/CP772: New file.
54200         * iconvdata/testdata/CP772..UTF8: New file.
54201         * iconvdata/testdata/CP773: New file.
54202         * iconvdata/testdata/CP773..UTF8: New file.
54203         * iconvdata/testdata/CP774: New file.
54204         * iconvdata/testdata/CP774..UTF8: New file.
54206         * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
54207         END CHARMAP line.
54208         * iconvdata/gen-8bit-gap.sh: Likewise.
54209         * iconvdata/gen-8bit.sh: Likewise.
54211         * locale/iso-639.def: Add ary entry.
54213         [BZ #11258]
54214         * locale/C-translit.h.in: Add U20A1 transliteration.
54216         [BZ #12178]
54217         * locale/iso-639.def: Add wae entry.
54218         Patch by Kevin Bortis <bortis@translate-wae.ch>.
54220         [BZ #12545]
54221         * locale/programs/localedef.c (construct_output_path): Use ssize_t
54222         for n.
54224         [BZ #12711]
54225         * locale/C-translit.h.in: Add entry for U20B9.
54226         Patch by pravin.d.s@gmail.com.
54228 2011-05-08  Ulrich Drepper  <drepper@gmail.com>
54230         [BZ #12713]
54231         * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
54232         ENAMETOOLONG use generic getcwd.
54233         * sysdeps/posix/getcwd.c: Add support to use openat.  Make usable
54234         in rtld.  Use *stat64.
54235         * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
54236         Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
54237         * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
54238         * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
54239         * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
54240         * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
54241         * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
54242         __fstatat64 macros.
54243         * include/dirent.h: Add libc_hidden_proto for rewinddir.
54244         * dirent/rewinddir.c: Add libc_hidden_def.
54245         * sysdeps/mach/hurd/rewinddir.c: Likewise.
54246         * sysdeps/unix/rewinddir.c: Likewise.  Don't do locking outside libc.
54248         * include/dirent.h (__alloc_dir): Add flags parameter.
54249         * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
54250         * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
54251         __alloc_dir.
54252         (__alloc_dir): Take new parameter.  Don't call fcntl for invocations
54253         from fdopendir if O_CLOEXEC is already set.
54255 2011-03-15  Alan Modra  <amodra@gmail.com>
54257         * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
54258         l_tls_firstbyte_offset non-zero.  Save padding offset in
54259         l_tls_firstbyte_offset for later use.
54260         * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
54261         freeing static tls block.
54263 2011-03-05  Jonathan Nieder  <jrnieder@gmail.com>
54265         * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
54266         where #ifdef was intended.  The intent is to prevent ARG_MAX from
54267         being defined by the kernel headers.
54269 2011-05-07  Ulrich Drepper  <drepper@gmail.com>
54271         [BZ #12734]
54272         * resolv/resolv.h: Define RES_NOTLDQUERY.
54273         * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
54274         no-tld-query and set RES_NOTLDQUERY.
54275         * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
54276         * resolv/res_query.c (__libc_res_nsearch): Backport changes from
54277         modern BIND to search name as TLD unless forbidden.
54279 2011-05-07  Petr Baudis  <pasky@suse.cz>
54280             Ulrich Drepper  <drepper@gmail.com>
54282         [BZ #12393]
54283         * elf/dl-load.c (fillin_rpath): Move trusted path check...
54284         (is_trusted_path): ...to here.
54285         (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
54286         (_dl_dst_substitute): Verify expanded $ORIGIN path elements
54287         using is_trusted_path_normalize() in setuid scripts.
54289 2011-05-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
54291         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
54292         __BEGIN/__END_DECLS.
54294 2011-05-06  Ulrich Drepper  <drepper@gmail.com>
54296         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
54297         NSS_STATUS_NOTFOUND if no record was found.
54299 2011-05-05  Andreas Schwab  <schwab@redhat.com>
54301         * sunrpc/Makefile (headers): Add rpc/netdb.h.
54302         (headers-not-in-tirpc): Remove rpc/netdb.h
54303         * resolv/netdb.h: Revert last change.
54305 2011-05-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
54307         * Makeconfig (link-libc-static): Use --{start,end}-group to handle
54308         circular dependency between libgcc.a and libc.a.
54310 2011-05-05  Andreas Schwab  <schwab@redhat.com>
54312         * resolv/netdb.h: Don't include <rpc/netdb.h>.
54313         * nis/Makefile: Don't install rpcsvc/*.
54314         * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
54315         instead of <rpc/types.h>.
54316         (MAXHOSTNAMELEN): Define.
54318 2011-05-03  Andreas Schwab  <schwab@redhat.com>
54320         * elf/ldconfig.c (add_dir): Don't crash on empty path.
54322 2011-04-28  Maciej Babinski  <mbabinski@google.com>
54324         [BZ #12714]
54325         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
54326         gethostbyname4_r when IPv6 results are possible.
54328 2011-05-02  Ulrich Drepper  <drepper@gmail.com>
54330         [BZ #12723]
54331         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
54332         _PC_PIPE_BUF handling.
54334 2011-04-30  Bruno Haible  <bruno@clisp.org>
54336         [BZ #12717]
54337         * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
54338         * resolv/netdb.h (getnameinfo): Change type of flags parameter
54339         to 'int'.
54340         * inet/getnameinfo.c (getnameinfo): Likewise.
54342 2011-04-29  Ulrich Drepper  <drepper@gmail.com>
54344         * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
54345         to groups setting in database lookup.
54346         * nss/nsswitch.conf: Add initgroups entry.
54348 2011-04-22  Ulrich Drepper  <drepper@gmail.com>
54350         [BZ #12685]
54351         * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
54352         mode string.
54353         Patch by Eric Blake <eblake@redhat.com>.
54355 2011-04-20  H.J. Lu  <hongjiu.lu@intel.com>
54357         * sunrpc/Makefile (need-export-routines): Add svc_run.
54358         (routines): Remove svc_run.
54359         ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
54360         * sunrpc/clnt_perr.c (clnt_perrno): Export.
54361         * sunrpc/svc_run.c (svc_run): Likewise.
54362         * sunrpc/svc_udp.c (svcudp_create): Likewise.
54364 2011-04-21  Ulrich Drepper  <drepper@gmail.com>
54366         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
54367         problem in reallocation in last patch.
54369 2011-04-20  Ulrich Drepper  <drepper@gmail.com>
54371         * sunrpc/Makefile: Move inclusion of Rules.
54373 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
54375         * nss/nss_files/files-initgroups.c: New file.
54376         * nss/Makefile (libnss_files-routines): Add files-initgroups.
54377         * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
54378         _nss_files_initgroups_dyn.
54380 2011-03-31  Richard Sandiford  <richard.sandiford@linaro.org>
54382         * elf/elf.h (R_ARM_IRELATIVE): Define.
54384 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
54386         * po/ru.po: Update from translation team.
54388 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
54390         * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
54391         dependencies.
54393 2011-02-06  Mike Frysinger  <vapier@gentoo.org>
54395         [BZ #12653]
54396         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
54397         MEMCPY_CHK with USE_AS_BCOPY ifdef check.
54398         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
54399         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
54400         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
54402 2011-03-28  Andreas Schwab  <schwab@linux-m68k.org>
54404         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
54405         differing bytes.
54406         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
54407         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
54408         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
54410 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
54412         [BZ #12420]
54413         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
54414         storing it.
54415         * stdlib/bug-getcontext.c: New file.
54416         * stdlib/Makefile: Add rules to build and run bug-getcontext.
54418 2011-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
54420         * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
54421         instructions into .machine "z9-109".
54422         * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
54423         * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
54425 2011-04-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
54427         * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
54428         between environment variables and auxiliary vector.
54430 2011-04-16  Ulrich Drepper  <drepper@gmail.com>
54432         * Makefile: Add rules to build linkobj/libc.so.
54433         * include/libc-symbols.h: Define libc_hidden_nolink.
54434         * include/rpc/auth.h: Mark functions which are to be hidden.
54435         * include/rpc/auth_des.h: Likewise.
54436         * include/rpc/auth_unix.h: Likewise.
54437         * include/rpc/clnt.h: Likewise.
54438         * include/rpc/des_crypt.h: Likewise.
54439         * include/rpc/key_prot.h: Likewise.
54440         * include/rpc/pmap_clnt.h: Likewise.
54441         * include/rpc/pmap_prot.h: Likewise.
54442         * include/rpc/pmap_rmt.h: Likewise.
54443         * include/rpc/rpc_msg.h: Likewise.
54444         * include/rpc/svc.h: Likewise.
54445         * include/rpc/svc_auth.h: Likewise.
54446         * include/rpc/xdr.h: Likewise.
54447         * nis/Makefile: Link all DSOs against linkobj/libc.so.
54448         * nss/Makefile: Likewise.
54449         * sunrpc/Makefile: Don't install headers.  Build library with normal
54450         entry points.  Don't build rpcinfo.  Link RPC tests appropriately.
54451         * sunrpc/auth_des.c: Hide exported symbols by default, export some
54452         for the compat linking library.  Remove use of INTDEF/INTUSE.
54453         * sunrpc/auth_none.c: Likewise.
54454         * sunrpc/auth_unix.c: Likewise.
54455         * sunrpc/authdes_prot.c: Likewise.
54456         * sunrpc/authuxprot.c: Likewise.
54457         * sunrpc/clnt_gen.c: Likewise.
54458         * sunrpc/clnt_perr.c: Likewise.
54459         * sunrpc/clnt_raw.c: Likewise.
54460         * sunrpc/clnt_simp.c: Likewise.
54461         * sunrpc/clnt_tcp.c: Likewise.
54462         * sunrpc/clnt_udp.c: Likewise.
54463         * sunrpc/clnt_unix.c: Likewise.
54464         * sunrpc/des_crypt.c: Likewise.
54465         * sunrpc/des_soft.c: Likewise.
54466         * sunrpc/get_myaddr.c: Likewise.
54467         * sunrpc/key_call.c: Likewise.
54468         * sunrpc/key_prot.c: Likewise.
54469         * sunrpc/netname.c: Likewise.
54470         * sunrpc/pm_getmaps.c: Likewise.
54471         * sunrpc/pm_getport.c: Likewise.
54472         * sunrpc/pmap_clnt.c: Likewise.
54473         * sunrpc/pmap_prot.c: Likewise.
54474         * sunrpc/pmap_prot2.c: Likewise.
54475         * sunrpc/pmap_rmt.c: Likewise.
54476         * sunrpc/publickey.c: Likewise.
54477         * sunrpc/rpc_cmsg.c: Likewise.
54478         * sunrpc/rpc_common.c: Likewise.
54479         * sunrpc/rpc_dtable.c: Likewise.
54480         * sunrpc/rpc_prot.c: Likewise.
54481         * sunrpc/rpc_thread.c: Likewise.
54482         * sunrpc/rtime.c: Likewise.
54483         * sunrpc/svc.c: Likewise.
54484         * sunrpc/svc_auth.c: Likewise.
54485         * sunrpc/svc_authux.c: Likewise.
54486         * sunrpc/svc_raw.c: Likewise.
54487         * sunrpc/svc_run.c: Likewise.
54488         * sunrpc/svc_simple.c: Likewise.
54489         * sunrpc/svc_tcp.c: Likewise.
54490         * sunrpc/svc_udp.c: Likewise.
54491         * sunrpc/svc_unix.c: Likewise.
54492         * sunrpc/svcauth_des.c: Likewise.
54493         * sunrpc/xcrypt.c: Likewise.
54494         * sunrpc/xdr.c: Likewise.
54495         * sunrpc/xdr_array.c: Likewise.
54496         * sunrpc/xdr_float.c: Likewise.
54497         * sunrpc/xdr_intXX_t.c: Likewise.
54498         * sunrpc/xdr_mem.c: Likewise.
54499         * sunrpc/xdr_rec.c: Likewise.
54500         * sunrpc/xdr_ref.c: Likewise.
54501         * sunrpc/xdr_sizeof.c: Likewise.
54502         * sunrpc/xdr_stdio.c: Likewise.
54504 2011-04-10  Ulrich Drepper  <drepper@gmail.com>
54506         [BZ #12650]
54507         * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
54508         * sysdeps/ia64/dl-tls.h: Likewise.
54509         * sysdeps/powerpc/dl-tls.h: Likewise.
54510         * sysdeps/s390/dl-tls.h: Likewise.
54511         * sysdeps/sh/dl-tls.h: Likewise.
54512         * sysdeps/sparc/dl-tls.h: Likewise.
54513         * sysdeps/x86_64/dl-tls.h: Likewise.
54514         * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
54516 2011-03-14  Andreas Schwab  <schwab@redhat.com>
54518         * elf/dl-load.c (_dl_dst_substitute): When skipping the first
54519         rpath element also skip the following colon.
54520         (expand_dynamic_string_token): Add is_path parameter and pass
54521         down to DL_DST_REQUIRED and _dl_dst_substitute.
54522         (decompose_rpath): Call expand_dynamic_string_token with
54523         non-zero is_path.  Ignore empty rpaths.
54524         (_dl_map_object_from_fd): Call expand_dynamic_string_token
54525         with zero is_path.
54527 2011-04-08  Andreas Schwab  <schwab@linux-m68k.org>
54529         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
54530         Make cancelable.
54532 2011-04-09  Ulrich Drepper  <drepper@gmail.com>
54534         [BZ #12655]
54535         * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
54536         Patch by Filipe David Manana <fdmanana@apache.org>.
54538 2011-04-07  Andreas Schwab  <schwab@redhat.com>
54540         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
54541         Maintain aligned stack.
54542         (CHECK_RSP): Remove unused macro.
54544 2011-04-03  Ulrich Drepper  <drepper@gmail.com>
54546         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
54547         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
54549 2011-04-02  Ulrich Drepper  <drepper@gmail.com>
54551         * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
54553         * include/features.h: Mention __USE_XOPEN2K8 in comment.
54555 2011-03-26  H.J. Lu  <hongjiu.lu@intel.com>
54557         [BZ #12518]
54558         * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
54559         * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
54560         * sysdeps/x86_64/memmove.c: New file.
54561         * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
54562         (memcpy): Renamed to ...
54563         (__new_memcpy): This.
54564         (memcpy): Provide GLIBC_2_14 memcpy.
54565         * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
54566         (memcpy): Provide GLIBC_2_2_5 memcpy.
54568 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
54570         [BZ #12631]
54571         * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
54573 2011-03-30  Andreas Schwab  <schwab@redhat.com>
54575         * misc/syncfs.c: New file.
54576         * misc/Makefile (routines): Add syncfs.
54577         * posix/unistd.h: Declare syncfs.
54578         * sysdeps/unix/syscalls.list: Add syncfs.
54580 2011-04-01  Andreas Schwab  <schwab@redhat.com>
54582         * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
54583         open_by_handle_at.
54584         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
54585         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54586         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54587         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54588         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54589         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
54590         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54592 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
54594         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
54595         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54596         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
54597         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54598         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54599         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54600         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54602         * io/Makefile: Compile fallocate.c, fallocate64.c, and
54603         sync_file_range.c with -fexceptions.
54604         * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
54605         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
54606         * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
54607         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
54608         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
54609         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
54610         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
54611         sync_file_range as cancellation point
54612         * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file.  This is
54613         now a wrapper around __call_sync_file_range with cancellation handling.
54614         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
54615         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this.  Change
54616         function name to __call_sync_file_range.
54617         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
54618         Add call_sync_file_range.
54620 2011-04-01  Andreas Schwab  <schwab@redhat.com>
54622         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
54623         bits/timex.h.
54625 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
54627         * iconv/iconv.h: Fix typo in comment.
54628         * io/fcntl.h: Likewise.
54629         * libio/stdio.h: Likewise.
54630         * posix/spawn.h: Likewise.
54631         * posix/unistd.h: Likewise.
54632         * stdlib/stdlib.h: Likewise.
54633         * time/time.h: Likewise.
54634         * wcsmbs/wchar.h: Likewise.
54636         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
54637         open_by_handle): Add.
54638         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
54639         and MAX_HANDLE_SZ.  Declare name_to_handle_at and open_by_handle.
54640         Augment a few comments.
54641         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54642         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54643         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54644         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54645         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54646         * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
54647         open_by_handle.
54649         * io/fcntl.h (AT_EMPTY_PATH): Define.
54651 2011-03-30  Ulrich Drepper  <drepper@gmail.com>
54653         * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
54654         * sysdeps/unix/sysv/linux/bits/time.h: New file.
54655         * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
54656         to...
54657         * sysdeps/unix/sysv/linux/bits/timex.h: ...here.  New file.
54658         * Versions.def: Add GLIBC_2.14.
54659         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
54660         Export.
54662 2011-03-22  Ulrich Drepper  <drepper@gmail.com>
54664         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
54665         round counter.
54666         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
54668 2011-03-20  H.J. Lu  <hongjiu.lu@intel.com>
54670         [BZ #12597]
54671         * string/test-strncmp.c (do_page_test): New function.
54672         (check2): Likewise.
54673         (test_main): Call check2.
54674         * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
54676 2011-03-20  Ulrich Drepper  <drepper@gmail.com>
54678         [BZ #12587]
54679         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
54680         Handle cache information in CPU leaf 4.
54681         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
54683 2011-03-18  Ulrich Drepper  <drepper@gmail.com>
54685         [BZ #12583]
54686         * posix/fnmatch.c (fnmatch): Check size of pattern in wide
54687         character representation.
54688         Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
54690 2011-03-16  Ryan S. Arnold  <rsa@us.ibm.com>
54692         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
54693         END(__isnan) to END(__isnanf) to match function entry point/label
54694         EALIGN(__isnanf,...).
54696 2011-03-10  Jakub Jelinek  <jakub@redhat.com>
54698         * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
54700 2011-03-10  Ulrich Drepper  <drepper@gmail.com>
54702         [BZ #12510]
54703         * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
54704         copy from the symbol referenced in the relocation to initialize the
54705         used variable.
54706         Patch by Piotr Bury <pbury@goahead.com>.
54707         * elf/Makefile: Add rules to build and tst-unique3.
54708         * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
54709         * elf/tst-unique3.cc: New file.
54710         * elf/tst-unique3.h: New file.
54711         * elf/tst-unique3lib.cc: New file.
54712         * elf/tst-unique3lib2.cc: New file.
54714         * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
54716 2011-03-10  Mike Frysinger  <vapier@gentoo.org>
54718         * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
54719         $LDFLAGS and -nostdlib -nostartfiles to linking step.  Change main
54720         to _start.
54722 2011-03-06  Ulrich Drepper  <drepper@gmail.com>
54724         * elf/dl-load.c (_dl_map_object): If we are looking for the first
54725         to-be-loaded object along a path to loader is ld.so.
54727 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
54728             Ulrich Drepper  <drepper@gmail.com>
54730         * sysdeps/x86_64/memset.S: After aligning destination, code
54731         branches to different locations depending on the value of
54732         misalignment, when multiarch is enabled. Fix this.
54734 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
54736         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
54737         Set _x86_64_preferred_memory_instruction for AMD processsors.
54738         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
54739         Set bit_Prefer_SSE_for_memop for AMD processors.
54741 2011-03-04  Ulrich Drepper  <drepper@gmail.com>
54743         * libio/fmemopen.c (fmemopen): Optimize a bit.
54745 2011-03-03  Andreas Schwab  <schwab@redhat.com>
54747         * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
54749 2011-03-03  Roland McGrath  <roland@redhat.com>
54751         * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
54753 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
54755         * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
54756         __bzero_ultra1 instead of __memset_ultra1.
54758 2011-02-23  Andreas Schwab  <schwab@redhat.com>
54759             Ulrich Drepper  <drepper@gmail.com>
54761         [BZ #12509]
54762         * include/link.h (struct link_map): Add l_orig_initfini.
54763         * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
54764         returning unsuccessfully.
54765         * elf/dl-close.c (_dl_close_worker): If this is the last explicit
54766         close of a file loaded at startup, restore the original l_initfini
54767         list.
54768         * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
54769         list, store the pointer.
54770         * elf/Makefile ($(objpfx)noload-mem): New rule.
54771         (noload-ENV): Define.
54772         (tests): Add $(objpfx)noload-mem.
54773         * elf/noload.c: Include <memcheck.h>.
54774         (main): Call mtrace.  Close all opened handles.
54776 2011-02-17  Andreas Schwab  <schwab@redhat.com>
54778         [BZ #12454]
54779         * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
54780         dependencies are missing.
54782 2011-02-22  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54784         Fix __if_freereq crash: Unlike the generic version which uses free,
54785         Hurd needs munmap.
54786         * sysdeps/mach/hurd/ifreq.h: New file.
54788 2011-01-27  Petr Baudis  <pasky@suse.cz>
54789             Ulrich Drepper  <drepper@gmail.com>
54791         [BZ 12445]#
54792         * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
54793         to extend_alloca().
54794         * stdio-common/bug23.c: New file.
54795         * stdio-common/Makefile (tests): Add bug23.
54797 2010-09-28  Andreas Schwab  <schwab@redhat.com>
54798             Ulrich Drepper  <drepper@gmail.com>
54800         [BZ #12489]
54801         * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
54802         before performing relro protection.  At old place add assertion
54803         to make sure nothing changed.
54805 2011-02-17  Nathan Sidwell  <nathan@codesourcery.com>
54806             Glauber de Oliveira Costa  <glommer@gmail.com>
54808         * elf/elf.h: Add new ARM TLS relocs.
54810 2011-02-16  Ryan S. Arnold  <rsa@us.ibm.com>
54812         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
54813         (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
54814         cast from r3.
54815         * sysdeps/wordsize-64/Makefile: New file.  Add tst-writev to
54816         'tests' variable.
54817         * sysdeps/wordsize-64/tst-writev.c: New file.
54819 2011-02-15  Ryan S. Arnold  <rsa@us.ibm.com>
54821         * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
54822         -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
54823         insns in _dl_start to prevent a TOC reference before relocs are
54824         resolved.
54826 2011-02-15  Ulrich Drepper  <drepper@gmail.com>
54828         [BZ #12469]
54829         * Makeconfig: Remove RANLIB definition.
54830         * Makerules: Don't use RANLIB.
54831         * aclocal.m4: Remove ranlib test.
54832         * configure.in: No need to check for ranlib.
54833         * elf/rtld-Rules: Don't use RANLIB.
54835 2011-02-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54837         * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
54838         protection macro.
54839         * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
54840         inclusion protection macro.
54842         * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
54843         SIGRTMIN and SIGRTMAX and print information in that case only when
54844         SIGRTMIN is defined.
54846 2011-02-11  Jakub Jelinek  <jakub@redhat.com>
54848         * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
54849         arginfo fn returning -1.
54851         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
54852         and thousands string is zero terminated.
54854 2011-02-03  Andreas Schwab  <schwab@redhat.com>
54856         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
54857         sysdeps/unix/sysv/linux/bits/socket.h.
54859 2011-01-30  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54861         * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
54862         (__CPU_COUNT): Remove old macros.
54863         (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
54864         (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
54865         (__CPU_ALLOC, __CPU_FREE): Add macros.
54866         (__sched_cpualloc, __sched_cpufree): Add declarations.
54868 2011-02-05  Ulrich Drepper  <drepper@gmail.com>
54870         * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
54871         (struct datahead): Reuse 32 bits of the alignment for a TTL field.
54872         * nscd/aicache.c (addhstaiX): Return timeout of added value.
54873         (readdhstai): Return value of addhstaiX call.
54874         * nscd/grpcache.c (cache_addgr): Return timeout of added value.
54875         (addgrbyX): Return value returned by cache_addgr.
54876         (readdgrbyname): Return value returned by addgrbyX.
54877         (readdgrbygid): Likewise.
54878         * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
54879         (addpwbyX): Return value returned by cache_addpw.
54880         (readdpwbyname): Return value returned by addhstbyX.
54881         (readdpwbyuid): Likewise.
54882         * nscd/servicescache.c (cache_addserv): Return timeout of added value.
54883         (addservbyX): Return value returned by cache_addserv.
54884         (readdservbyname): Return value returned by addservbyX:
54885         (readdservbyport): Likewise.
54886         * nscd/hstcache.c (cache_addhst): Return timeout of added value.
54887         (addhstbyX): Return value returned by cache_addhst.
54888         (readdhstbyname): Return value returned by addhstbyX.
54889         (readdhstbyaddr): Likewise.
54890         (readdhstbynamev6): Likewise.
54891         (readdhstbyaddrv6): Likewise.
54892         * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
54893         (readdinitgroups): Return value returned by addinitgroupsX.
54894         * nscd/cache.c (readdfcts): Change return value of functions to time_t.
54895         (prune_cache): Keep track of timeout value of re-added entries.
54896         * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
54897         * nscd/nscd.h: Adjust prototypes of readd* functions.
54899 2011-02-04  Roland McGrath  <roland@redhat.com>
54901         * nis/nis_server.c (nis_servstate): Use the right name for 0.
54902         (nis_stats): Likewise.
54903         * nis/nis_modify.c (nis_modify): Likewise.
54904         * nis/nis_remove.c (nis_remove): Likewise.
54905         * nis/nis_add.c (nis_add): Likewise.
54907         * elf/dl-object.c (_dl_new_object): Remove unused variable L.
54909         * posix/fnmatch_loop.c: Add some consts.
54911         * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
54913 2011-02-02  H.J. Lu  <hongjiu.lu@intel.com>
54915         [BZ #12460]
54916         * config.make.in (config-cflags-novzeroupper): Define.
54917         * configure.in: Substitute libc_cv_cc_novzeroupper.
54918         * elf/Makefile (AVX-CFLAGS): Define.
54919         (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
54920         (CFLAGS-tst-auditmod4a.c): Likewise.
54921         (CFLAGS-tst-auditmod4b.c): Likewise.
54922         (CFLAGS-tst-auditmod6b.c): Likewise.
54923         (CFLAGS-tst-auditmod6c.c): Likewise.
54924         (CFLAGS-tst-auditmod7b.c): Likewise.
54925         * sysdeps/i386/configure.in: Check -mno-vzeroupper.
54927 2011-02-02  Ulrich Drepper  <drepper@gmail.com>
54929         * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
54930         function to the callback.
54931         Patch partly by Jiri Olsa <jolsa@redhat.com>.
54933 2011-02-02  Andreas Schwab  <schwab@redhat.com>
54935         * shadow/sgetspent.c: Check return value of __sgetspent_r instead
54936         of errno.
54938 2011-01-19  Ulrich Drepper  <drepper@gmail.com>
54940         [BZ #11724]
54941         * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
54942         of constructors.
54943         * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
54944         of destructors.
54945         (_dl_fini): Don't call _dl_sort_fini if there is only one object.
54947         [BZ #11724]
54948         * elf/Makefile: Add rules to build and run new test.
54949         * elf/tst-initorder.c: New file.
54950         * elf/tst-initorder.exp: New file.
54951         * elf/tst-initordera1.c: New file.
54952         * elf/tst-initordera2.c: New file.
54953         * elf/tst-initordera3.c: New file.
54954         * elf/tst-initordera4.c: New file.
54955         * elf/tst-initorderb1.c: New file.
54956         * elf/tst-initorderb2.c: New file.
54957         * elf/tst-order-a1.c: New file.
54958         * elf/tst-order-a2.c: New file.
54959         * elf/tst-order-a3.c: New file.
54960         * elf/tst-order-a4.c: New file.
54961         * elf/tst-order-b1.c: New file.
54962         * elf/tst-order-b2.c: New file.
54963         * elf/tst-order-main.c: New file.
54964         New test case by George Gensure <werkt0@gmail.com>.
54966 2010-10-01  Andreas Schwab  <schwab@redhat.com>
54968         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
54969         decoding ACE if AI_CANONIDN.
54971 2011-01-18  Ulrich Drepper  <drepper@gmail.com>
54973         * elf/Makefile: Build IFUNC tests unless multi-arch = no.
54975 2011-01-17  Ulrich Drepper  <drepper@gmail.com>
54977         * version.h (RELEASE): Bump for 2.13 release.
54978         * include/features.h: (__GLIBC_MINOR__): Bump to 13.
54980         * io/fcntl.h: Define AT_NO_AUTOMOUNT.
54982         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
54983         MADV_NOHUGEPAGE.
54984         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
54985         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
54986         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
54987         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
54988         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
54989         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
54991         * posix/getconf.c: Update copyright year.
54992         * catgets/gencat.c: Likewise.
54993         * csu/version.c: Likewise.
54994         * debug/catchsegv.sh: Likewise.
54995         * debug/xtrace.sh: Likewise.
54996         * elf/ldconfig.c: Likewise.
54997         * elf/ldd.bash.in: Likewise.
54998         * elf/sprof.c (print_version): Likewise.
54999         * iconv/iconv_prog.c: Likewise.
55000         * iconv/iconvconfig.c: Likewise.
55001         * locale/programs/locale.c: Likewise.
55002         * locale/programs/localedef.c: Likewise.
55003         * malloc/memusage.sh: Likewise.
55004         * malloc/mtrace.pl: Likewise.
55005         * nscd/nscd.c (print_version): Likewise.
55006         * nss/getent.c: Likewise.
55008         * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
55009         PF_CAIF, and PF_ALG.
55010         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
55012 2011-01-16  Andreas Schwab  <schwab@linux-m68k.org>
55014         * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
55015         (modules-names): Use them.
55016         (ifunc-test-modules, ifunc-pie-tests): Define.
55017         (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
55018         tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
55019         (test-extras): Likewise.
55020         ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
55021         $(compile-command.c).
55022         ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
55023         (all-built-dso): Define.
55024         (check-textrel.out, check-execstack.out): Depend on it.
55026         * configure.in: Don't override --enable-multi-arch.
55028 2011-01-15  Ulrich Drepper  <drepper@gmail.com>
55030         [BZ #6812]
55031         * nscd/hstcache.c (tryagain): Define.
55032         (cache_addhst): Return tryagain not notfound for temporary errors.
55033         (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
55034         failed.
55036 2011-01-14  Ulrich Drepper  <drepper@gmail.com>
55038         [BZ #10563]
55039         * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
55040         to make the syscall.
55041         * sysdeps/unix/sysv/linux/setgroups.c: New file.
55043         [BZ #12378]
55044         * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
55045         and fall back to matching as normal character if the string ends before
55046         the matching ']' is found.  This is what POSIX requires.
55047         * posix/testfnm.c: Adjust test result.
55048         * posix/globtest.sh: Adjust test result.  Add new test.
55049         * posix/tst-fnmatch.input: Likewise.
55050         * posix/tst-fnmatch2.c: Add new test.
55052 2010-12-28  Andreas Schwab  <schwab@linux-m68k.org>
55054         * elf/Makefile (check-execstack): Revert last change.  Depend on
55055         check-execstack.h.
55056         (check-execstack.h): New target.
55057         (generated): Add check-execstack.h.
55058         * elf/check-execstack.c: Include "check-execstack.h".
55059         (main): Revert last change.
55060         (handle_file): Return zero if GNU_STACK is absent and
55061         DEFAULT_STACK_PERMS doesn't include PF_X.
55063 2011-01-13  Ulrich Drepper  <drepper@gmail.com>
55065         * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
55066         in child fails because the descriptor is already closed.
55067         * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
55068         * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
55069         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
55071         [BZ #12397]
55072         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
55073         syscall.
55075         [BZ #10484]
55076         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
55077         temporary buffer used to handle multi lookups locally.
55078         * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
55080 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
55082         * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
55083         loader is ld.so.
55085 2011-01-10  Paul Pluzhnikov  <ppluzhnikov@google.com>
55087         * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
55088         alignment for SSE2.
55090 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
55092         [BZ #12394]
55093         * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
55094         characters.  When rounding increased number of integer digits recompute
55095         number of groups.
55096         * stdio-common/tst-grouping.c: New file.
55097         * stdio-common/Makefile: Add rules to build and run tst-grouping.
55099 2011-01-09  Ulrich Drepper  <drepper@gmail.com>
55101         * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
55102         __FD_CLR, and __FS_ISSET.  gcc generates better code on its own.
55104         * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
55105         void.
55106         * bits/select.h: Likewise.
55108 2011-01-08  Ulrich Drepper  <drepper@gmail.com>
55110         * po/ja.po: Update from translation team.
55112 2011-01-04  David S. Miller  <davem@sunset.davemloft.net>
55114         [BZ #11155]
55115         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
55116         implementation just like for lxstat, fxstatat, et al.
55118 2010-12-27  Jim Meyering  <meyering@redhat.com>
55120         [BZ #12348]
55121         * posix/regexec.c (build_trtable): Return failure indication upon
55122         calloc failure.  Otherwise, re_search_internal could infloop on OOM.
55124 2010-12-25  Ulrich Drepper  <drepper@gmail.com>
55126         [BZ #12201]
55127         * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
55128         * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
55129         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
55130         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
55132         [BZ #12207]
55133         * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
55135         [BZ #12204]
55136         * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
55137         * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
55139 2010-12-15  H.J. Lu  <hongjiu.lu@intel.com>
55141         * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
55142         * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
55143         script has SORT_BY_INIT_PRIORITY.
55144         * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
55145         NO_CTORS_DTORS_SECTIONS is defined.
55146         * elf/soinit.c: Likewise.
55147         * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
55148         NO_CTORS_DTORS_SECTIONS is defined.
55149         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
55150         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
55151         * sysdeps/sh/init-first.c: Likewise.
55152         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
55154 2010-12-24  Ulrich Drepper  <drepper@gmail.com>
55156         * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
55157         always use the slow path.
55159 2010-12-15  Ryan S. Arnold  <rsa@us.ibm.com>
55161         * elf/Makefile: (check-execstack): Replace $(native-compile) with a
55162         similar rule which adds the sysdep directories to the header search in
55163         order to pick up the correct platform stackinfo.h.
55164         * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
55165         perform test if it is, otherwise return successfully without testing.
55166         * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
55167         DEFAULT_STACK_PERMS define in stackinfo.h.
55168         * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
55169         defined in stackinfo.h.
55170         * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
55171         DEFAULT_STACK_PERMS defined in stackinfo.h.
55172         * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
55173         * sysdeps/ia64/stackinfo.h: Likewise.
55174         * sysdeps/s390/stackinfo.h: Likewise.
55175         * sysdeps/sh/stackinfo.h: Likewise.
55176         * sysdeps/sparc/stackinfo.h: Likewise.
55177         * sysdeps/x86_64/stackinfo.h: Likewise.
55178         * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
55179         PF_X for powerpc64.  Retain PF_X for powerpc32.
55181 2010-12-19  Ulrich Drepper  <drepper@gmail.com>
55183         * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
55184         accurately.
55185         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
55186         GETDENTS_64BIT_ALIGNED.
55188 2010-12-14  Ulrich Drepper  <dreper@gmail.com>
55190         * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
55192 2010-12-10  Andreas Schwab  <schwab@redhat.com>
55194         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
55195         _GNU_SOURCE.
55197         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
55198         * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
55199         Remove __restrict.
55200         (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
55201         (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
55203 2010-12-09  Ulrich Drepper  <drepper@gmail.com>
55205         [BZ #11655]
55206         * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
55207         are initialized.
55209 2010-12-09  Jakub Jelinek  <jakub@redhat.com>
55211         * string/bits/string3.h (memmove, bcopy): Remove __restrict.
55213 2010-12-03  Ulrich Drepper  <drepper@gmail.com>
55215         * po/it.po: Update from translation team.
55217 2010-12-01  H.J. Lu  <hongjiu.lu@intel.com>
55219         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
55220         unused codes.
55222 2010-11-30  Ulrich Drepper  <drepper@gmail.com>
55224         * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
55226 2010-11-24  Andreas Schwab  <schwab@redhat.com>
55228         * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
55229         specially.
55230         (gaih_getanswer_slice): Likewise.
55232 2010-10-20  Jakub Jelinek  <jakub@redhat.com>
55234         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
55236 2010-05-31  Petr Baudis  <pasky@suse.cz>
55238         [BZ #11149]
55239         * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
55240         silently even in the chroot mode.
55242 2010-11-22  Ulrich Drepper  <drepper@gmail.com>
55244         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
55245         last patch a bit.  Pretty printing
55247 2010-05-31  Petr Baudis <pasky@suse.cz>
55249         [BZ #10085]
55250         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
55251         initialization of skip_initgroups_dyn.
55253 2010-11-19  Ulrich Drepper  <drepper@gmail.com>
55255         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
55256         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
55258 2010-11-16  Ulrich Drepper  <drepper@gmail.com>
55260         * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
55262 2010-11-11  Andreas Schwab  <schwab@redhat.com>
55264         * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
55265         * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
55266         (tst-fnmatch-ENV): Set MALLOC_TRACE.
55267         ($(objpfx)tst-fnmatch-mem): New rule.
55268         (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
55269         * posix/tst-fnmatch.c (main): Call mtrace.
55271 2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>
55273         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
55274         Support Intel processor model 6 and model 0x2c.
55276 2010-11-10  Luis Machado  <luisgpm@br.ibm.com>
55278         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
55279           signed comparison.
55281 2010-11-09  H.J. Lu  <hongjiu.lu@intel.com>
55283         [BZ #12205]
55284         * string/test-strncasecmp.c (check_result): New function.
55285         (do_one_test): Use it.
55286         (check1): New function.
55287         (test_main): Use it.
55288         * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
55289         Support strcasecmp and strncasecmp.
55291 2010-11-08  Ulrich Drepper  <drepper@gmail.com>
55293         [BZ #12194]
55294         * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
55295         * sysdeps/x86_64/bits/byteswap.h: Likewise.
55297 2010-11-07  H.J. Lu  <hongjiu.lu@intel.com>
55299         * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
55300         IFUNC support.
55301         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
55302         memset-x86-64.
55303         * sysdeps/x86_64/multiarch/bzero.S: New file.
55304         * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
55305         * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
55306         * sysdeps/x86_64/multiarch/memset.S: New file.
55307         * sysdeps/x86_64/multiarch/memset_chk.S: New file.
55308         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
55309         Set bit_Prefer_SSE_for_memop for Intel processors.
55310         * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
55311         Define.
55312         (index_Prefer_SSE_for_memop): Define.
55313         (HAS_PREFER_SSE_FOR_MEMOP): Define.
55315 2010-11-04  Luis Machado  <luisgpm@br.ibm.com>
55317         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
55318         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
55320 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
55322         [BZ #12191]
55323         * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
55324         (__x86_64_raw_data_cache_size_half): Likewise.
55325         (__x86_64_raw_shared_cache_size): Likewise.
55326         (__x86_64_raw_shared_cache_size_half): Likewise.
55328         * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
55329         (__x86_64_raw_data_cache_size_half): Likewise.
55330         (__x86_64_raw_shared_cache_size): Likewise.
55331         (__x86_64_raw_shared_cache_size_half): Likewise.
55332         (init_cacheinfo): Set __x86_64_raw_data_cache_size,
55333         __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
55334         and __x86_64_raw_shared_cache_size_half.  Round
55335         __x86_64_data_cache_size_half, __x86_64_data_cache_size
55336         __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
55337         to multiple of 256 bytes.
55339 2010-11-03  Ulrich Drepper  <drepper@gmail.com>
55341         [BZ #12167]
55342         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
55343         of inacessible symlinks.  Verify result of symlink before returning it.
55344         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
55345         Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
55347 2010-10-28  Erich Ritz  <erichritz@gmail.com>
55349         * math/math.h (isinf): Fix typo in comment.
55351 2010-11-01  Ulrich Drepper  <drepper@gmail.com>
55353         * po/da.po: Update from translation team.
55355 2010-10-26  Ulrich Drepper  <drepper@gmail.com>
55357         * elf/rtld.c (dl_main): Move assertion after the point where rtld map
55358         is added to the list.
55360 2010-10-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
55361             Ulrich Drepper  <drepper@gmail.com>
55363         * elf/dl-object.c (_dl_new_object): Don't append the new object to
55364         the global list here.  Move code to...
55365         (_dl_add_to_namespace_list): ...here.  New function.
55366         * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
55367         * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
55368         * elf/dl-load.c (lose): Don't remove the element from the list.
55369         (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
55370         (_dl_map_object): Likewise.
55372 2010-10-25  Ulrich Drepper  <drepper@gmail.com>
55374         [BZ #12159]
55375         * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
55376         into all bytes of SSE register.
55377         Patch by Richard Li <richardpku@gmail.com>.
55379 2010-10-24  Ulrich Drepper  <drepper@gmail.com>
55381         [BZ #12140]
55382         * malloc/malloc.c (_int_free): Fill correct number of bytes when
55383         perturbing.
55385 2010-10-20  Michael B. Brutman  <brutman@us.ibm.com>
55387         * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
55388         * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
55389         * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
55390         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
55391         * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
55392         submachine.
55393         * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
55395 2010-10-22  Andreas Schwab  <schwab@redhat.com>
55397         * include/dlfcn.h (__RTLD_SECURE): Define.
55398         * elf/dl-load.c (_dl_map_object): Remove preloaded parameter.  Use
55399         mode & __RTLD_SECURE instead.
55400         (open_path): Rename preloaded parameter to secure.
55401         * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
55402         * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
55403         * elf/dl-deps.c (openaux): Likewise.
55404         * elf/rtld.c (struct map_args): Remove is_preloaded.
55405         (map_doit): Don't use it.
55406         (dl_main): Likewise.
55407         (do_preload): Use __RTLD_SECURE instead of is_preloaded.
55408         (dlmopen_doit): Add __RTLD_SECURE to mode bits.
55410 2010-09-09  Andreas Schwab  <schwab@redhat.com>
55412         * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
55413         (sysd-rules-targets): Remove duplicates.
55414         * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
55415         rtld-%.$o dependency.
55417 2010-10-18  Andreas Schwab  <schwab@redhat.com>
55419         * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
55420         _dl_map_object do it.
55422 2010-10-19  Ulrich Drepper  <drepper@gmail.com>
55424         * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
55425         fast fma builtins, define the macros in the C99 standard.
55426         (FP_FAST_FMAF): Likewise.
55427         (FP_FAST_FMAL): Likewise.
55428         * sysdeps/x86_64/bits/mathdef.h: Likewise.
55430         * bits/mathdef.h: Update copyright year.
55431         * sysdeps/powerpc/bits/mathdef.h: Likewise.
55433 2010-10-19  Michael Meissner  <meissner@linux.vnet.ibm.com>
55435         * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
55436         builtins, define the macros in the C99 standard.
55437         (FP_FAST_FMAF): Likewise.
55438         (FP_FAST_FMAL): Likewise.
55439         * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
55440         multiply/add.
55441         (FP_FAST_FMAF): Likewise.
55443 2010-10-15  Jakub Jelinek  <jakub@redhat.com>
55445         [BZ #3268]
55446         * math/libm-test.inc (fma_test): Some new testcases.
55447         * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
55448         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
55449         y and infinite z.  Do multiplication by C already in long double.
55450         * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
55451         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
55452         y and infinite z.  Do bitwise or of inexact bit into u.d.
55453         * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
55454         * sysdeps/i386/fpu/s_fmaf.S: Removed.
55455         * sysdeps/i386/fpu/s_fma.S: Removed.
55456         * sysdeps/i386/fpu/s_fmal.S: Removed.
55458 2010-10-16  Jakub Jelinek  <jakub@redhat.com>
55460         [BZ #3268]
55461         * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
55462         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
55463         computation is not scheduled after fetestexcept.  Fix value
55464         of minimum denormal long double.
55466 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
55468         [BZ #3268]
55469         * math/libm-test.inc (fma_test): Add some more tests.
55470         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
55471         correctly.
55473 2010-10-15  Andreas Schwab  <schwab@redhat.com>
55475         * scripts/data/localplt-s390-linux-gnu.data: New file.
55476         * scripts/data/localplt-s390x-linux-gnu.data: New file.
55478 2010-10-13  Jakub Jelinek  <jakub@redhat.com>
55480         [BZ #3268]
55481         * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
55482         * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
55483         instead of dbl-64.
55484         * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
55485         inlines.
55486         * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
55487         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
55488         if one of x and y is very large and the other is subnormal.
55489         * sysdeps/s390/fpu/s_fmaf.c: New file.
55490         * sysdeps/s390/fpu/s_fma.c: New file.
55491         * sysdeps/powerpc/fpu/s_fmaf.S: New file.
55492         * sysdeps/powerpc/fpu/s_fma.S: New file.
55493         * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
55494         * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
55495         * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
55497 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
55499         [BZ #3268]
55500         * math/libm-test.inc (fma_test): Add some more fmaf tests, add
55501         fma tests.
55502         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
55503         * sysdeps/ieee754/dbl-64/s_fma.c: New file.
55504         * sysdeps/i386/i686/multiarch/s_fma.c: Include
55505         sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
55506         * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
55507         * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
55508         * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
55510 2010-10-12  Ulrich Drepper  <drepper@redhat.com>
55512         [BZ #12078]
55513         * posix/regcomp.c (parse_branch): One more memory leak plugged.
55514         * posix/bug-regex31.input: Add test case.
55516 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
55518         * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
55519         * posix/bug-regex31.input: New file.
55521         [BZ #12078]
55522         * posix/regcomp.c (parse_branch): Free memory when allocation failed.
55523         (parse_sub_exp): Fix last change, use postorder.
55525         * posix/bug-regex31.c: New file.
55526         * posix/Makefile: Add rules to build and run bug-regex31.
55528         * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
55530         [BZ #12078]
55531         * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
55533         [BZ #12108]
55534         * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
55535         to have entries in sys_siglist.
55537         [BZ #12093]
55538         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
55539         be NULL.
55541 2010-10-07  Jakub Jelinek  <jakub@redhat.com>
55543         [BZ #3268]
55544         * math/libm-test.inc (fma_test): Add 2 fmaf tests.
55545         * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
55546         * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
55547         sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
55548         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
55549         * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
55550         * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
55551         * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
55552         * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
55553         * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
55554         * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
55555         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
55556         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
55557         * math/ftestexcept.c (fetestexcept): Likewise.
55558         * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
55559         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
55560         * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
55561         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
55562         * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
55563         * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
55564         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
55566 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
55568         [BZ #12107]
55569         * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
55570         newline.
55572 2010-10-06  Ulrich Drepper  <drepper@gmail.com>
55574         * string/bug-strstr1.c: New file.
55575         * string/Makefile: Add rules to build and run bug-strstr1.
55577 2010-10-05  Eric Blake  <eblake@redhat.com>
55579         [BZ #12092]
55580         * string/str-two-way.h (two_way_long_needle): Always clear memory
55581         when skipping input due to the shift table.
55583 2010-10-03  Ulrich Drepper  <drepper@gmail.com>
55585         [BZ #12005]
55586         * malloc/mcheck.c: Handle large requests.
55588         [BZ #12077]
55589         * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
55590         for strncmp and strncasecmp.
55591         * string/stratcliff.c: Add tests for strcmp and strncmp.
55592         * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
55594 2010-09-28  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
55596         * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
55597         __set_fpscr.
55599 2010-09-30  Andreas Jaeger  <aj@suse.de>
55601         * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
55602         (CGROUP_SUPER_MAGIC): Define.
55603         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
55604         Handle btrfs and cgroup file systems.
55605         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
55606         Likewise.
55608 2010-09-27  Luis Machado  <luisgpm@br.ibm.com>
55610         * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
55611         * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
55613 2010-09-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
55615         [BZ #12067]
55616         * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
55617         trying to locate the ELF header.
55619 2010-09-27  Andreas Schwab  <schwab@redhat.com>
55621         [BZ #11611]
55622         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
55623         Mask out sign-bit copies when constructing f_fsid.
55625 2010-09-24  Petr Baudis <pasky@suse.cz>
55627         * debug/stack_chk_fail_local.c: Add missing licence exception.
55628         * debug/warning-nop.c: Likewise.
55630 2010-09-15  Joseph Myers  <joseph@codesourcery.com>
55632         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
55633         implementing getdents64 using getdents syscall, set d_type if
55634         __ASSUME_GETDENTS32_D_TYPE.
55636 2010-09-16  Andreas Schwab  <schwab@redhat.com>
55638         * elf/dl-close.c (free_slotinfo, free_mem): Move to...
55639         * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
55641 2010-09-21  Ulrich Drepper  <drepper@redhat.com>
55643         [BZ #12037]
55644         * posix/unistd.h: Undo change of feature selection for ftruncate from
55645         2010-01-11.
55647 2010-09-20  Ulrich Drepper  <drepper@redhat.com>
55649         * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
55650         detection.
55652 2010-09-20  Andreas Schwab  <schwab@redhat.com>
55654         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
55655         fanotify_mark.
55656         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
55658 2010-09-14  Andreas Schwab  <schwab@redhat.com>
55660         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
55661         variables after CHECK_SP call.
55662         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
55664 2010-09-13  Andreas Schwab  <schwab@redhat.com>
55665             Ulrich Drepper  <drepper@redhat.com>
55667         * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
55668         re-relocationg ld.so.
55669         * elf/dl-support.c (_dl_non_dynamic_init): And here after the
55670         _dl_init_paths call.
55671         * elf/dl-load.c (_dl_init_paths).  Don't set GLRO(dl_init_all_dirs)
55672         here anymore.
55674 2010-09-14  Ulrich Drepper  <drepper@redhat.com>
55676         * resolv/res_init.c (__res_vinit): Count the default server we added.
55678 2010-09-08  Chung-Lin Tang  <cltang@codesourcery.com>
55679             Ulrich Drepper  <drepper@redhat.com>
55681         [BZ #11968]
55682         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
55683         (____longjmp_chk): Use %ebx for saving value across system call.
55684         Add unwind info.
55686 2010-09-06  Andreas Schwab  <schwab@redhat.com>
55688         * manual/Makefile: Don't mix pattern rules with normal rules.
55690 2010-09-05  Andreas Schwab  <schwab@linux-m68k.org>
55692         * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
55693         operation.
55694         * libio/iofdopen.c (_IO_new_fdopen): Likewise.
55695         * libio/iofopncook.c (_IO_cookie_init): Likewise.
55696         * libio/iovdprintf.c (_IO_vdprintf): Likewise.
55697         * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
55698         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
55699         Likewise.
55701 2010-09-04  Ulrich Drepper  <drepper@redhat.com>
55703         [BZ #11979]
55704         * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
55705         IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
55707 2010-09-02  Ulrich Drepper  <drepper@redhat.com>
55709         * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
55710         * sysdeps/x86_64/addmul_1.S: Likewise.
55711         * sysdeps/x86_64/lshift.S: Likewise.
55712         * sysdeps/x86_64/mul_1.S: Likewise.
55713         * sysdeps/x86_64/rshift.S: Likewise.
55714         * sysdeps/x86_64/sub_n.S: Likewise.
55715         * sysdeps/x86_64/submul_1.S: Likewise.
55717 2010-09-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
55719         This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
55720         Define __sched_param instead of SCHED_* and sched_param when
55721         <bits/sched.h> is included with __need_schedparam defined.
55722         * bits/sched.h [__need_schedparam]
55723         (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
55724         [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
55725         (__defined_schedparam): Define to 1.
55726         (__sched_param): New structure, identical to sched_param.
55727         (__need_schedparam): Undefine.
55729 2010-08-31  Mike Frysinger  <vapier@gentoo.org>
55731         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
55732         (epoll_create1): Declare.
55734         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
55736 2010-08-31  Andreas Schwab  <schwab@redhat.com>
55738         [BZ #7066]
55739         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
55740         shifting retval into place.
55742 2010-09-01  Ulrich Drepper  <drepper@redhat.com>
55744         * nis/rpcsvc/nis.h: Update copyright notice.
55745         * nis/rpcsvc/nis.x: Likewise.
55746         * nis/rpcsvc/nis_callback.h: Likewise.
55747         * nis/rpcsvc/nis_callback.x: Likewise.
55748         * nis/rpcsvc/nis_object.x: Likewise.
55749         * nis/rpcsvc/nis_tags.h: Likewise.
55750         * nis/rpcsvc/yp.h: Likewise.
55751         * nis/rpcsvc/yp.x: Likewise.
55752         * nis/rpcsvc/ypupd.h: Likewise.
55753         * nis/yp_xdr.c: Likewise.
55754         * nis/ypupdate_xdr.c: Likewise.
55756         * sunrpc/pm_getport.c (__libc_rpc_getport): New function.  This is
55757         mainly the body of pmap_getport.  Add parameters to specify timeouts.
55758         (pmap_getport): Use __libc_rpc_getport.
55759         * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
55760         * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
55761         * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
55763 2010-08-31  Andreas Schwab  <schwab@linux-m68k.org>
55765         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
55766         fanotify_mark.
55768 2010-08-27  Roland McGrath  <roland@redhat.com>
55770         * sysdeps/i386/i686/multiarch/Makefile
55771         (CFLAGS-varshift.c): New variable.
55773 2010-08-27  Ulrich Drepper  <drepper@redhat.com>
55775         * sysdeps/i386/i686/multiarch/varshift.S: File removed.
55776         * sysdeps/i386/i686/multiarch/varshift.c: New file.
55778         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
55780         * sysdeps/x86_64/strlen.S: Minimal code improvement.
55782 2010-08-26  H.J. Lu  <hongjiu.lu@intel.com>
55784         * sysdeps/x86_64/strlen.S: Unroll the loop.
55785         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
55786         strlen-sse2 strlen-sse2-bsf.
55787         * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
55788         __strlen_no_bsf if bit_Slow_BSF is set.
55789         (__strlen_sse42): Removed.
55790         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
55791         * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
55793 2010-08-25  Roland McGrath  <roland@redhat.com>
55795         * sysdeps/x86_64/multiarch/varshift.S: File removed.
55796         * sysdeps/x86_64/multiarch/varshift.c: New file.
55797         * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
55798         * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
55799         * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
55800         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
55802 2010-08-25  H.J. Lu  <hongjiu.lu@intel.com>
55804         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
55805         strlen-sse2 strlen-sse2-bsf.
55806         * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
55807         __strlen_sse2_bsf if bit_Slow_BSF is unset.
55808         (__strlen_sse2): Removed.
55809         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
55810         * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
55811         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
55812         bit_Slow_BSF for Atom.
55813         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
55814         (index_Slow_BSF): Define.
55815         (HAS_SLOW_BSF): Define.
55817 2010-08-25  Ulrich Drepper  <drepper@redhat.com>
55819         [BZ #10851]
55820         * resolv/res_init.c (__res_vinit): When no server address at all
55821         is given default to loopback.
55823 2010-08-24  Roland McGrath  <roland@redhat.com>
55825         * configure.in: Remove config-name.h generation.
55826         * configure: Regenerated.
55827         * config-name.in: File removed.
55828         * scripts/config-uname.sh: New file.
55829         * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
55830         ($(objdir)config-name.h): New target.
55832         * sunrpc/rpc_parse.h: Avoid nested comment.
55834 2010-08-24  Richard Henderson  <rth@redhat.com>
55835             Ulrich Drepper  <drepper@redhat.com>
55836             H.J. Lu  <hongjiu.lu@intel.com>
55838         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
55839         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
55840         * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
55841         Replace _mm_srli_si128 with __m128i_shift_right.  Replace
55842         _mm_alignr_epi8 with _mm_loadu_si128.
55843         * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
55844         * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
55845         (__m128i_shift_right): Removed.
55846         * sysdeps/i386/i686/multiarch/varshift.h: New file.
55847         * sysdeps/i386/i686/multiarch/varshift.S: New file.
55848         * sysdeps/x86_64/multiarch/varshift.h: New file.
55849         * sysdeps/x86_64/multiarch/varshift.S: New file.
55851 2010-08-21  Mike Frysinger  <vapier@gentoo.org>
55853         * configure.in: Move assembler checks to before sysdep dir checking.
55855 2010-08-20  Petr Baudis  <pasky@suse.cz>
55857         * LICENSES: Sync the sunrpc license.
55859 2010-08-19  Ulrich Drepper  <drepper@redhat.com>
55861         * sunrpc/auth_des.c: Update copyright notice once again.
55862         * sunrpc/auth_none.c: Likewise.
55863         * sunrpc/auth_unix.c: Likewise.
55864         * sunrpc/authdes_prot.c: Likewise.
55865         * sunrpc/authuxprot.c: Likewise.
55866         * sunrpc/bindrsvprt.c: Likewise.
55867         * sunrpc/clnt_gen.c: Likewise.
55868         * sunrpc/clnt_perr.c: Likewise.
55869         * sunrpc/clnt_raw.c: Likewise.
55870         * sunrpc/clnt_simp.c: Likewise.
55871         * sunrpc/clnt_tcp.c: Likewise.
55872         * sunrpc/clnt_udp.c: Likewise.
55873         * sunrpc/clnt_unix.c: Likewise.
55874         * sunrpc/des_crypt.c: Likewise.
55875         * sunrpc/des_soft.c: Likewise.
55876         * sunrpc/get_myaddr.c: Likewise.
55877         * sunrpc/getrpcport.c: Likewise.
55878         * sunrpc/key_call.c: Likewise.
55879         * sunrpc/key_prot.c: Likewise.
55880         * sunrpc/openchild.c: Likewise.
55881         * sunrpc/pm_getmaps.c: Likewise.
55882         * sunrpc/pm_getport.c: Likewise.
55883         * sunrpc/pmap_clnt.c: Likewise.
55884         * sunrpc/pmap_prot.c: Likewise.
55885         * sunrpc/pmap_prot2.c: Likewise.
55886         * sunrpc/pmap_rmt.c: Likewise.
55887         * sunrpc/rpc/auth.h: Likewise.
55888         * sunrpc/rpc/auth_unix.h: Likewise.
55889         * sunrpc/rpc/clnt.h: Likewise.
55890         * sunrpc/rpc/des_crypt.h: Likewise.
55891         * sunrpc/rpc/key_prot.h: Likewise.
55892         * sunrpc/rpc/netdb.h: Likewise.
55893         * sunrpc/rpc/pmap_clnt.h: Likewise.
55894         * sunrpc/rpc/pmap_prot.h: Likewise.
55895         * sunrpc/rpc/pmap_rmt.h: Likewise.
55896         * sunrpc/rpc/rpc.h: Likewise.
55897         * sunrpc/rpc/rpc_des.h: Likewise.
55898         * sunrpc/rpc/rpc_msg.h: Likewise.
55899         * sunrpc/rpc/svc.h: Likewise.
55900         * sunrpc/rpc/svc_auth.h: Likewise.
55901         * sunrpc/rpc/types.h: Likewise.
55902         * sunrpc/rpc/xdr.h: Likewise.
55903         * sunrpc/rpc_clntout.c: Likewise.
55904         * sunrpc/rpc_cmsg.c: Likewise.
55905         * sunrpc/rpc_common.c: Likewise.
55906         * sunrpc/rpc_cout.c: Likewise.
55907         * sunrpc/rpc_dtable.c: Likewise.
55908         * sunrpc/rpc_hout.c: Likewise.
55909         * sunrpc/rpc_main.c: Likewise.
55910         * sunrpc/rpc_parse.c: Likewise.
55911         * sunrpc/rpc_parse.h: Likewise.
55912         * sunrpc/rpc_prot.c: Likewise.
55913         * sunrpc/rpc_sample.c: Likewise.
55914         * sunrpc/rpc_scan.c: Likewise.
55915         * sunrpc/rpc_scan.h: Likewise.
55916         * sunrpc/rpc_svcout.c: Likewise.
55917         * sunrpc/rpc_tblout.c: Likewise.
55918         * sunrpc/rpc_util.c: Likewise.
55919         * sunrpc/rpc_util.h: Likewise.
55920         * sunrpc/rpcinfo.c: Likewise.
55921         * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
55922         * sunrpc/rpcsvc/key_prot.x: Likewise.
55923         * sunrpc/rpcsvc/klm_prot.x: Likewise.
55924         * sunrpc/rpcsvc/mount.x: Likewise.
55925         * sunrpc/rpcsvc/nfs_prot.x: Likewise.
55926         * sunrpc/rpcsvc/nlm_prot.x: Likewise.
55927         * sunrpc/rpcsvc/rex.x: Likewise.
55928         * sunrpc/rpcsvc/rstat.x: Likewise.
55929         * sunrpc/rpcsvc/rusers.x: Likewise.
55930         * sunrpc/rpcsvc/sm_inter.x: Likewise.
55931         * sunrpc/rpcsvc/spray.x: Likewise.
55932         * sunrpc/rpcsvc/yppasswd.x: Likewise.
55933         * sunrpc/rtime.c: Likewise.
55934         * sunrpc/svc.c: Likewise.
55935         * sunrpc/svc_auth.c: Likewise.
55936         * sunrpc/svc_authux.c: Likewise.
55937         * sunrpc/svc_raw.c: Likewise.
55938         * sunrpc/svc_run.c: Likewise.
55939         * sunrpc/svc_simple.c: Likewise.
55940         * sunrpc/svc_tcp.c: Likewise.
55941         * sunrpc/svc_udp.c: Likewise.
55942         * sunrpc/svc_unix.c: Likewise.
55943         * sunrpc/svcauth_des.c: Likewise.
55944         * sunrpc/xcrypt.c: Likewise.
55945         * sunrpc/xdr.c: Likewise.
55946         * sunrpc/xdr_array.c: Likewise.
55947         * sunrpc/xdr_float.c: Likewise.
55948         * sunrpc/xdr_mem.c: Likewise.
55949         * sunrpc/xdr_rec.c: Likewise.
55950         * sunrpc/xdr_ref.c: Likewise.
55951         * sunrpc/xdr_sizeof.c: Likewise.
55952         * sunrpc/xdr_stdio.c: Likewise.
55954         * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
55955         handling.
55957 2010-08-19  Andreas Schwab  <schwab@redhat.com>
55959         * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
55961 2010-08-19  Luis Machado  <luisgpm@br.ibm.com>
55963         * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
55964         * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
55965         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
55966         * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
55967         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
55968         * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
55969         * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
55970         * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
55971         * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
55972         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
55973         * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
55974         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
55975         * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
55976         * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
55978 2010-07-26  Anton Blanchard  <anton@samba.org>
55980         * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
55981         * malloc/arena.c (heap_trim): Likewise.
55983 2010-08-16  Ulrich Drepper  <drepper@redhat.com>
55985         * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
55986         here.  Not...
55987         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
55988         * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
55990 2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
55992         * sysdeps/i386/elf/Makefile: New file.
55994 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
55996         * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
55997         from fanotify_init.
55998         * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
55999         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
56001 2010-08-15  Ulrich Drepper  <drepper@redhat.com>
56003         * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
56004         of strncasecmp_l.
56005         * sysdeps/multiarch/strcmp.S: Likewise.
56007 2010-08-14  Ulrich Drepper  <drepper@redhat.com>
56009         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
56010         strncase_l-nonascii.
56011         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
56012         Add strncase_l-ssse3.
56013         * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
56014         * sysdeps/x86_64/strcmp.S: Likewise.
56015         * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
56016         * sysdeps/x86_64/multiarch/strncase_l.S: New file.
56017         * sysdeps/x86_64/strncase.S: New file.
56018         * sysdeps/x86_64/strncase_l-nonascii.c: New file.
56019         * sysdeps/x86_64/strncase_l.S: New file.
56020         * string/Makefile (strop-tests): Add strncasecmp.
56021         * string/test-strncasecmp.c: New file.
56023         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
56024         warning.
56026         * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
56027         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
56029 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
56031         * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
56033 2010-08-12  Ulrich Drepper  <drepper@redhat.com>
56035         * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
56036         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
56037         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
56039 2010-05-01  Alan Modra  <amodra@gmail.com>
56041         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
56042         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
56043         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
56044         * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
56045         * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
56046         tidying.  Don't tail-call __sigjmp_save for static lib.
56047         * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
56048         save location.
56049         (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
56050         (CALL_MCOUNT): Add eh info, and nop after bl.
56051         (TAIL_CALL_SYSCALL_ERROR): New macro.
56052         (PSEUDO_RET): Use it.
56053         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
56054         Correct save location of integer regs and cr.
56055         (_dl_profile_resolve): Correct cr save location.  Delete nops
56056         after bl when SHARED.  Reduce cfi size a little by better
56057         placement of cfi directives.
56058         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
56059         make a stack frame.  Instead use parm save area as a temp.
56060         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
56061         make a stack frame.  Use TAIL_CALL_SYSCALL_ERROR.
56062         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
56063         Don't make a stack frame for parent, use parm save area.
56064         Increase child stack frame to 112 bytes.  Don't save unused reg,
56065         and adjust reg usage.  Set up cfi on error recovery and
56066         epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
56067         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
56068         (__makecontext): Add dummy nop after jump to exit.
56069         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
56070         Use correct parm save area and cr save, reduce stack frame.
56071         Correct cfi for possible PSEUDO_RET frame setup.
56072         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
56073         Branch to local label emitted by PSEUDO_RET rather than
56074         __syscall_error.
56076 2010-08-12  Andreas Schwab  <schwab@redhat.com>
56078         [BZ #11904]
56079         * locale/programs/locale.c (print_assignment): New function.
56080         (show_locale_vars): Use it.
56082 2010-08-11  Ulrich Drepper  <drepper@redhat.com>
56084         * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
56085         field.
56086         (struct statfs64): Likewise.
56087         (_STATFS_F_FLAGS): Define.
56088         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
56089         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
56090         Don't define if __ASSUME_STATFS_F_FLAGS is defined.
56091         (ST_VALID): Define locally.
56092         (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
56093         __statvfs_getflags, use the provided value.
56094         * sysdeps/unix/sysv/linux/kernel-features.h: Define
56095         __ASSUME_STATFS_F_FLAGS.
56097         * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
56099         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
56100         Add sys/fanotify.h.
56101         * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
56102         fanotify_mask for GLIBC_2.13.
56103         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
56104         fanotify_init and fanotify_mark.
56105         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
56106         * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
56108         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
56109         Add prlimit.
56110         * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
56111         prlimit64 for GLIBC_2.13.
56112         * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
56113         prlimit64.
56114         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
56115         syscall.
56116         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
56117         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
56118         * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
56119         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
56120         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.  Also
56121         add prlimit alias.
56122         * sysdeps/unix/sysv/linux/prlimit.c: New file.
56124         [BZ #11903]
56125         * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
56126         Patch by Evgeni Bikov <bikovevg@iitp.ru>.
56128         * nss/Makefile: Add rules to build and run tst-nss-test1.
56129         * shlib-versions: Add entry for libnss_test1.
56130         * nss/nss_test1.c: New file.
56131         * nss/tst-nss-test1.c: New file.
56133         * nss/nsswitch.c (__nss_database_custom): Define new variable.
56134         (__nss_configure_lookup): Set appropriate entry in
56135         __nss_configure_lookup to true.
56136         * nss/nsswitch.h: Define enum with indeces of databases in
56137         databases and __nss_database_custom arrays.  Declare
56138         __nss_database_custom.
56139         * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
56140         to avoid using nscd when custom rules are installed.
56141         * nss/getXXbyYY_r.c: Likewise.
56142         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
56144         * nss/nss_files/files-parse.c: Whitespace fixes.
56146 2010-08-09  Ulrich Drepper  <drepper@redhat.com>
56148         [BZ #11883]
56149         * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
56150         * posix/fnmatch_loop.c: Likewise.
56152 2010-07-17  Andi Kleen  <ak@linux.intel.com>
56154         * sysdeps/i386/i386-mcount.S (__fentry__): Define.
56155         * sysdeps/x86_64/_mcount.S (__fentry__): Define.
56156         * stdlib/Versions (__fentry__): Add for GLIBC 2.13
56157         * Versions.def [GLIBC_2.13]: Add.
56159 2010-08-06  Ulrich Drepper  <drepper@redhat.com>
56161         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
56162         Also fail if tpwd after pwuid call is NULL.
56164 2010-07-31  Samuel Thibault  <samuel.thibault@ens-lyon.org>
56166         * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
56167         when converting to ms.
56169 2010-06-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
56171         * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
56172         EOPNOTSUPP errors with ENOTTY.
56173         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
56174         EOPNOTSUPP errors with ENOTTY.
56176 2010-07-31  Ulrich Drepper  <drepper@redhat.com>
56178         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
56179         Add strcasecmp_l-ssse3.
56180         * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
56181         strcasecmp.
56182         * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
56183         * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
56184         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
56186 2010-07-30  Ulrich Drepper  <drepper@redhat.com>
56188         * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
56190         * string/Makefile (strop-tests): Add strcasecmp.
56191         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
56192         strcasecmp_l-nonascii.
56193         (gen-as-const-headers): Add locale-defines.sym.
56194         * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
56195         * sysdeps/x86_64/strcasecmp.S: New file.
56196         * sysdeps/x86_64/strcasecmp_l.S: New file.
56197         * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
56198         * sysdeps/x86_64/locale-defines.sym: New file.
56199         * string/test-strcasecmp.c: New file.
56201         * string/test-strcasestr.c: Test both ends of the range of characters.
56202         * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
56204 2010-07-29  Roland McGrath  <roland@redhat.com>
56206         [BZ #11856]
56207         * manual/locale.texi (Yes-or-No Questions): Fix example code.
56209 2010-07-27  Ulrich Drepper  <drepper@redhat.com>
56211         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
56212         for ld.so.
56214 2010-07-27  Andreas Schwab  <schwab@redhat.com>
56216         * manual/memory.texi (Malloc Tunable Parameters): Document
56217         M_PERTURB.
56219 2010-07-26  Roland McGrath  <roland@redhat.com>
56221         [BZ #11840]
56222         * configure.in (-fgnu89-inline check): Set and substitute
56223         gnu89_inline, not libc_cv_gnu89_inline.
56224         * configure: Regenerated.
56225         * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
56227 2010-07-26  Ulrich Drepper  <drepper@redhat.com>
56229         * string/test-strnlen.c: New file.
56230         * string/Makefile (strop-tests): Add strnlen.
56231         * string/tester.c (test_strnlen): Add a few more test cases.
56232         * string/tst-strlen.c: Better error reporting.
56234         * sysdeps/x86_64/strnlen.S: New file.
56236 2010-07-24  Ulrich Drepper  <drepper@redhat.com>
56238         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
56239         lower-latency instructions.
56241 2010-07-23  Ulrich Drepper  <drepper@redhat.com>
56243         * string/test-strcasestr.c: New file.
56244         * string/test-strstr.c: New file.
56245         * string/Makefile (strop-tests): Add strstr and strcasestr.
56246         * string/str-two-way.h: Don't undefine MAX.
56247         * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
56249 2010-07-21  Andreas Schwab  <schwab@redhat.com>
56251         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
56252         strcasestr-nonascii.
56253         (CFLAGS-strcasestr-nonascii.c): Define.
56254         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
56255         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
56256         Remove unused attribute.
56258 2010-07-20  Roland McGrath  <roland@redhat.com>
56260         * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
56261         dl_hwcap_mask as well as dl_hwcap.  Without this, dsocaps matching in
56262         ld.so.cache was broken.  With it, there is no way to disable dsocaps
56263         like LD_HWCAP_MASK can disable hwcaps.
56265 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
56267         * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
56269 2010-07-16  Ulrich Drepper  <drepper@redhat.com>
56271         * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
56272         call in strcasestr.
56273         * sysdeps/x86_64/multiarch/strcasestr.c: Declare
56274         __strcasestr_sse42_nonascii.
56275         * sysdeps/x86_64/multiarch/Makefile: Add rules to build
56276         strcasestr-nonascii.c.
56277         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
56279 2010-06-15  Luis Machado  <luisgpm@br.ibm.com>
56281         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
56282         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
56283         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
56284         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
56286 2010-07-09  Ulrich Drepper  <drepper@redhat.com>
56288         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
56289         fcntl.
56291 2010-07-06  Andreas Schwab  <schwab@redhat.com>
56293         [BZ #11577]
56294         * elf/dl-version.c (match_symbol): Don't pass NULL occation to
56295         dl_signal_cerror.
56297 2010-07-06  Ulrich Drepper  <drepper@redhat.com>
56299         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
56300         _PC_PIPE_BUF using F_GETPIPE_SZ.
56302 2010-07-05  Roland McGrath  <roland@redhat.com>
56304         * manual/arith.texi (Rounding Functions): Fix rint description
56305         implicit in round description.
56307 2010-07-02  Ulrich Drepper  <drepper@redhat.com>
56309         * elf/Makefile: Fix linking for a few tests to make recent linker
56310         happy.
56312 2010-06-30  Andreas Schwab  <schwab@redhat.com>
56314         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
56315         $(common-objpfx)libc_nonshared.a.
56317 2010-06-21  Luis Machado  <luisgpm@br.ibm.com>
56319         * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
56320         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
56321         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
56322         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
56323         * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
56324         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
56325         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
56326         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
56327         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
56328         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
56329         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
56330         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
56331         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
56332         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
56333         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
56334         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
56335         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
56336         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
56337         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
56338         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
56339         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
56340         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
56341         * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
56342         * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
56343         * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
56344         * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
56345         * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
56346         * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
56347         * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
56348         * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
56349         * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
56350         * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
56351         * sysdeps/powerpc/powerpc32/power7/Implies: New file.
56352         * sysdeps/powerpc/powerpc64/power7/Implies: New file.
56353         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
56354         * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
56355         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
56356         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
56357         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
56358         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
56359         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
56360         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
56361         * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
56362         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
56363         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
56364         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
56365         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
56366         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
56368 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
56370         * debug/memmove_chk.c (__memmove_chk): Renamed to ...
56371         (MEMMOVE_CHK): ...this.  Default to __memmove_chk.
56372         * string/memmove.c (memmove): Renamed to ...
56373         (MEMMOVE): ...this.  Default to memmove.
56374         * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
56375         * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
56376         (END_CHK): Define.
56377         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
56378         memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
56379         mempcpy-ssse3-back memmove-ssse3-back.
56380         * sysdeps/x86_64/multiarch/bcopy.S: New file .
56381         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
56382         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
56383         * sysdeps/x86_64/multiarch/memcpy.S: New file.
56384         * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
56385         * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
56386         * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
56387         * sysdeps/x86_64/multiarch/memmove.c: New file.
56388         * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
56389         * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
56390         * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
56391         * sysdeps/x86_64/multiarch/mempcpy.S: New file.
56392         * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
56393         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
56394         Define.
56395         (index_Fast_Copy_Backward): Define.
56396         (HAS_ARCH_FEATURE): Define.
56397         (HAS_FAST_REP_STRING): Define.
56398         (HAS_FAST_COPY_BACKWARD): Define.
56400 2010-06-21  Andreas Schwab  <schwab@redhat.com>
56402         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
56403         Restore proper fallback handling.
56405 2010-06-19  Ulrich Drepper  <drepper@redhat.com>
56407         [BZ #11701]
56408         * posix/group_member.c (__group_member): Correct checking loop.
56410         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
56411         OOM in getpwuid_r correctly.  Return error number when the caller
56412         should return, otherwise -1.
56413         (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
56414         call returning > 0 value.
56415         * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
56417 2010-06-07  Andreas Schwab  <schwab@redhat.com>
56419         * dlfcn/Makefile: Remove explicit dependencies on libc.so and
56420         libc_nonshared.a from targets in modules-names.
56422 2010-06-02  Kirill A. Shutemov  <kirill@shutemov.name>
56424         * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
56425         requires it.
56427 2010-06-10  Luis Machado  <luisgpm@br.ibm.com>
56429         * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
56430         * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
56431         * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
56432         * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
56434 2010-06-02  Andreas Schwab  <schwab@redhat.com>
56436         * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
56438 2010-06-14  Ulrich Drepper  <drepper@redhat.com>
56440         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
56441         and F_GETPIPE_SZ.
56442         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
56443         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
56444         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
56445         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
56446         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
56447         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
56449 2010-06-14  Roland McGrath  <roland@redhat.com>
56451         * manual/libc.texinfo (@copying): Change to GFDL v1.3.
56453 2010-06-07  Jakub Jelinek  <jakub@redhat.com>
56455         * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
56456         __REDIRECT followed by __THROW.
56457         * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
56458         * posix/getopt.h (getopt): Likewise.
56460 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
56462         * hurd/lookup-at.c (__file_name_lookup_at): Accept
56463         AT_SYMLINK_FOLLOW in AT_FLAGS.  Fail with EINVAL if both
56464         AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
56465         in AT_FLAGS.
56466         * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
56467         * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
56469 2010-05-28  Luis Machado  <luisgpm@br.ibm.com>
56471         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
56473 2010-05-26  H.J. Lu  <hongjiu.lu@intel.com>
56475         [BZ #11640]
56476         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
56477         Properly check family and model.
56479 2010-05-26  Takashi Yoshii  <takashi.yoshii.zj@renesas.com>
56481         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
56483 2010-05-24  Luis Machado  <luisgpm@br.ibm.com>
56485         * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
56487 2010-05-21  Ulrich Drepper  <drepper@redhat.com>
56489         * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
56490         symbol reference.
56492 2010-05-19  Andreas Schwab  <schwab@redhat.com>
56494         * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
56495         symbol reference.
56497 2010-05-21  Andreas Schwab  <schwab@redhat.com>
56499         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
56500         and internal_recvmmsg.
56501         * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
56502         * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
56503         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
56504         * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
56506         * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
56507         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
56508         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
56510 2010-05-20  Andreas Schwab  <schwab@redhat.com>
56512         * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
56514 2010-05-17  Luis Machado  <luisgpm@br.ibm.com>
56516         POWER7 optimizations.
56517         * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
56518         * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
56520 2010-05-19  Ulrich Drepper  <drepper@redhat.com>
56522         * version.h: Update for 2.13 development version.
56524 2010-05-12  Andrew Stubbs  <ams@codesourcery.com>
56526         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
56527         exceptions.  Return 0.
56529 2010-05-07  Roland McGrath  <roland@redhat.com>
56531         * elf/ldconfig.c (main): Add a const.
56533 2010-05-06  Ulrich Drepper  <drepper@redhat.com>
56535         * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
56536         (args_options): Add no-idn option.
56537         (ahosts_keys_int): Add idn_flags to ai_flags.
56538         (parse_option): Handle 'i' option to clear idn_flags.
56540         * malloc/malloc.c (_int_free): Possible race in the most recently
56541         added check.  Only act on the data if no current modification
56542         happened.
56544 See ChangeLog.17 for earlier changes.