aboutsummaryrefslogtreecommitdiffstats
path: root/libc/bionic/malloc_debug_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/bionic/malloc_debug_common.cpp')
-rw-r--r--libc/bionic/malloc_debug_common.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/bionic/malloc_debug_common.cpp b/libc/bionic/malloc_debug_common.cpp
index e0d439acf..fbf62f639 100644
--- a/libc/bionic/malloc_debug_common.cpp
+++ b/libc/bionic/malloc_debug_common.cpp
@@ -387,6 +387,9 @@ static void malloc_init_impl() {
case 10:
so_name = "libc_malloc_debug_leak.so";
break;
+ case 15:
+ so_name = "libefence.so";
+ break;
case 20:
// Quick check: debug level 20 can only be handled in emulator.
if (!qemu_running) {
@@ -473,6 +476,9 @@ static void malloc_init_impl() {
case 10:
InitMalloc(malloc_impl_handle, &malloc_dispatch_table, "chk");
break;
+ case 15:
+ InitMalloc(malloc_impl_handle, &malloc_dispatch_table, "efence");
+ break;
case 20:
InitMalloc(malloc_impl_handle, &malloc_dispatch_table, "qemu_instrumented");
break;