我们知道FD_ZERO(&fdRead);
FD_SET(s,&fdRead);
select(0,&fdRead,NULL,NULL,&timeout)
         FD_ISSET(s, &fdRead)
得到s是否在fdRead中
假若在select中超时,在调用它时,怎样体现超时,