aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2014-10-09 22:02:00 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-09 22:02:00 +0000
commit7f4618cbc8bda2bd98f1361c55db63b16f2b9b50 (patch)
tree5ccb511ce0c2fedebe9887cfb0f673958d6d655d /libc
parente5d4fc39e3f26920f3413070d1175a0afd14a66f (diff)
parentc9734d24d92f4737f5ab3808c77d816a1b084582 (diff)
downloadbionic-7f4618cbc8bda2bd98f1361c55db63b16f2b9b50.tar.gz
am c9734d24: Re-add dlmalloc for 32 bit.
* commit 'c9734d24d92f4737f5ab3808c77d816a1b084582': Re-add dlmalloc for 32 bit.
Diffstat (limited to 'libc')
-rw-r--r--libc/bionic/dlmalloc.h9
-rw-r--r--libc/bionic/ndk_cruft.cpp6
2 files changed, 12 insertions, 3 deletions
diff --git a/libc/bionic/dlmalloc.h b/libc/bionic/dlmalloc.h
index ef7881436..2f53c1bc4 100644
--- a/libc/bionic/dlmalloc.h
+++ b/libc/bionic/dlmalloc.h
@@ -34,11 +34,14 @@
#define malloc_getpagesize getpagesize()
-/* dlmalloc_usable_size was exposed in the NDK, so change the name
- * of the function on 32 bit architectures.
- */
#if !defined(__LP64__)
+/* dlmalloc_usable_size and dlmalloc were exposed in the NDK and some
+ * apps actually used them. Rename these functions out of the way
+ * for 32 bit architectures so that ndk_cruft.cpp can expose
+ * compatibility shims with these names.
+ */
#define dlmalloc_usable_size dlmalloc_usable_size_real
+#define dlmalloc dlmalloc_real
#endif
/* Export two symbols used by the VM. */
diff --git a/libc/bionic/ndk_cruft.cpp b/libc/bionic/ndk_cruft.cpp
index 829e8f3b6..760081717 100644
--- a/libc/bionic/ndk_cruft.cpp
+++ b/libc/bionic/ndk_cruft.cpp
@@ -320,4 +320,10 @@ extern "C" size_t dlmalloc_usable_size(void* ptr) {
return malloc_usable_size(ptr);
}
+// Older versions of appportable used dlmalloc directly instead of malloc,
+// so export this compatibility shim that simply calls malloc.
+extern "C" void* dlmalloc(size_t size) {
+ return malloc(size);
+}
+
#endif