summaryrefslogtreecommitdiff
path: root/new/unix/alloc.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-15 18:49:45 -0400
committerPietro Gagliardi <[email protected]>2015-04-15 18:49:45 -0400
commit518a5ddbf15d50a254c732a80d5907ef8878abe0 (patch)
tree48cf259f98994e4570e65c389fcd9824272884ad /new/unix/alloc.c
parent50ae3ca045e7f5f5744043df0a4506e2f6930bb1 (diff)
Split all OS backends into their own folders.
Diffstat (limited to 'new/unix/alloc.c')
-rw-r--r--new/unix/alloc.c33
1 files changed, 33 insertions, 0 deletions
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 <stdio.h>
+#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);
+}