fs_sel = select(fd+1,&fs_read,NULL,NULL,&time); 函数原型
时间: 2024-04-07 16:31:06 浏览: 99
linuxxuexi.rar_linux select 串口_linux 串口 select_linux串口select_sel
5星 · 资源好评率100%
int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
其中,nfds 是需要检查的文件描述符数量加 1;readfds、writefds 和 exceptfds 分别是需要检查读、写和异常情况的文件描述符集合,如果不需要检查,就传入 NULL;timeout 是超时时间,如果不需要超时限制,就传入 NULL。函数返回值为就绪文件描述符的数量,如果超时时间到达,返回值为 0,如果出错,返回值为 -1。
阅读全文