diff options
author | Andy McFadden <fadden@android.com> | 2009-07-21 15:25:23 -0700 |
---|---|---|
committer | Andy McFadden <fadden@android.com> | 2009-07-21 15:44:23 -0700 |
commit | 39f3745cf30efe38482ffead1c32f4e62f6fe32e (patch) | |
tree | c7ae2dcba7dd282d787961a641720dce723172ea /libc/bionic/malloc_leak.c | |
parent | b56b5659b3996e98c2060f168d1cff1474e77d2a (diff) | |
download | bionic-39f3745cf30efe38482ffead1c32f4e62f6fe32e.zip bionic-39f3745cf30efe38482ffead1c32f4e62f6fe32e.tar.gz bionic-39f3745cf30efe38482ffead1c32f4e62f6fe32e.tar.bz2 |
Restore malloc debug.
Some libc changes were preventing the initialization call from being made.
The basic problem appears to be that libc_init_common.c is only built once,
and it's only built for the non-debug libc.
Diffstat (limited to 'libc/bionic/malloc_leak.c')
-rw-r--r-- | libc/bionic/malloc_leak.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/libc/bionic/malloc_leak.c b/libc/bionic/malloc_leak.c index df09424..305f954 100644 --- a/libc/bionic/malloc_leak.c +++ b/libc/bionic/malloc_leak.c @@ -91,7 +91,14 @@ static pthread_mutex_t gAllocationsMutex = PTHREAD_MUTEX_INITIALIZER; static HashTable gHashTable; // ============================================================================= -// output fucntions +// log functions +// ============================================================================= + +#define debug_log(format, ...) \ + __libc_android_log_print(ANDROID_LOG_DEBUG, "malloc_leak", (format), ##__VA_ARGS__ ) + +// ============================================================================= +// output functions // ============================================================================= static int hash_entry_compare(const void* arg1, const void* arg2) @@ -257,12 +264,6 @@ struct AllocationEntry { uint32_t guard; }; -// ============================================================================= -// log funtions -// ============================================================================= - -#define debug_log(format, ...) \ - __libc_android_log_print(ANDROID_LOG_DEBUG, "malloc_leak", (format), ##__VA_ARGS__ ) // ============================================================================= // Hash Table functions |