diff options
author | Matt Johnston <matt@ucc.asn.au> | 2017-05-26 00:19:39 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2017-05-26 00:19:39 +0800 |
commit | 65baa71b586bfbcda04cab2e4da29abeee4ba7a6 (patch) | |
tree | 95e4c73ae427733272c4b5ff9b7d0fbc2fb43c18 /dbmalloc.h | |
parent | b8fa71284709e4cbaef7398dc9fc17155f8d2f7a (diff) |
linked list dbmalloc now
add non-free m_malloc_free_epoch() argument for leak detection
--HG--
branch : fuzz
Diffstat (limited to 'dbmalloc.h')
-rw-r--r-- | dbmalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,6 +11,6 @@ void m_free_direct(void* ptr); #define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0) void m_malloc_set_epoch(unsigned int epoch); -void m_malloc_free_epoch(unsigned int epoch); +void m_malloc_free_epoch(unsigned int epoch, int dofree); #endif /* DBMALLOC_H_ */ |