about summary refs log tree commit diff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* [BZ #14583]Jeff Law2012-09-141-1/+1
| | | | * sysdeps/pthread/pthread.h: Fix prototype of __sigsetjmp.
* Remove unused __rtld_lock_init_recursive macroH.J. Lu2012-09-131-1/+1
|
* Make strtod respect the rounding mode (bug 14518).Joseph Myers2012-09-121-1/+1
|
* Fix description of carg branch cut (bug 13542)John Tobey2012-09-071-4/+4
|
* Use www.gnu.org as example hostname in manual (bug 10014).Joseph Myers2012-09-071-5/+5
|
* Fix pointers between nodes in manual (bug 10038).Joseph Myers2012-09-071-5/+5
|
* Mention BZ #14545 in NEWSH.J. Lu2012-09-061-1/+1
|
* Use crtbeginT.o to statically link programsH.J. Lu2012-09-061-1/+1
|
* tile: Add BZ to Changelog and update NEWSChris Metcalf2012-09-061-3/+3
|
* Fix botched NEWSJeff Law2012-09-051-2/+3
|
* [BZ#14510]Jeff Law2012-09-051-1/+1
| | | | | | | | | | | * 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.
* Return requested size for malloc_usable_size when MALLOC_CHECK_ > 0Siddhesh Poyarekar2012-09-051-4/+4
| | | | | | | | | | | [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.
* Improve C++ header location detection (bug 13966)Allan McRae2012-09-061-3/+3
|
* Fix iogetdelim.c (latent) integer overflow (bug 9914).Joseph Myers2012-09-041-4/+4
|
* Use the first element of GOT for ld.so addressesH.J. Lu2012-09-021-1/+1
| | | | | | | | [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 ().
* Check for gawk >= 3.0 (bug 13412)Allan McRae2012-09-021-4/+4
|
* Fix sem_post race (bug 14532).Joseph Myers2012-08-311-1/+1
|
* Use LD_SO to set $ld_so_name/$ld_so_versionH.J. Lu2012-08-291-1/+1
|
* Don't make ttyname* fail if proc filesystem is not availableSiddhesh Poyarekar2012-08-291-1/+5
| | | | | | | | | The ttyname and ttyname_r functions on Linux now fall back to searching for the tty file descriptor in /dev/pts or /dev if /proc is not available. This allows creation of chroots without the procfs mounted on /proc. Fixes BZ #14516.
* update NEWSMike Frysinger2012-08-271-4/+4
|
* Fix sign of zero on strtod underflow (bug 14519).Joseph Myers2012-08-271-1/+2
|
* Fix strtod rounding (bug 3479).Joseph Myers2012-08-271-3/+3
|
* Fix strtod integer/buffer overflow (bug 14459).Joseph Myers2012-08-271-1/+1
|
* Add --disable-build-nscd configure option.Roland McGrath2012-08-221-0/+2
|
* BZ#13696: Add --disable-nscd configure option.Roland McGrath2012-08-221-3/+6
|
* Move bug number to correct section of NEWS.Joseph Myers2012-08-221-2/+2
|
* * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_rJeff Law2012-08-221-1/+1
| | | | if the family is PF_UNSPEC.
* Add versions of wcscpy, wcschr, wcsrchr for power6/power7.Will Schmidt2012-08-221-2/+5
| | | | | | | | | | | | | | Initially based on the versions found in wcsmbs/* ; these files have been changed by hand unrolling, and adding some additional variables to allow some read-ahead to occur, which then relieves some of the wait-for-increment/wait-for-load/wait-for-compare-results pressure that was slowing down every iteration through the while-loop. For 64-bit Power7, These changes give an approx 20% throughput boost for the wcschr and wcsrchr functions; and approx 40% boost for the wcscpy function. 32-bit improvements appear to be slightly better with ~ %30 and ~ %45 respectively. Results for Power6 closely match those for power7.
* Detect EOL on-the-fly in strstr, strcasestr and memmem.Maxim Kuvyrkov2012-08-211-2/+5
|
* Add bug number to NEWS.Joseph Myers2012-08-191-3/+3
|
* Fix segmentation fault in strncasecmp for i686Liubov Dmitrieva2012-08-151-2/+2
| | | | | | | | | | | | 2012-08-15 Liubov Dmitrieva <liubov.dmitrieva@gmail.com> [BZ #14195] * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix segmentation fault for a case of two empty input strings. * string/test-strncasecmp.c (check1): Renamed to... (bz12205): ...this. (bz14195): Add new testcase for two empty input strings and N > 0. (test_main): Call new testcase, adapt for renamed function.
* Add testcase for BZ#14090 - md5/sha512 with large sizesAndreas Jaeger2012-08-151-3/+3
|
* Add more fixed bug numbers to NEWS.Joseph Myers2012-08-141-2/+3
|
* [BZ #13939]Jeff Law2012-08-101-2/+2
| | | | | | | | | | | | | * malloc.c/arena.c (reused_arena): New parameter, avoid_arena. When avoid_arena is set, don't retry in the that arena. Pick the next one, whatever it might be. (arena_get2): New parameter avoid_arena, pass through to reused_arena. (arena_lock): Pass in new parameter to arena_get2. * malloc/malloc.c (__libc_memalign): Pass in new parameter to arena_get2. (__libc_malloc): Unify retrying after main arena failure with __libc_memalign version. (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
* Avoid DWARF definition DIE on ifunc symbolsH.J. Lu2012-08-091-2/+2
|
* Remove pre-2.6.16 Linux kernel support.Joseph Myers2012-08-071-1/+1
|
* Add more fixed bug numbers to NEWS.Joseph Myers2012-08-031-1/+1
|
* Remove pre-2.6.0 Linux kernel support (bug 13717).Joseph Myers2012-08-031-2/+5
|
* Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.Marek Polacek2012-08-021-2/+2
|
* Add SystemTap static probes to the runtime linker. [BZ #14298]Gary Benson2012-07-271-2/+5
|
* Rename __secure_getenv to secure_getenvFlorian Weimer2012-07-251-0/+4
|
* Set up errno properly for yn.Marek Polacek2012-07-251-1/+1
|
* S/390: Add support for STT_GNU_IFUNC symbols.Andreas Krebbel2012-07-191-0/+5
| | | | | | Add support for STT_GNU_IFUNC symbols and the new R_390_IRELATIVE relocation. Provide optimized version of memcpy, memset, and memcmp for z10 and z196.
* Remove TLS configure checks.Marek Polacek2012-07-171-1/+1
|
* Fix ynl return value with LDBL_MIN.Marek Polacek2012-07-121-1/+2
|
* Fix LOG_MAKEPRI to agree with BSDAndreas Schwab2012-07-101-1/+1
|
* Get rid of ASM_GLOBAL_DIRECTIVE.Marek Polacek2012-07-101-1/+1
|
* Fix clog, clog10 spurious underflow exceptions (bug 14337).Joseph Myers2012-07-091-1/+1
|
* Update NEWSAndreas Schwab2012-07-071-1/+1
|
* Fix tanf underflow close to pi/4 (bug 14154).Joseph Myers2012-07-061-1/+1
|