mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
b594c53771
This is a GCC extension, but avoids much other messiness. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
27 lines
843 B
C
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 */
|