Linux高性能服務器編程——I/O複用

I/O複用技術是重要的提高服務器工作效率和性能的手段,Linux下實現I/O複用的系統調用主要有select、poll和epoll。   首先我們來看一下select的函數原型和常用的宏: 1 #include<sys/select.h> 2 int select(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, str
相關文章
相關標籤/搜索