diff options
author | Jeff Law <law@redhat.com> | 2012-08-10 09:37:04 -0600 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2012-08-10 09:37:52 -0600 |
commit | bf51f568f19bc063e62904d18b77d7e449a6a44f (patch) | |
tree | e99e04dc162edd4a04d184a3e4f9a1eeeba287e0 /NEWS | |
parent | m68k: fix type of pltenter member in audit interface (diff) | |
download | glibc-bf51f568f19bc063e62904d18b77d7e449a6a44f.tar.gz glibc-bf51f568f19bc063e62904d18b77d7e449a6a44f.tar.bz2 glibc-bf51f568f19bc063e62904d18b77d7e449a6a44f.zip |
[BZ #13939]
* 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.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,8 +9,8 @@ Version 2.17 * The following bugs are resolved with this release: - 6778, 6808, 13717, 14042, 14166, 14150, 14151, 14154, 14157, 14173, 14283, - 14298, 14307, 14328, 14331, 14336, 14337, 14347, 14349 + 6778, 6808, 13717, 13939, 14042, 14166, 14150, 14151, 14154, 14157, 14173, + 14283, 14298, 14307, 14328, 14331, 14336, 14337, 14347, 14349 * Support for STT_GNU_IFUNC symbols added for s390 and s390x. Optimized versions of memcpy, memset, and memcmp added for System z10 and |