diff options
author | rodri <rgl@antares-labs.eu> | 2023-07-23 22:52:31 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2023-07-23 22:52:31 +0000 |
commit | 2e99eaaea1aa6776eda10f5ec8bd90adcfe8424a (patch) | |
tree | fe2602798fbafacef77d0636c7ef5f717a12bbed /alloc.c | |
download | catphone-2e99eaaea1aa6776eda10f5ec8bd90adcfe8424a.tar.gz catphone-2e99eaaea1aa6776eda10f5ec8bd90adcfe8424a.tar.bz2 catphone-2e99eaaea1aa6776eda10f5ec8bd90adcfe8424a.zip |
layed out initial structures. began work on registration procedure.
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; +} |