andlabs-ui/new/alloc_unix.c

34 lines
610 B
C
Raw Normal View History

// 7 april 2015
2015-04-07 22:40:18 -05:00
#include <stdio.h>
#include "uipriv_unix.h"
2015-04-07 22:40:18 -05:00
void *uiAlloc(size_t size, const char *type)
{
2015-04-07 22:40:18 -05:00
void *out;
out = g_malloc0(size);
if (options.debugLogAllocations)
fprintf(stderr, "%p alloc %s\n", out, type);
2015-04-07 22:40:18 -05:00
return out;
}
2015-04-07 22:40:18 -05:00
void *uiRealloc(void *p, size_t size, const char *type)
{
2015-04-07 22:40:18 -05:00
void *out;
if (p == NULL)
return uiAlloc(size, type);
// TODO fill with 0s
2015-04-07 22:40:18 -05:00
out = g_realloc(p, size);
if (options.debugLogAllocations)
fprintf(stderr, "%p realloc %p\n", p, out);
2015-04-07 22:40:18 -05:00
return out;
}
void uiFree(void *p)
{
g_free(p);
if (options.debugLogAllocations)
fprintf(stderr, "%p free\n", p);
}