mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
2debbb0a00
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
332 B
C
16 lines
332 B
C
#ifndef LIGHTNING_COMMON_SUBDAEMON_H
|
|
#define LIGHTNING_COMMON_SUBDAEMON_H
|
|
#include "config.h"
|
|
#include <common/daemon.h>
|
|
|
|
/* daemon_setup, but for subdaemons */
|
|
void subdaemon_setup(int argc, char *argv[]);
|
|
|
|
#if DEVELOPER
|
|
struct htable;
|
|
|
|
bool dump_memleak(struct htable *memtable);
|
|
#endif
|
|
|
|
#endif /* LIGHTNING_COMMON_SUBDAEMON_H */
|