6f517cd7a1
I have no idea why I used the iterate name internally which is completely unlike every other function name. Change this to match everyone else so that it's now malloc_iterate everywhere. This is probably the last chance to change this before mainline modules begin, so make everything consistent. Test: Compiles, unit tests passes. Change-Id: I56d293377fa0fe1a3dc3dd85d6432f877cc2003c
28 lines
567 B
Text
28 lines
567 B
Text
LIBC_MALLOC_HOOKS {
|
|
global:
|
|
hooks_aligned_alloc;
|
|
hooks_calloc;
|
|
hooks_finalize;
|
|
hooks_free;
|
|
hooks_free_malloc_leak_info;
|
|
hooks_get_malloc_leak_info;
|
|
hooks_initialize;
|
|
hooks_mallinfo;
|
|
hooks_malloc;
|
|
hooks_malloc_backtrace;
|
|
hooks_malloc_disable;
|
|
hooks_malloc_enable;
|
|
hooks_malloc_info;
|
|
hooks_malloc_iterate;
|
|
hooks_malloc_usable_size;
|
|
hooks_mallopt;
|
|
hooks_memalign;
|
|
hooks_posix_memalign;
|
|
hooks_pvalloc;
|
|
hooks_realloc;
|
|
hooks_valloc;
|
|
hooks_write_malloc_leak_info;
|
|
|
|
local:
|
|
*;
|
|
};
|