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