#ifndef IOLOOP_NOTIFY_FD_H
#define IOLOOP_NOTIFY_FD_H
/* common notify code for fd-based notifications (dnotify, inotify) */
struct io_notify {
/* use a doubly linked list so that io_remove() is quick */
int fd;
};
struct ioloop_notify_fd_context {
};
struct io *
struct io_notify *
#endif