免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1528 | 回复: 2
打印 上一主题 下一主题

select 成功 返回的难道不是准备好的文件描述符?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-02-23 14:48 |只看该作者 |倒序浏览
代码如下:
while(1)

        {
                FD_ZERO(&fds);
                FD_SET(sockfd,&fds);
                maxfdp = sockfd +1;
                if((selt=select(maxfdp,&fds,&fds,NULL,&timeout)) > 0)
                {
                        printf("-------------%d--%d------------\n",selt,sockfd);
                        if(FD_ISSET(sockfd,&fds))
                        {
                                ZERO(str,SIZE/4);
                                ret=read(sockfd,str,SIZE/4);

                                if(ret==-1)
                                {
                                        perror("read");
                                        continue;
                                }
                                if(ret>0)
                                {
                                        strcat(buf,str);
                                        printf("read the data successly! %d\n",strlen(str));
                                }
                                       
                                if(ret==0)
                                {
                                        break;
                                }
                                                               
                        }
                       
                        }
                else if(selt==-1)
                {
                        printf("select fail!\n");
                        return -1;
                }
        }


输出结果:
write successsful!
-------------1--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 148
-------------1--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 40
-------------1--3------------

为什么返回时2或者1呢?问什么不是3
问什么我这样,在网络不好的时候仍然会阻塞? (光标一直闪,就是读不到东西)

论坛徽章:
11
技术图书徽章
日期:2014-03-01 14:44:34天蝎座
日期:2014-05-21 22:11:59金牛座
日期:2014-05-30 17:06:14
2 [报告]
发表于 2012-02-23 15:12 |只看该作者
int select(int nfds, fd_set *readfds, fd_set *writefds,
                  fd_set *exceptfds, struct timeval *timeout);

readfds和writefds,为什么用一个参数啊?灾难的根源
建议随便找本参考书,看下select怎么用!

论坛徽章:
0
3 [报告]
发表于 2012-02-23 17:52 |只看该作者
回复 2# timespace
太坑爹了 这教材 上面写的 如果成功返回值 :装备好的文件描述符
被你一提醒 去百科一查 Return >0:就绪描述字的正数目。。。。。。。。。。。。。。。。。

还有我确实用错了 writesfds我改成了 NULL。 现在返回值为1了  - -!

3QU

   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP