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.
19 lines
369 B
19 lines
369 B
#include <ccan/err/err.h>
|
|
#include <ccan/take/take.h>
|
|
#include <common/io_debug.h>
|
|
#include <common/utils.h>
|
|
|
|
int debug_poll(struct pollfd *fds, nfds_t nfds, int timeout)
|
|
{
|
|
const char *t;
|
|
|
|
t = taken_any();
|
|
if (t)
|
|
errx(1, "Outstanding taken pointers: %s", t);
|
|
|
|
t = tmpctx_any();
|
|
if (t)
|
|
errx(1, "Outstanding tmpctx: %s", t);
|
|
|
|
return poll(fds, nfds, timeout);
|
|
}
|
|
|