On Sun, 2011-07-31 at 11:16 -0400, Nelson Elhage wrote: > Sure -- it's quite simple if you've worked with epoll before. This > cut-down version is even simpler than the previous one I had, and I'd > be happy to add it to the commit message. > > --------------------8<-------------------- > #include <sys/epoll.h> > > int main(void) { > int e1, e2; > struct epoll_event evt = { > .events = EPOLLIN > }; > > e1 = epoll_create1(0); > e2 = epoll_create1(0); > epoll_ctl(e1, EPOLL_CTL_ADD, e2, &evt); > return 0; > } > --------------------8<-------------------- That looks rather obvious. It's, well, interesting to see how I managed to miss that. Thanks, Paul Bolle -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html