platform_bionic/libc/upstream-dlmalloc
Christopher Ferris fee09e556f Return total footprint, not high water mark.
The mallinfo usmblks value returned by dlmalloc is a little misleading.
It's not the current max, it's the historical high water mark. This
leads to dumpsys meminfo producing native memory numbers that don't add up.
Change this to the real total footprint, not this high water mark.

Bug: 17265653

(cherry pick from commit f4ada9c9ce)

Change-Id: I2fba10285859dccfe8331063c9be14cc169f2d91
2014-10-13 12:45:35 -07:00
..
malloc.c Return total footprint, not high water mark. 2014-10-13 12:45:35 -07:00
malloc.h Upgrade to dlmalloc 2.8.6. 2012-08-29 18:18:29 -07:00
README.txt Upgrade to dlmalloc 2.8.6. 2012-08-29 18:18:29 -07:00

This directory contains malloc/free routines implemented by Doug Lea
(aka dlmalloc). You should not edit these files directly. Make fixes
upstream and then pull down the new version of the file.

This code is imported from: ftp://g.oswego.edu/pub/misc/
It is currently version 2.8.6.

Currently there are very minor modifications that are signified with:
BEGIN android-changed: change description
END android-changed