summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_debug_memory.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-02-24 15:44:09 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-02-24 15:44:09 +0000
commit8f3c1cddaa9c307f70fca0e1a917397a7d85c238 (patch)
tree9455f805238e3c654146e2c5088cd2d5da32eda6 /src/gallium/auxiliary/util/u_debug_memory.c
parentd6677fd9bc19050c18e0509815123990455b785b (diff)
util: Don't use 0-sized arrays.
Not supported by MSVC.
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug_memory.c')
-rw-r--r--src/gallium/auxiliary/util/u_debug_memory.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_memory.c b/src/gallium/auxiliary/util/u_debug_memory.c
index 758541c282..7623cb9398 100644
--- a/src/gallium/auxiliary/util/u_debug_memory.c
+++ b/src/gallium/auxiliary/util/u_debug_memory.c
@@ -73,7 +73,9 @@ struct debug_memory_header
const char *file;
unsigned line;
const char *function;
+#if DEBUG_MEMORY_STACK
struct debug_stack_frame backtrace[DEBUG_MEMORY_STACK];
+#endif
size_t size;
unsigned magic;
@@ -140,7 +142,9 @@ debug_malloc(const char *file, unsigned line, const char *function,
hdr->size = size;
hdr->magic = DEBUG_MEMORY_MAGIC;
+#if DEBUG_MEMORY_STACK
debug_backtrace_capture(hdr->backtrace, 0, DEBUG_MEMORY_STACK);
+#endif
ftr = footer_from_header(hdr);
ftr->magic = DEBUG_MEMORY_MAGIC;
@@ -296,7 +300,9 @@ debug_memory_end(unsigned long start_no)
debug_printf("%s:%u:%s: %u bytes at %p not freed\n",
hdr->file, hdr->line, hdr->function,
hdr->size, ptr);
+#if DEBUG_MEMORY_STACK
debug_backtrace_dump(hdr->backtrace, DEBUG_MEMORY_STACK);
+#endif
total_size += hdr->size;
}