mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
6ccfcf4477
For better or worse, the ccan/timer structure is completely minimal, and designed to be wrapped inside a container structure. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
28 lines
678 B
C
28 lines
678 B
C
#ifndef LIGHTNING_DAEMON_TIMEOUT_H
|
|
#define LIGHTNING_DAEMON_TIMEOUT_H
|
|
#include "config.h"
|
|
|
|
#include <ccan/time/time.h>
|
|
#include <ccan/timer/timer.h>
|
|
#include <ccan/typesafe_cb/typesafe_cb.h>
|
|
|
|
struct timeout {
|
|
struct timer timer;
|
|
struct timerel interval;
|
|
void (*cb)(void *);
|
|
void *arg;
|
|
};
|
|
|
|
struct lightningd_state;
|
|
|
|
void init_timeout_(struct timeout *t, unsigned int interval,
|
|
void (*cb)(void *), void *arg);
|
|
|
|
void refresh_timeout(struct lightningd_state *state, struct timeout *t);
|
|
|
|
#define init_timeout(t, interval, func, arg) \
|
|
init_timeout_((t), (interval), \
|
|
typesafe_cb(void, void *, (func), (arg)), (arg))
|
|
|
|
#endif /* LIGHTNING_DAEMON_TIMEOUT_H */
|