#include #include #include #include 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); }