我的印象是boost :: asio默认使用epoll设置而不是select实现,但在运行一些测试之后看起来我的设置是使用select。
操作系统:RHEL 4我写了一个小测试程序来验证正在使用哪个反应器头,看起来它使用了选择反应器而不是epoll反应器。
#include <boost/asio.hpp>
#include <string>
#include <iostream>
std::string output;
#if defined(BOOST_ASIO_EPOLL_REACTOR_HPP)
int main(void)
{
std::cout << "you have epoll enabled." << std::endl;
}
#elif defined(BOOST_ASIO_DETAIL_SELECT_REACTOR_HPP)
int main(void)
{
std::cout << "you have select enabled." << std::endl;
}
#else
int main(void)
{
std::cout << "this shit is confusing." << std::endl;
}
#endif
我可能做错了什么?
答案 0 :(得分:4)
你的程序也为我说“选择”,但asio正在使用epoll_wait(),而ps -Teo tid,wchan:25,comm
报告。
怎么样
#include <iostream>
#include <string>
#include <boost/asio.hpp>
int main()
{
std::string output;
#if defined(BOOST_ASIO_HAS_IOCP)
output = "iocp" ;
#elif defined(BOOST_ASIO_HAS_EPOLL)
output = "epoll" ;
#elif defined(BOOST_ASIO_HAS_KQUEUE)
output = "kqueue" ;
#elif defined(BOOST_ASIO_HAS_DEV_POLL)
output = "/dev/poll" ;
#else
output = "select" ;
#endif
std::cout << output << std::endl;
}
(从/usr/include/boost/asio/serial_port_service.hpp
抓取ifdefs的梯子)