diff options
author | Christopher Ferris <cferris@google.com> | 2019-05-24 02:49:09 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-05-24 02:49:09 -0700 |
commit | 0c26c9efd73461e43a857f2841927830487024ba (patch) | |
tree | b13f308ba7ff641e1c8c8a39d8746e3c2b000176 /libc/malloc_debug/malloc_debug.cpp | |
parent | c6e146fc895349eceb5e91cad4cdbe0df75a568c (diff) | |
parent | b7bf3abf7d89cdc695c2cc97560f4b55550fc343 (diff) |
Merge "Disable malloc debug when asan enabled." am: 497d7169d4 am: 39677eae59
am: b7bf3abf7d
Change-Id: Ifa1ca2976101dc332409dd49225366d1ae825da0
Diffstat (limited to 'libc/malloc_debug/malloc_debug.cpp')
-rw-r--r-- | libc/malloc_debug/malloc_debug.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc/malloc_debug/malloc_debug.cpp b/libc/malloc_debug/malloc_debug.cpp index 53fcead01..c030d5429 100644 --- a/libc/malloc_debug/malloc_debug.cpp +++ b/libc/malloc_debug/malloc_debug.cpp @@ -252,12 +252,19 @@ static void* InitHeader(Header* header, void* orig_pointer, size_t size) { return g_debug->GetPointer(header); } +extern "C" void __asan_init() __attribute__((weak)); + bool debug_initialize(const MallocDispatch* malloc_dispatch, bool* zygote_child, const char* options) { if (zygote_child == nullptr || options == nullptr) { return false; } + if (__asan_init != 0) { + error_log("malloc debug cannot be enabled alongside ASAN"); + return false; + } + InitAtfork(); g_zygote_child = zygote_child; |