- 论坛徽章:
- 0
|
APUE 高级IO一章中的一个示例,代码如下:
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <errno.h>
- int set_nonblock_flag(int fd, int value)
- {
- int oldflag = fcntl(fd, F_GETFL, 0);
- if(oldflag == -1)
- return -1;
-
- if(value != 0)
- oldflag |= O_NONBLOCK;
- else
- oldflag &= ~O_NONBLOCK;
-
- return fcntl(fd, F_SETFL, oldflag);
-
- }
- char buf[1000000];
- int main(void)
- {
- int ntowrite, nwrite;
- char *ptr;
-
- ntowrite = read(STDIN_FILENO, buf, sizeof(buf));
- fprintf(stderr, "read %d bytes\n", ntowrite);
-
- set_nonblock_flag(STDOUT_FILENO, 1);
-
- ptr = buf;
- while(ntowrite > 0)
- {
- errno = 0;
- nwrite = write(STDOUT_FILENO, ptr, ntowrite);
- fprintf(stderr, "nwrite = %d, errno = %d\n", nwrite, errno);
-
- if(nwrite > 0)
- {
- ptr += nwrite;
- ntowrite -= nwrite;
- }
- }
-
- set_nonblock_flag(STDOUT_FILENO, 0);
-
- exit(0);
- }
复制代码
按照 ./a.out < testfile 2>stderr.out 这样的方式执行时(testfile的大小为6000000),发现结果与书上说的不一样。屏幕不停的输出,但stderr.out文件里并没有与非阻塞相关的输出,只有一句 read 6000000 bytes。感觉O_NONBLOCK在Linux下似乎无效,哪位高手能否给解释一下。 |
|