summaryrefslogtreecommitdiff
path: root/new/alloc_darwin.m
blob: 8f539af797374da5af9ef520b3e22a508af04ac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// 4 december 2014
#import <stdio.h>
#import "uipriv_darwin.h"

void *uiAlloc(size_t size, const char *type)
{
	void *out;

	out = malloc(size);
	if (out == NULL) {
		fprintf(stderr, "memory exhausted in uiAlloc() allocating %s\n", type);
		abort();
	}
	memset(out, 0, 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);
	out = realloc(p, size);
	if (out == NULL) {
		fprintf(stderr, "memory exhausted in uiRealloc() reallocating %s\n", type);
		abort();
	}
	// TODO zero the extra memory
	if (options.debugLogAllocations)
		fprintf(stderr, "%p realloc %p\n", p, out);
	return out;
}

void uiFree(void *p)
{
	if (p == NULL)
		return;
	free(p);
	if (options.debugLogAllocations)
		fprintf(stderr, "%p free\n", p);
}