1.select能监听的文件描述符个数受限于FD_SETSIZE,一般为1024,单纯改变进程打开
的文件描述符个数并不能改变select监听文件个数
2.解决1024以下客户端时使用select是很合适的,但如果链接客户端过多,select采用
的是轮询模型,会大大降低服务器响应效率,不应在select上投入更多精力
1 #include <sys/select.h> 2 /* According to earlier standards */ 3 #include <sys/time.h> 4 #include <sys/types.h> 5 #include <unistd.h> 6 int select(int nfds, fd_set *readfds, fd_set *writefds, 7 fd_set *exceptfds, struct timeval *timeout); 8 nfds: 监控的文件描述符集里最大文件描述符加1,因为此参数会告诉内核检测前多少个文件描述符的状态 9 readfds:监控有读数据到达文件描述符集合,传入传出参数 10 writefds:监控写数据到达文件描述符集合,传入传出参数 11 exceptfds:监控异常发生达文件描述符集合,如带外数据到达异常,传入传出参数 12 timeout:定时阻塞监控时间,3种情况 13 1.NULL,永远等下去 14 2.设置timeval,等待固定时间 15 3.设置timeval里时间均为0,检查描述字后立即返回,轮询 16 struct timeval { 17 long tv_sec; /* seconds */ 18 long tv_usec; /* microseconds */ 19 }; 20 void FD_CLR(int fd, fd_set *set); 把文件描述符集合里fd清0 21 22 FD_ISSET(int fd, fd_set *set); 测试文件描述符集合里fd是否置1 23 void FD_SET(int fd, fd_set *set); 把文件描述符集合里fd位置1 24 void FD_ZERO(fd_set *set); 把文件描述符集合里所有位清0