diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-04-24 17:46:18 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-04-24 17:46:18 -0700 |
commit | 1435249cd1cac95d31403a9592018eaad9c7cb00 (patch) | |
tree | 82c72ee95d706aa138574ae28bfcc7b240af4a61 /src | |
parent | 23f54e51f5bb62ffa98383df996441c5852b5d2d (diff) |
til_setup: add til_setup_new() helper
For use when setup functions allocate their private setup to
return in *res_setup.
They specify the size of their private setup, and supply the free
function to use. This may be libc's free() when it's a simple
setup struct, or a bespoke free function when deep/complex
freeing is required for cleanup.
It's expected that callers will be embedding til_setup_t at the
start of their private setup struct, and returning a pointer to
this in *res_setup which would be the same value as a pointer to
to their private setup struct.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/til_setup.c | 26 | ||||
-rw-r--r-- | src/til_setup.h | 2 |
3 files changed, 29 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9f3d400..20ef90f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ SUBDIRS = libs modules noinst_LTLIBRARIES = libtil.la -libtil_la_SOURCES = til_args.c til_args.h til_fb.c til_fb.h til_knobs.h til.c til.h til_settings.h til_settings.c til_setup.h til_threads.c til_threads.h til_util.c til_util.h +libtil_la_SOURCES = til_args.c til_args.h til_fb.c til_fb.h til_knobs.h til.c til.h til_settings.h til_settings.c til_setup.c til_setup.h til_threads.c til_threads.h til_util.c til_util.h libtil_la_CPPFLAGS = -I@top_srcdir@/src libtil_la_LIBADD = modules/blinds/libblinds.la modules/checkers/libcheckers.la modules/compose/libcompose.la modules/drizzle/libdrizzle.la modules/flui2d/libflui2d.la modules/julia/libjulia.la modules/meta2d/libmeta2d.la modules/montage/libmontage.la modules/pixbounce/libpixbounce.la modules/plasma/libplasma.la modules/plato/libplato.la modules/ray/libray.la modules/roto/libroto.la modules/rtv/librtv.la modules/snow/libsnow.la modules/sparkler/libsparkler.la modules/spiro/libspiro.la modules/stars/libstars.la modules/submit/libsubmit.la modules/swab/libswab.la modules/swarm/libswarm.la libs/grid/libgrid.la libs/puddle/libpuddle.la libs/ray/libray.la libs/sig/libsig.la libs/txt/libtxt.la libs/ascii/libascii.la libs/din/libdin.la diff --git a/src/til_setup.c b/src/til_setup.c new file mode 100644 index 0000000..c5fd451 --- /dev/null +++ b/src/til_setup.c @@ -0,0 +1,26 @@ +#include <assert.h> +#include <errno.h> +#include <stdlib.h> + +#include "til_setup.h" + + +/* Allocate and initialize a new til_setup_t of size bytes. + * free_func is assigned to til_setup_t.free, and will be used for freeing the + * instance returned when destroyed. + */ +void * til_setup_new(size_t size, void (*free_func)(til_setup_t *setup)) +{ + til_setup_t *setup; + + assert(size >= sizeof(til_setup_t)); + assert(free_func); + + setup = calloc(1, size); + if (!setup) + return NULL; + + setup->free = free_func; + + return setup; +} diff --git a/src/til_setup.h b/src/til_setup.h index 7984dd1..7f61213 100644 --- a/src/til_setup.h +++ b/src/til_setup.h @@ -7,4 +7,6 @@ struct til_setup_t { void (*free)(til_setup_t *setup); }; +void * til_setup_new(size_t size, void (*free_func)(til_setup_t *setup)); + #endif |