mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
a9f26b7d07
Also requires us to expose memleak when !DEVELOPER, however we only ever used the memleak tracking when the LIGHTNINGD_DEV_MEMLEAK environment variable was set, so keep that. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
295 B
C
12 lines
295 B
C
#ifndef LIGHTNING_COMMON_SUBDAEMON_H
|
|
#define LIGHTNING_COMMON_SUBDAEMON_H
|
|
#include "config.h"
|
|
#include <common/daemon.h>
|
|
|
|
struct htable;
|
|
|
|
/* daemon_setup, but for subdaemons: returns true if --developer */
|
|
bool subdaemon_setup(int argc, char *argv[]);
|
|
|
|
#endif /* LIGHTNING_COMMON_SUBDAEMON_H */
|