- 论坛徽章:
- 0
|
- #include<sys/types.h>
- #include<unistd.h>
- #include<stdio.h>
- #include<sys/stat.h>
- #include<fcntl.h>
- int main(){
- pid_t pid ;
- int fd;
- //创建有名管道
- unlink("test");
- mkfifo("test",S_IFIFO);
- pid = fork();
- if(pid>0){
- char msg[] = "this is test!";
- fd = open("test",O_WRONLY);
- write(fd,msg,sizeof(msg));
- close(fd);
- }
- if(pid==0){
- char buf[20]="";
- fd = open("test",O_RDONLY);
- read(fd,buf,sizeof(buf));
- /*int i =0 ;
- while(buf[i]!=0){
- printf("%c",buf[i]);
- i++;
- }*/
- printf("Child Recieved: %s\n",buf);
- close(fd);
- exit(0);
- }
- return 0;
- }
复制代码 一个简单的进程有名管道通信程序。怎么不能实现通信?问题出在哪? |
|