免费注册 查看新帖 |

Chinaunix

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

关于Linux下的 O_NONBLOCK 问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-14 18:13 |只看该作者 |倒序浏览
APUE 高级IO一章中的一个示例,代码如下:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <fcntl.h>
  5. #include <errno.h>

  6. int set_nonblock_flag(int fd, int value)
  7. {
  8.         int oldflag = fcntl(fd, F_GETFL, 0);
  9.         if(oldflag == -1)
  10.                 return -1;
  11.        
  12.         if(value != 0)
  13.                 oldflag |= O_NONBLOCK;
  14.         else
  15.                 oldflag &= ~O_NONBLOCK;
  16.        
  17.         return fcntl(fd, F_SETFL, oldflag);
  18.        
  19. }

  20. char buf[1000000];

  21. int main(void)
  22. {
  23.         int ntowrite, nwrite;
  24.         char *ptr;
  25.        
  26.         ntowrite = read(STDIN_FILENO, buf, sizeof(buf));
  27.         fprintf(stderr, "read %d bytes\n", ntowrite);
  28.        
  29.         set_nonblock_flag(STDOUT_FILENO, 1);
  30.        
  31.         ptr = buf;
  32.         while(ntowrite > 0)
  33.         {
  34.                 errno = 0;
  35.                 nwrite = write(STDOUT_FILENO, ptr, ntowrite);
  36.                 fprintf(stderr, "nwrite = %d, errno = %d\n", nwrite, errno);
  37.                
  38.                 if(nwrite > 0)
  39.                 {
  40.                         ptr += nwrite;
  41.                         ntowrite -= nwrite;
  42.                 }
  43.         }
  44.        
  45.         set_nonblock_flag(STDOUT_FILENO, 0);
  46.        
  47.         exit(0);
  48. }
复制代码


按照 ./a.out < testfile 2>stderr.out 这样的方式执行时(testfile的大小为6000000),发现结果与书上说的不一样。屏幕不停的输出,但stderr.out文件里并没有与非阻塞相关的输出,只有一句 read 6000000 bytes。感觉O_NONBLOCK在Linux下似乎无效,哪位高手能否给解释一下。

论坛徽章:
11
技术图书徽章
日期:2014-03-01 14:44:34天蝎座
日期:2014-05-21 22:11:59金牛座
日期:2014-05-30 17:06:14
2 [报告]
发表于 2008-12-14 20:31 |只看该作者

回复 #1 wzw19191 的帖子

在Linux 2.6.9执行了你的例子和APUE描述的现象一样,没有你说的情况

论坛徽章:
0
3 [报告]
发表于 2008-12-14 20:53 |只看该作者

回复 #2 timespace 的帖子

我的内核版本是2.6.25-14.fc9.i686

论坛徽章:
0
4 [报告]
发表于 2008-12-15 00:25 |只看该作者
不知道是不是因为版本不同的原因,哪位能在2.6.25下?
谢谢了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP