Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来检查 epoll 实例正在监视的文件描述符的当前数量。我使用以下内容创建和填充 epoll 实例
epoll_create epoll_ctl
平台是 Gnu/Linux。
据我所知,没有可用的系统调用可以提供 epoll 监视的文件描述符的计数。您可以通过维护一个计数器变量来实现这一点。使用 epoll_ctl() 成功将文件描述符添加/删除到 epoll 后,递增/递减此变量。