diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-02-19 17:07:04 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-02-19 17:07:04 +0100 |
commit | ca135f824b1dbaf43e4a673de7725db76a51b714 (patch) | |
tree | 487c36e49482479f9f9a88094cf8896827dadc88 /ChangeLog | |
parent | 00d4e2ea3503e6de0f198cd65343f287a51f04db (diff) | |
download | glibc-ca135f824b1dbaf43e4a673de7725db76a51b714.tar glibc-ca135f824b1dbaf43e4a673de7725db76a51b714.tar.gz glibc-ca135f824b1dbaf43e4a673de7725db76a51b714.tar.bz2 glibc-ca135f824b1dbaf43e4a673de7725db76a51b714.zip |
malloc: Remove max_total_mem member form struct malloc_par
Also note that sumblks in struct mallinfo is always 0.
No functional change.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,5 +1,16 @@ 2016-02-19 Florian Weimer <fweimer@redhat.com> + * malloc/malloc.c (__libc_mallinfo): Update comment. + (struct malloc_par): Remove max_total_mem member, it was always 0. + (int_mallinfo): Store 0 into usmblks (no functional change). + * malloc/hooks.c (struct malloc_state): Document that + max_total_mem is always 0. + * malloc/malloc.h (struct mallinfo): Dcoument that usmblks is + always 0. + * manual/memory.texi (Statistics of Malloc): Likewise. + +2016-02-19 Florian Weimer <fweimer@redhat.com> + * malloc/malloc.c (sysmalloc): Do not update arena_max. * malloc/arena.c (arena_max): Remove. (heap_trim, _int_new_arena): Do not update arena_max. |