aboutsummaryrefslogtreecommitdiff
path: root/alloc.c
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2023-08-08 08:35:17 +0000
committerrodri <rgl@antares-labs.eu>2023-08-08 08:35:17 +0000
commit7b76e7467822316b699847cbd61a0ecb985882d3 (patch)
treed21c96e3002170600e0c11dba0e199567f364355 /alloc.c
downloadbattleship-7b76e7467822316b699847cbd61a0ecb985882d3.tar.gz
battleship-7b76e7467822316b699847cbd61a0ecb985882d3.tar.bz2
battleship-7b76e7467822316b699847cbd61a0ecb985882d3.zip
initial commit.
Diffstat (limited to 'alloc.c')
-rw-r--r--alloc.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/alloc.c b/alloc.c
new file mode 100644
index 0000000..2589e89
--- /dev/null
+++ b/alloc.c
@@ -0,0 +1,44 @@
+#include <u.h>
+#include <libc.h>
+#include <draw.h>
+
+void*
+emalloc(ulong n)
+{
+ void *p;
+
+ p = malloc(n);
+ if(p == nil)
+ sysfatal("malloc: %r");
+ setmalloctag(p, getcallerpc(&n));
+ return p;
+}
+
+void*
+erealloc(void *p, ulong n)
+{
+ void *np;
+
+ np = realloc(p, n);
+ if(np == nil){
+ if(n == 0)
+ return nil;
+ sysfatal("realloc: %r");
+ }
+ if(p == nil)
+ setmalloctag(np, getcallerpc(&p));
+ else
+ setrealloctag(np, getcallerpc(&p));
+ return np;
+}
+
+Image*
+eallocimage(Display *d, Rectangle r, ulong chan, int repl, ulong col)
+{
+ Image *i;
+
+ i = allocimage(d, r, chan, repl, col);
+ if(i == nil)
+ sysfatal("allocimage: %r");
+ return i;
+}