文件 user1.c
#include <myhead.h>
int main(int argc, const char *argv[])
{
pid_t pid = fork();
if(pid>0)//父进程
{
int send;
send = open("./my_fifo1",O_WRONLY);//只写打开
if(send==-1)
{
perror("open send");
return -1;
}
char buff[1024];
while(1)
{
int len = read(0,buff,sizeof(buff));
// buff[strlen(buff)-1] = '\0';//换行改为\0
write(send,buff,len);//写入管道
if(strcmp(buff,"quit")==0)
{
break;
}
}
close(send);
}
else if(pid==0)//子进程
{
int rev;
rev = open("./my_fifo2",O_RDONLY);
if(rev==-1)
{
perror("open rev");
return -1;
}
char buff[1024];
while(1)
{
int len = read(rev,buff,sizeof(buff));//读取管道数据
write(1,buff,len);
if(strcmp(buff,"quit")==0)
{
break;
}
}
close(rev);
}
else
{
perror("fork");
return -1;
}
while(1);
return 0;
}
文件 user2.c
#include <myhead.h>
int main(int argc, const char *argv[])
{
pid_t pid = fork();
if(pid>0)//父进程
{
int send;
send = open("./my_fifo2",O_WRONLY);//只写打开
if(send==-1)
{
perror("open send");
return -1;
}
char buff[1024];
while(1)
{
int len = read(0,buff,sizeof(buff));
// buff[strlen(buff)-1] = '\0';//换行改为\0
write(send,buff,len);//写入管道
if(strcmp(buff,"quit")==0)
{
break;
}
}
close(send);
}
else if(pid==0)//子进程
{
int rev;
rev = open("./my_fifo1",O_RDONLY);
if(rev==-1)
{
perror("open rev");
return -1;
}
char buff[1024];
while(1)
{
int len = read(rev,buff,sizeof(buff));//读取管道数据
write(1,buff,len);
if(strcmp(buff,"quit")==0)
{
break;
}
}
close(rev);
}
else
{
perror("fork");
return -1;
}
while(1);
return 0;
}