aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2019-11-08 11:46:04 -0800
committerChristopher Ferris <cferris@google.com>2019-11-08 11:46:04 -0800
commit8aa48b4f72047846afcfff8a5ecada188c84623f (patch)
tree50a050087e5ad4c9d1b649619626d3560603870c /src
parentf435ef65df8205396a2b6a117f941c2a9f830a5c (diff)
downloadplatform_external_jemalloc_new-8aa48b4f72047846afcfff8a5ecada188c84623f.tar.gz
platform_external_jemalloc_new-8aa48b4f72047846afcfff8a5ecada188c84623f.tar.bz2
platform_external_jemalloc_new-8aa48b4f72047846afcfff8a5ecada188c84623f.zip
Change je_iterate to je_malloc_iterate.
Match the name that bionic expects. Test: Compiles. Change-Id: I2ad4a6e7ee6c2831cc4b1c5b834c2d5334164d3b
Diffstat (limited to 'src')
-rw-r--r--src/android_je_iterate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android_je_iterate.c b/src/android_je_iterate.c
index ca776e00..b21bfe97 100644
--- a/src/android_je_iterate.c
+++ b/src/android_je_iterate.c
@@ -17,7 +17,7 @@
static pthread_mutex_t malloc_disabled_lock = PTHREAD_MUTEX_INITIALIZER;
static bool malloc_disabled_tcache;
-int je_iterate(uintptr_t base, size_t size,
+int je_malloc_iterate(uintptr_t base, size_t size,
void (*callback)(uintptr_t ptr, size_t size, void* arg), void* arg) {
size_t pagesize = getpagesize();
tsd_t* tsd = tsd_fetch_min();