目录 Poll系统调用 poll编程实例 poll编程流程 头文件tcp_socket.h 头文件tcp_poll.h 主文件tcp_poll.cpp 参考文献 Poll系统调用 poll系统调用和select类似,也是在指定时间内轮询一定数量的文件描述符,以 测试其是否有就绪者。 #include <poll.h> int poll(struct pollfd* fds, nfds_t nfds, int timeout); struct pollfd { int fd; ...