aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-09-08Properly handle fencepost with MALLOC_ALIGN_MASKhjl/pr14562/masterH.J. Lu2-2/+10
2012-09-07Add "shopt -s nullglob" to check-local-headers.shH.J. Lu2-1/+6
2012-09-07Check if deriv->steps is NULL before freeing itH.J. Lu2-3/+9
2012-09-07Rename LDFLAGS-XXX to LDLIBS-XXX for -lstdc++H.J. Lu2-6/+19
2012-09-07Rename LDFLAGS-XXX to LDLIBS-XXX for -lstdc++H.J. Lu2-1/+6
2012-09-07Remove gnu/stubs.h dependency on soversions.mkH.J. Lu2-1/+6
2012-09-07Use www.gnu.org as example hostname in manual/examples/inetcli.c.Joseph Myers2-1/+7
2012-09-07Cleanup code duplication in malloc on fallback to use another arenaSiddhesh Poyarekar3-75/+43
Break the fallback code to try another arena into a separate function for readability.
2012-09-07Fix description of carg branch cut (bug 13542)John Tobey3-7/+13
2012-09-07Use www.gnu.org as example hostname in manual (bug 10014).Joseph Myers3-6/+10
2012-09-07Fix pointers between nodes in manual (bug 10038).Joseph Myers3-6/+12
2012-09-06Restore GL(dl_initial_dtv)H.J. Lu2-4/+8
2012-09-06Remove _dl_initial_dtvH.J. Lu3-12/+27
* csu/libc-tls.c (static_dtv): Renamed to ... (_dl_static_dtv): This. Make it global. (_dl_initial_dtv): Removed. (__libc_setup_tls): Updated. * elf/dl-tls.c (DL_INITIAL_DTV): New macro. (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with DL_INITIAL_DTV.
2012-09-06Synchronize with linux/elf.h.Petr Machata2-0/+16
Add new ARM and s390 note constants e.g. NT_*.
2012-09-06Mention BZ #14545 in NEWSH.J. Lu1-1/+1
2012-09-06Always check dtv before freeing dtv[-1]H.J. Lu3-2/+9
2012-09-06Add tst-cancel21-static.cH.J. Lu3-2/+11
2012-09-06Use crtbeginT.o to statically link programsH.J. Lu3-5/+20
2012-09-06tile: fix type of prfpregset_t in <sys/procfs.h>Chris Metcalf2-1/+3
The previous dummy definition (as type int) was fine in general, since tile doesn't have floating-point registers, but it confused gdb's configure, leading to later compile errors. This change also makes prfpregset_t parallel to prgregset_t, which seems like generally the right thing regardless of the non-existence of the actual registers :-)
2012-09-06tile: Add BZ to Changelog and update NEWSChris Metcalf2-3/+4
2012-09-06Fix strtod test for values above maximum for IBM long double.Joseph Myers3-3/+23
2012-09-06tile: BZ#14237: fix __tls_get_addr bug initializing new modulesChris Metcalf2-0/+6
We were missing a check for TLS_DTV_UNALLOCATED; if set, we need to go to the slow path.
2012-09-06S/390: Fix optimized mem* running on 31 bit kernels.Andreas Krebbel6-7/+19
2012-09-05Fix botched NEWSJeff Law1-2/+3
2012-09-05 [BZ#14510]Jeff Law10-9/+37
* locales/es_DO: Fix LC_NUMERIC decimal_point and thousands_sep. * locales/es_GT: Likewise. * locales/es_HN: Likewise. * locales/es_MX: Likewise. * locales/es_NI: Likewise. * locales/es_PA: Likewise. * locales/es_PR: Likewise. * locales/es_SV: Likewise.
2012-09-05Recognize new sparc hwcap bits.David S. Miller4-3/+12
* sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE, HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define. * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27. * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new entries.
2012-09-05Update sparc ULPs for recently added math tests.David S. Miller2-0/+16
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-09-05* malloc/arena.c: Fold copyright years.Alexandre Oliva4-5/+8
* malloc/mcheck.c, malloc/memusage.c: Likewise.
2012-09-05* malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.Alexandre Oliva2-2/+6
2012-09-05* manual/contrib.texi (Contributors): Fix typo. Complete entry.Alexandre Oliva2-2/+7
2012-09-05Don't change no_dyn_threshold on mallopt failureAlexandre Oliva2-2/+9
* malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not change internal state upon failure.
2012-09-05Fix typos in malloc/.Alexandre Oliva3-4/+10
* malloc/mcheck.c (mcheck_check_all): Fix typo. * malloc/memusage.c (mmap): Likewise. (mmap64, mremap): Likewise. Adjust name in comment.
2012-09-05Fix typos in commentsSiddhesh Poyarekar4-5/+11
* libio/fileops.c: Fix typos in comments. * libio/oldfileops.c: Likewise. * libio/wfileops.c: Likewise.
2012-09-05Fixed minor typo in ChangeLogSiddhesh Poyarekar1-1/+1
2012-09-05Return requested size for malloc_usable_size when MALLOC_CHECK_ > 0Siddhesh Poyarekar6-9/+100
[BZ #1349] malloc_usable_size returns the usable size in an allocated chunk, which may be >= the requested size. In the case of MALLOC_CHECK_ being exported to > 0 however, only the requested size is usable, since a magic value is written at the end of the request size to trap writes beyond request bounds. Hence, when MALLOC_CHECK_ is exported to > 0, malloc_usable_size() should return the request size.
2012-09-05Increase timeout for stdlib/tst-strtod-overflowAndreas Schwab2-0/+5
2012-09-06Improve C++ header location detection (bug 13966)Allan McRae4-15/+18
2012-09-05Use LDBL_MIN_EXP to distinguish Intel and Motorola extended float formatAndreas Schwab2-17/+14
2012-09-05Correctly handle Motorola extended float format in tst-strtod-roundAndreas Schwab3-20/+492
2012-09-04Use sparcv8 GMP routines when building 32-bit sparcv9.David S. Miller4-0/+9
* sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file. * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file. * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
2012-09-04stdlib/tst-secure-getenv.c: whitespace-only changes in commentsFlorian Weimer2-5/+7
2012-09-04stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID failuresFlorian Weimer2-2/+8
2012-09-04Fix iogetdelim.c (latent) integer overflow (bug 9914).Joseph Myers3-5/+13
2012-09-03Update libm-test-ulpsAndreas Jaeger3-0/+14
2012-09-03Add optimized sinf and cosf routines for x86 and x86-64Liubov Dmitrieva13-7/+2403
* sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines): Add s_sinf-sse2, s_conf-sse2. * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file. * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file. * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file. * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file. * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros for using routine as __sinf_ia32. Use macro for function declaration and weak_alias. * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros for using routine as __cosf_ia32. Use macro for function declaration and weak_alias. * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright. * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright. * sysdeps/x86_64/fpu/s_sinf.S: New file. * sysdeps/x86_64/fpu/s_cosf.S: New file. * sysdeps/x86_64/fpu/libm-test-ulps: Update. * math/libm-test.inc (cos_test): Add more test cases. (sin_test): Likewise. (sincos_test): Likewise.
2012-09-03S/390: Make IFUNC optimized mem* functions hidden.Andreas Krebbel3-6/+17
2012-09-02Use the first element of GOT for ld.so addressesH.J. Lu3-36/+20
[BZ #14538] * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the first element of the GOT. (elf_machine_load_address): Return the difference between the runtime address of _DYNAMIC and elf_machine_dynamic ().
2012-09-02Check for gawk >= 3.0 (bug 13412)Allan McRae4-49/+77
2012-09-01Remove __ASSUME_POSIX_CPU_TIMERS.Joseph Myers8-323/+54
2012-08-31Fix sem_post race (bug 14532).Joseph Myers5-6/+101