mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-09 23:27:17 +01:00
10 lines
295 B
C
10 lines
295 B
C
|
#ifndef LIGHTNING_COMMON_IO_DEBUG_H
|
||
|
#define LIGHTNING_COMMON_IO_DEBUG_H
|
||
|
#include "config.h"
|
||
|
#include <poll.h>
|
||
|
|
||
|
/* Replacement poll which checks for memory leaks in middle of ccan/io loop. */
|
||
|
int debug_poll(struct pollfd *fds, nfds_t nfds, int timeout);
|
||
|
|
||
|
#endif /* LIGHTNING_COMMON_IO_DEBUG_H */
|