core-lightning/common/autodata.h
Rusty Russell b594c53771 common/autodata: autodata replacement which uses __attribute__((constructor))
This is a GCC extension, but avoids much other messiness.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2021-09-21 18:04:43 +02:00

27 lines
843 B
C

#ifndef LIGHTNING_COMMON_AUTODATA_H
#define LIGHTNING_COMMON_AUTODATA_H
#include "config.h"
#include <ccan/compiler/compiler.h>
#include <ccan/cppmagic/cppmagic.h>
#define AUTODATA_TYPE(name, type) \
static inline void register_autotype_##name(const type *t) { \
autodata_register_(#name, t); \
} \
typedef type autodata_##name##_
/* This uses GCC's constructor attribute */
#define AUTODATA(name, ptr) \
static __attribute__((constructor)) NEEDED \
void CPPMAGIC_GLUE2(register_one_##name,__COUNTER__)(void) { \
register_autotype_##name(ptr); \
}
#define autodata_get(name, nump) \
((autodata_##name##_ **)autodata_get_(#name, (nump)))
void autodata_register_(const char *typename, const void *ptr);
void *autodata_get_(const char *typename, size_t *nump);
#endif /* LIGHTNING_COMMON_AUTODATA_H */