From 518a5ddbf15d50a254c732a80d5907ef8878abe0 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 15 Apr 2015 18:49:45 -0400 Subject: Split all OS backends into their own folders. --- new/unix/alloc.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 new/unix/alloc.c (limited to 'new/unix/alloc.c') diff --git a/new/unix/alloc.c b/new/unix/alloc.c new file mode 100644 index 0000000..33482b2 --- /dev/null +++ b/new/unix/alloc.c @@ -0,0 +1,33 @@ +// 7 april 2015 +#include +#include "uipriv_unix.h" + +void *uiAlloc(size_t size, const char *type) +{ + void *out; + + out = g_malloc0(size); + if (options.debugLogAllocations) + fprintf(stderr, "%p alloc %s\n", out, type); + return out; +} + +void *uiRealloc(void *p, size_t size, const char *type) +{ + void *out; + + if (p == NULL) + return uiAlloc(size, type); + // TODO fill with 0s + out = g_realloc(p, size); + if (options.debugLogAllocations) + fprintf(stderr, "%p realloc %p\n", p, out); + return out; +} + +void uiFree(void *p) +{ + g_free(p); + if (options.debugLogAllocations) + fprintf(stderr, "%p free\n", p); +} -- cgit v1.2.3