about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* IBM long double mechanical changes to support little-endianAlan Modra2013-10-041-0/+16
| | | | | | | | | | | | | | | | | | | | | | | http://sourceware.org/ml/libc-alpha/2013-07/msg00001.html This patch starts the process of supporting powerpc64 little-endian long double in glibc. IBM long double is an array of two ieee doubles, so making union ibm_extended_long_double reflect this fact is the correct way to access fields of the doubles. * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ibm_extended_long_double): Define as an array of ieee754_double. (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete. * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS. * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise. * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
* Hardcode locale archive page size as 4096.Joseph Myers2013-10-031-0/+3
|
* Remove locale file dependence on int32_t alignment.Joseph Myers2013-10-031-0/+10
|
* BZ #431 Fix manual of strncat/wcsncat.Ondřej Bílka2013-10-031-0/+5
|
* Fix erroneous (and circular) implied pattern rule for linkobj/libc.so.Brooks Moses2013-10-031-0/+6
| | | | | | | | | | | | | | | | | [BZ #15915] As described in the bug, the pattern rule for lib%.so files in Makerules includes linkobj/libc.so as a dependency. However, the explicit rule for linkobj/libc.so is in the top-level Makefile. Thus, the subdirectory makefiles that include Makerules end up with an erroneous makefile pattern rule for linkobj/libc.so that includes itself as a dependency. The result is make warnings whenever rules for other .so files are resolved -- and, on occasion, actual makefile failures when a race condition causes the implicit rule to actually be used. This patch moves the explicit rules for linkobj/libc.so into Makerules to clear up this problem. It also elaborates a couple of comments that I'd initially found confusing.
* maint: correct changelogEric Blake2013-10-021-5/+5
| | | | | | * ChangeLog: List my previous commit in correct location. Signed-off-by: Eric Blake <eblake@redhat.com>
* malloc: Add pvalloc test.Will Newton2013-10-021-0/+5
| | | | | | | | | ChangeLog: 2013-10-02 Will Newton <will.newton@linaro.org> * malloc/Makefile: Add tst-pvalloc. * malloc/tst-pvalloc.c: New file.
* malloc/tst-valloc.c: Improve test coverage and use test-skeleton.c.Will Newton2013-10-021-0/+5
| | | | | | | | | ChangeLog: 2013-10-02 Will Newton <will.newton@linaro.org> * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and improve test coverage.
* malloc: Add posix_memalign test.Will Newton2013-10-021-0/+5
| | | | | | | | | ChangeLog: 2013-10-02 Will Newton <will.newton@linaro.org> * malloc/Makefile: Add tst-posix_memalign. * malloc/tst-posix_memalign.c: New file.
* glob: silence -Wattribute warningsEric Blake2013-10-011-0/+5
| | | | | | | | | | | Colin Watson reported that some versions of gcc warn about attribute leaf used on a static function, since it has no effect on anything but external functions. * posix/glob.c (next_brace_sub, prefix_array, collated_compare): Use __THROWNL rather than __THROW on static functions. Signed-off-by: Eric Blake <eblake@redhat.com>
* Add AArch64 relocation definitions.Petr Machata2013-09-301-0/+84
|
* Properly cache the result from looking up the nss database configAndreas Schwab2013-09-301-0/+8
|
* tst-fanotify: fix styleMike Frysinger2013-09-281-1/+5
| | | | | Reported-by: Andreas Jaeger <aj@suse.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* don't use Bash-specific ${parameter/pattern/string} expansionPatrick 'P. J.' McDermott2013-09-281-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | sysdeps/unix/make-syscalls.sh and sysdeps/unix/Makefile use GNU Bash's ${parameter/pattern/string} parameter expansion. Non-Bash shells (e.g. dash or BusyBox ash when built with CONFIG_ASH_BASH_COMPAT disabled) don't support this expansion syntax. So glibc will fail to build when $(SHELL) expands to a path that isn't provided by Bash. An example build failure: for dir in [...]; do \ test -f $dir/syscalls.list && \ { sysdirs='[...]' \ asm_CPP='gcc -c -I[...] -D_LIBC_REENTRANT -include include/libc-symbols.h -DASSEMBLER -g -Wa,--noexecstack -E -x assembler-with-cpp' \ /bin/sh sysdeps/unix/make-syscalls.sh $dir || exit 1; }; \ test $dir = sysdeps/unix && break; \ done > [build-dir]/sysd-syscallsT sysdeps/unix/make-syscalls.sh: line 273: syntax error: bad substitution This patch simply replaces the three instances of the Bash-only syntax in these files with an echo and sed command substitution. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Revert "Remove references to non-existent content items in install.texi"Allan McRae2013-09-281-5/+0
| | | | | | | | This reverts commit 583c76a7ce305d24e0625a22caed317b3e001d91 which breaks building info pages during "make install". Conflicts: ChangeLog
* Move ChangeLog entrySiddhesh Poyarekar2013-09-271-9/+0
|
* Remove references to non-existent content items in install.texiAllan McRae2013-09-271-0/+5
| | | | | These were left in when the installation section was split out into its own file.
* Use the mutex member of the argumen in __libc_lock_*_recursiveSiddhesh Poyarekar2013-09-271-0/+9
|
* Add ChangeLog entry for new sysdeps/sh/stackguard-macros.h.Kaz Kojima2013-09-271-0/+4
|
* Faster strrchr.Ondřej Bílka2013-09-261-0/+9
|
* PowerPC: Fix POINTER_CHK_GUARD thread register for PPC64Adhemerval Zanella2013-09-251-0/+5
|
* conformtest: Clean up expectations for POSIX for sched.h.Joseph Myers2013-09-251-0/+13
|
* Fix tst-long-dbl-fphex swprintf length calculation.Olivier Langlois2013-09-241-0/+5
|
* conformtest: Clean up expectations for POSIX for pthread.h.Joseph Myers2013-09-241-0/+14
|
* Add localedef --big-endian and --little-endian options.Joseph Myers2013-09-241-0/+39
|
* Update to canonical freemanuals.texi file.Roland McGrath2013-09-241-0/+6
|
* sysdeps/mach/hurd/i386/tls.h: Remove TLS_INIT_TP_EXPENSIVE.Will Newton2013-09-241-0/+5
| | | | | | | | | | | This define was removed from the rest of the tree eight years ago. ChangeLog: 2013-09-24 Will Newton <will.newton@linaro.org> * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove macro.
* Make locale archive hash function architecture-independent.Joseph Myers2013-09-231-0/+5
|
* manual: Fix a typo in `POSIX Threads' sectionMaciej W. Rozycki2013-09-231-0/+4
|
* Check for integer overflow in cache size computation in strcollSiddhesh Poyarekar2013-09-231-0/+6
| | | | | | | | | | | strcoll is implemented using a cache for indices and weights of collation sequences in the strings so that subsequent passes do not have to search through collation data again. For very large string inputs, the cache size computation could overflow. In such a case, use the fallback function that does not cache indices and weights of collation sequences. Fixes CVE-2012-4412.
* Fall back to non-cached sequence traversal and comparison on malloc failSiddhesh Poyarekar2013-09-231-0/+10
| | | | | | | | strcoll currently falls back to alloca if malloc fails, resulting in a possible stack overflow. This patch implements sequence traversal and comparison without caching indices and rules. Fixes CVE-2012-4424.
* BZ #15754: Fix test case for ARM.Carlos O'Donell2013-09-231-0/+5
| | | | | | | Statically built binaries use __pointer_chk_guard_local, while dynamically built binaries use __pointer_chk_guard. Provide the right definition depending on the test case we are building.
* BZ #15754: CVE-2013-4788Carlos O'Donell2013-09-231-0/+30
| | | | | | | | | | | | The pointer guard used for pointer mangling was not initialized for static applications resulting in the security feature being disabled. The pointer guard is now correctly initialized to a random value for static applications. Existing static applications need to be recompiled to take advantage of the fix. The test tst-ptrguard1-static and tst-ptrguard1 add regression coverage to ensure the pointer guards are sufficiently random and initialized to a default value.
* [BZ #15859] Fix memory leak in _dl_map_object_depsVinitha Vijayan2013-09-211-0/+5
|
* Make __ffs hiddenAndreas Schwab2013-09-201-0/+10
|
* Mention malloc probes in the NEWS file.Alexandre Oliva2013-09-201-0/+2
| | | | | | for ChangeLog * NEWS: Mention malloc probes.
* Add malloc probes for sbrk and heap resizing.Alexandre Oliva2013-09-201-0/+8
| | | | | | | | | | | | for ChangeLog * malloc/arena.c (new_heap): New memory_heap_new probe. (grow_heap): New memory_heap_more probe. (shrink_heap): New memory_heap_less probe. (heap_trim): New memory_heap_free probe. * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe. (systrim): New memory_sbrk_less probe. * manual/probes.texi: Document them.
* Add catch-all alloc retry probe.Alexandre Oliva2013-09-201-0/+3
| | | | | | | for ChangeLog * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe. * manual/probes.texi: Document it.
* Add probes for malloc retries.Alexandre Oliva2013-09-201-0/+8
| | | | | | | | | | | | for ChangeLog * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe. (__libc_realloc): Add memory_realloc_retry probe. (__libc_memalign): Add memory_memalign_retry probe. (__libc_valloc): Add memory_valloc_retry probe. (__libc_pvalloc): Add memory_pvalloc_retry probe. (__libc_calloc): Add memory_calloc_retry probe. * manual/probes.texi: Document them.
* Add probes for malloc arena changes.Alexandre Oliva2013-09-201-0/+9
| | | | | | | | | | | | | for ChangeLog * malloc/arena.c (get_free_list): Add probe memory_arena_reuse_free_list. (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait and memory_arena_reuse. (arena_get2) [!PER_THREAD]: Likewise. * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe memory_arena_reuse_realloc. * manual/probes.texi: Document them.
* Add probes for all changes to malloc options.Alexandre Oliva2013-09-201-0/+5
| | | | | | | | | for ChangeLog * malloc/malloc.c (__libc_free): Add memory_mallopt_free_dyn_thresholds probe. (__libc_mallopt): Add multiple memory_mallopt probes. * manual/probes.texi: Document them.
* Add first set of memory probes.Alexandre Oliva2013-09-201-0/+9
| | | | | | | | | | | for ChangeLog * malloc/malloc.c: Include stap-probe.h. (__libc_mallopt): Add memory_mallopt probe. * malloc/arena.c (_int_new_arena): Add memory_arena_new probe. * manual/probes.texi: New. * manual/Makefile (chapters): Add probes. * manual/threads.texi: Set next node.
* Copy-edit NEWS and fixup ChangeLog entries.Carlos O'Donell2013-09-201-1/+2
|
* Update Changelog and NEWSChris Leonard2013-09-201-0/+6
|
* Consolidate common code into macrosSiddhesh Poyarekar2013-09-191-0/+13
| | | | | Consolidated common Taylor series polynomials into macros in s_sin.c to make it a bit cleaner.
* Fix buffer overrun in strtod_lLiubov Dmitrieva2013-09-191-0/+4
|
* Add benchmark inputs for sincosSiddhesh Poyarekar2013-09-191-0/+3
|
* New test cases for sin and cos for multiple precision fallbackSiddhesh Poyarekar2013-09-191-0/+3
|
* Consolidate sin/cos table lookup codeSiddhesh Poyarekar2013-09-191-0/+14
|
* Consolidate sin/cos computation for large inputsSiddhesh Poyarekar2013-09-191-0/+5
|