我知道,指定事件EPOLLET会将epoll从级别触发切换到边缘触发.这是否意味着默认情况下对epoll_wait()的调用是级别触发的?
发布于 2014-07-11 06:05:57
请参阅http://man7.org/linux/man-pages/man7/epoll.7.html
By contrast, when used as a level-triggered interface (the default,
when EPOLLET is not specified), epoll is simply a faster poll(2), and
can be used wherever the latter is used since it shares the same
semantics.因此,当未指定EPOLLET时,级别触发是默认选项.
https://stackoverflow.com/questions/24400941
复制相似问题