Export get_malloc_leak_info and free_malloc_leak_info, used by ddms.
Bug: 11156955 Change-Id: I84043f7b2c0ea0e336f6e2af3b7adb2f8488bd53
This commit is contained in:
parent
a23ee2cf8e
commit
7c9923d05f
1 changed files with 5 additions and 2 deletions
|
@ -113,7 +113,9 @@ static int hash_entry_compare(const void* arg1, const void* arg2) {
|
|||
* not include heap overhead
|
||||
* "*backtraceSize" is set to the maximum number of entries in the back trace
|
||||
*/
|
||||
extern "C" __LIBC_HIDDEN__ void get_malloc_leak_info(uint8_t** info, size_t* overallSize,
|
||||
|
||||
// Exported for use by ddms.
|
||||
extern "C" void get_malloc_leak_info(uint8_t** info, size_t* overallSize,
|
||||
size_t* infoSize, size_t* totalMemory, size_t* backtraceSize) {
|
||||
// don't do anything if we have invalid arguments
|
||||
if (info == NULL || overallSize == NULL || infoSize == NULL ||
|
||||
|
@ -182,7 +184,8 @@ extern "C" __LIBC_HIDDEN__ void get_malloc_leak_info(uint8_t** info, size_t* ove
|
|||
dlfree(list);
|
||||
}
|
||||
|
||||
extern "C" __LIBC_HIDDEN__ void free_malloc_leak_info(uint8_t* info) {
|
||||
// Exported for use by ddms.
|
||||
extern "C" void free_malloc_leak_info(uint8_t* info) {
|
||||
dlfree(info);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue