I/O複用之poll模型

poll系統調用和select的類似,也是利用輪詢文件描述符來尋找就緒者。 函數原型: int poll(struct pollfd *fds,nfds_t nfds,int timeout); fds參數是一個pollfd結構類型的數組,它指定所有我們感興趣的文件描述符上發生的可讀,可寫和異常事件。 struct pollfd { int fd; /* file descriptor */ sh
相關文章
相關標籤/搜索