You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
295 B
9 lines
295 B
#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 */
|
|
|