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 /malloc/malloc.h | |
parent | 00d4e2ea3503e6de0f198cd65343f287a51f04db (diff) | |
download | glibc-ca135f824b1dbaf43e4a673de7725db76a51b714.tar.gz glibc-ca135f824b1dbaf43e4a673de7725db76a51b714.tar.xz 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 'malloc/malloc.h')
-rw-r--r-- | malloc/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.h b/malloc/malloc.h index f65e18aa82..d95a3157a3 100644 --- a/malloc/malloc.h +++ b/malloc/malloc.h @@ -83,7 +83,7 @@ struct mallinfo int smblks; /* number of fastbin blocks */ int hblks; /* number of mmapped regions */ int hblkhd; /* space in mmapped regions */ - int usmblks; /* maximum total allocated space */ + int usmblks; /* always 0, preserved for backwards compatibility */ int fsmblks; /* space available in freed fastbin blocks */ int uordblks; /* total allocated space */ int fordblks; /* total free space */ |