- 论坛徽章:
- 0
|
- 1 #include <stdio.h>
- 2 #include <stdlib.h>
- 3 #include <sys/types.h>
- 4 #include <sys/stat.h>
- 5 #include <fcntl.h>
- 6 #include <unistd.h>
- 7 #include <limits.h>
- 8 #include <errno.h>
- 9 #include <signal.h>
- 10
- 11 #define MAX_LINE 256
- 12 void sig_pipe(int);
- 13 static char pathname[_POSIX_PATH_MAX];
- 14
- 15 int main()
- 16 {
- 17 /* if(signal(SIGPIPE,sig_pipe) == SIG_ERR)
- 18 puts("set signal error!");*/
- 19 snprintf(pathname,_POSIX_PATH_MAX,"/tmp/%d.fifo",getpid());
- 20 if(mkfifo(pathname,0600) == -1)
- 21 {
- 22 perror("mkfifo");
- 23 exit(-1);
- 24 }
- 25 int fd;
- 26 if((fd=open(pathname,O_WRONLY)) == -1)
- 27 {
- 28 perror("open");
- 29 exit(-2);
- 30 }
- 31 errno=0;
- 32 if((write(fd,"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n",MAX_LINE) == -1) && (errno == EPIPE))
- 33 puts("write pipe error!");
- 34 close(fd);
- 35 remove(pathname);
- 36 return 0;
- 37 }
- 38
- 39 void sig_pipe(int signo)
- 40 {
- 41 write(STDERR_FILENO,"pipe error\n",12);
- 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:~$ |
|