From 50a227058a8d72f1fb885458b882cedb0e0d7f79 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 9 Apr 2015 22:38:11 -0400 Subject: Changed the allocation logging from a compile-time setting to the first initialization option. --- new/alloc_darwin.m | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'new/alloc_darwin.m') diff --git a/new/alloc_darwin.m b/new/alloc_darwin.m index df29566..83a948e 100644 --- a/new/alloc_darwin.m +++ b/new/alloc_darwin.m @@ -11,9 +11,8 @@ void *uiAlloc(size_t size, const char *type) out = malloc(size); NSCAssert(out != NULL, @"out of memory in uiAlloc()"); memset(out, 0, size); -#ifdef uiLogAllocations - fprintf(stderr, "%p alloc %s\n", out, type); -#endif + if (options.debugLogAllocations) + fprintf(stderr, "%p alloc %s\n", out, type); return out; } @@ -26,9 +25,8 @@ void *uiRealloc(void *p, size_t size, const char *type) out = realloc(p, size); NSCAssert(out != NULL, @"out of memory in uiRealloc()"); // TODO zero the extra memory -#ifdef uiLogAllocations - fprintf(stderr, "%p realloc %p\n", p, out); -#endif + if (options.debugLogAllocations) + fprintf(stderr, "%p realloc %p\n", p, out); return out; } @@ -37,7 +35,6 @@ void uiFree(void *p) if (p == NULL) return; free(p); -#ifdef uiLogAllocations - fprintf(stderr, "%p free\n", p); -#endif + if (options.debugLogAllocations) + fprintf(stderr, "%p free\n", p); } -- cgit v1.2.3