diff options
author | rodri <rgl@antares-labs.eu> | 2023-08-08 08:35:17 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2023-08-08 08:35:17 +0000 |
commit | 7b76e7467822316b699847cbd61a0ecb985882d3 (patch) | |
tree | d21c96e3002170600e0c11dba0e199567f364355 /alloc.c | |
download | battleship-7b76e7467822316b699847cbd61a0ecb985882d3.tar.gz battleship-7b76e7467822316b699847cbd61a0ecb985882d3.tar.bz2 battleship-7b76e7467822316b699847cbd61a0ecb985882d3.zip |
initial commit.
Diffstat (limited to 'alloc.c')
-rw-r--r-- | alloc.c | 44 |
1 files changed, 44 insertions, 0 deletions
@@ -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; +} |