#include <sys/epoll.h>
#endif
+using std::vector;
+
aio_callback::~aio_callback() {}
poll_mgr poll_mgr::shared_mgr;
fd_set rfds_, wfds_;
int highfds_;
file_t pipe_[2];
- mutex m_;
+ std::mutex m_;
};
#ifdef __linux__
return;
else if (ret < 0) {
perror("select:");
- IF_LEVEL(0) LOG("select_loop failure errno " << errno);
+ IF_LEVEL(0) LOG << "select_loop failure errno " << errno;
VERIFY(0);
}