免费注册 查看新帖 |

Chinaunix

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

[C] 操作FIFO的时候 我被雷倒了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-12-12 12:37 |只看该作者 |倒序浏览
  1.   1 #include <stdio.h>
  2.   2 #include <stdlib.h>
  3.   3 #include <sys/types.h>
  4.   4 #include <sys/stat.h>
  5.   5 #include <fcntl.h>
  6.   6 #include <unistd.h>
  7.   7 #include <limits.h>
  8.   8 #include <errno.h>
  9.   9 #include <signal.h>
  10. 10
  11. 11 #define MAX_LINE 256
  12. 12 void sig_pipe(int);
  13. 13 static char pathname[_POSIX_PATH_MAX];
  14. 14
  15. 15 int main()
  16. 16 {
  17. 17 /*    if(signal(SIGPIPE,sig_pipe) == SIG_ERR)
  18. 18         puts("set signal error!");*/
  19. 19     snprintf(pathname,_POSIX_PATH_MAX,"/tmp/%d.fifo",getpid());
  20. 20     if(mkfifo(pathname,0600) == -1)
  21. 21     {
  22. 22         perror("mkfifo");
  23. 23         exit(-1);
  24. 24     }
  25. 25     int fd;
  26. 26     if((fd=open(pathname,O_WRONLY)) == -1)
  27. 27     {
  28. 28         perror("open");
  29. 29         exit(-2);
  30. 30     }
  31. 31     errno=0;
  32. 32     if((write(fd,"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n",MAX_LINE) == -1)  &&     (errno == EPIPE))
  33. 33         puts("write pipe error!");
  34. 34     close(fd);
  35. 35     remove(pathname);
  36. 36     return 0;
  37. 37 }   
  38. 38
  39. 39 void sig_pipe(int signo)
  40. 40 {
  41. 41     write(STDERR_FILENO,"pipe error\n",12);
  42. 42 }
复制代码
mylinux@land-wolrd:~/app_sou$ ./test  /* 因为没有读打开  所以这里阻塞了*/

打开另一个终端
mylinux@land-wolrd:~$ ls /tmp/
5734.fifo        pulse-uhos76Xa70tU
haze-TBzdl2      scim-helper-manager-socket-mylinux
hsperfdata_root  scim-panel-socket:0-mylinux
keyring-5aeusJ   scim-socket-frontend-mylinux
orbit-gdm        ssh-JRPRlY1404
orbit-mylinux    virtual-mylinux.RDwkZZ
mylinux@land-wolrd:~$ ps -al
F S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY          TIME CMD
0 T  1000  3667  1717  0  80   0 -  2927 signal pts/0    00:00:17 vi
0 S  1000  5734  1717  0  80   0 -   421 pipe_w pts/0    00:00:00 test
0 R  1000  5788  3675  0  80   0 -  1158 -      pts/1    00:00:00 ps
mylinux@land-wolrd:~$ cat </tmp/5734.fifo
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
write pipe error!pipe error /*问题就在这里了  谁能告诉我 “pipe error” 从那里来 我已经把信号函数注释掉了啊 */
mylinux@land-wolrd:~$
mylinux@land-wolrd:~$ ps -al
F S   UID   PID  PPID  C PRI  NI ADDR SZ WCHAN  TTY          TIME CMD
0 T  1000  3667  1717  0  80   0 -  2927 signal pts/0    00:00:17 vi
0 R  1000  5801  3675  0  80   0 -  1158 -      pts/1    00:00:00 ps
mylinux@land-wolrd:~$ gcc -v
Using built-in specs.
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.4.4-14ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5)
mylinux@land-wolrd:~$ uname -a
Linux land-wolrd 2.6.35-23-generic #41-Ubuntu SMP Wed Nov 24 10:18:49 UTC 2010 i686 GNU/Linux
mylinux@land-wolrd:~$

论坛徽章:
0
2 [报告]
发表于 2010-12-12 22:58 |只看该作者
回复 1# land5280

这事的确挺奇怪的。

论坛徽章:
0
3 [报告]
发表于 2010-12-12 23:10 |只看该作者
信号和errno有啥关系。。

论坛徽章:
0
4 [报告]
发表于 2010-12-13 00:13 |只看该作者
信号和errno有啥关系。。
maxxfire 发表于 2010-12-12 23:10


  问题就在这里了  你也看到了  我已经把设置信号函数给注释掉了
  
  可是 那个多出来的数据却是void sig_pipe(int); 函数里面的  我把"write(STDERR_FILENO,"pipe error\n",12);" 改成"write(STDERR_FILENO,"AAAAAAAAAAA\n",12);"   十一个A也跟着出来了

论坛徽章:
0
5 [报告]
发表于 2010-12-13 00:28 |只看该作者
不要误导别人。跟pipe没有关系。
那是因为编译器会自动把所有的常量字符串放在一个存储区域里面。

论坛徽章:
0
6 [报告]
发表于 2010-12-13 20:58 |只看该作者
不要误导别人。跟pipe没有关系。
那是因为编译器会自动把所有的常量字符串放在一个存储区域里面。
pagx 发表于 2010-12-13 00:28



  谢谢

论坛徽章:
0
7 [报告]
发表于 2010-12-13 23:59 |只看该作者
诡异的问题,精彩的回答
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP