From 700860a4351a67cd143c8b4f6501dcd74165045d Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Tue, 21 Aug 2012 11:41:01 +0200 Subject: [PATCH] memblock_t is now a double-linked list so we can show where data was allocated which hasn't been freed --- util.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/util.c b/util.c index 54fe212..5f66b2d 100644 --- a/util.c +++ b/util.c @@ -33,8 +33,12 @@ struct memblock_t { const char *file; unsigned int line; unsigned int byte; + struct memblock_t *next; + struct memblock_t *prev; }; +static struct memblock_t *mem_start = NULL; + void *util_memory_a(unsigned int byte, unsigned int line, const char *file) { struct memblock_t *info = malloc(sizeof(struct memblock_t) + byte); void *data =(void*)((unsigned char*)info+sizeof(struct memblock_t)); @@ -42,6 +46,11 @@ void *util_memory_a(unsigned int byte, unsigned int line, const char *file) { info->line = line; info->byte = byte; info->file = file; + info->prev = NULL; + info->next = mem_start; + if (mem_start) + mem_start->prev = info; + mem_start = info; util_debug("MEM", "allocation: % 8u (bytes) address 0x%08X @ %s:%u\n", byte, data, file, line); mem_at++; @@ -53,6 +62,7 @@ void *util_memory_a(unsigned int byte, unsigned int line, const char *file) { void util_memory_d(void *ptrn, unsigned int line, const char *file) { void *data = NULL; struct memblock_t *info = NULL; + if (!ptrn) return; data = (void*)((unsigned char *)ptrn-sizeof(struct memblock_t)); info = (struct memblock_t*)data; @@ -61,10 +71,19 @@ void util_memory_d(void *ptrn, unsigned int line, const char *file) { mem_db += info->byte; mem_dt++; + if (info->prev) + info->prev->next = info->next; + if (info->next) + info->next->prev = info->prev; + if (info == mem_start) + mem_start = info->next; + free(data); } void util_meminfo() { + struct memblock_t *info; + if (!opts_memchk) return; @@ -79,6 +98,13 @@ void util_meminfo() { (mem_ab - mem_db), (mem_at - mem_dt) ); + + for (info = mem_start; info; info = info->next) { + util_debug("MEM", "%u bytes lost at %s:%u\n", + info->byte, + info->file, + info->line); + } } /* -- 2.39.2