Linux编程:两个无名管道实现父子进程双向通信,实现父子进程轮流叠加数字

本文探讨了如何使用两个无名管道在Linux环境下实现父子进程之间的双向通信,通过示例代码展示了如何让父子进程轮流叠加数字。在管道中,可以直接存储和读取int型数据,无需特定的格式转换,与文件IO操作不同。
摘要由CSDN通过智能技术生成

 初步代码:验证管道中是否可以直接存储或读取iint型数据

  1 #include<stdio.h>
  2 #include<sys/types.h>
  3 #include<unistd.h>
  4 #include<stdlib.h>
  5 #include<string.h>
  6 int main(int argc,char const*argv[])
  7 {
  8     pid_t pid;
  9     int fd1[2],fd2[2];
 10     pipe(fd1);
 11     pipe(fd2);
 12     pid=fork();
 13     int x=1;
 14     if(pid==-1)
 15     {
 16         perror("fail to fork");
 17         exit(1);
 18     }
 19     if(pid==0)
 20     {
 21         close(fd1[0]);
 22         close(fd2[1]);
 23         while(1)
 24         {
 25             sleep(1);
 26             x++;
 27             write(fd1[1],&x,sizeof(int));
 28         }
 29     }
 30     else
 31     {
 32         close(fd1[1]);
 33         close(fd2[0]);
 34         while(1)
 35         {
 36             read(fd1[0],&x,sizeof(int));
 37             printf("%d\n",x);
 38         }
 39    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值