无名管道

无名管道主要
用于父子进程之间使用
用pipe创建无名管道(只能一个进程去读和写)
in pipe(file_descriptor[2])
只用用一段读和写对管道;0读 1号是写
一般子进程写父进程读(父子进程通信)
子进程读父进程写
父子进程 fd[2]指向同一个文件表
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <assert.h>
4 #include <unistd.h>
5 #include <string.h>
6 int main()
7 {
8 int fd[2];
9 assert(pipe(fd)!=-1);
10 write(fd[1],"wandfsdfdsfdsfsdfdsf",20);
11 char buff[128]={0};
12 read(fd[0],buff,3);
13 printf("%s\n",buff);
14 close(fd[1]);
15 close(fd[0]);
16 exit(0);
17 }
/


#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <unistd.h>
#include <string.h>
int main()
{
int fd[2];
assert(pipe(fd)!=-1);
pid_t pid=fork();
assert(pid!=-1);
if(pid==0)
{
close(fd[1]);
while(1)
{
char buff[128]={0};
if(read(fd[0],buff,128)==0)
{
close(fd[0]);
break;
}
printf("%s\n",buff);
}
}
else
{
close(fd[0]);
while(1)
{
char buff[128]={0};
fgets(buff,128,stdin);
if(strncmp(buff,"end",3)==0)
{
close(fd[1]);
break;
}
write(fd[1],buff,127);
}
}
exit(0);
}











************************************************** 
有无名的区别
写入的管道的数据在内存中
管道为半双工
有名和无名
无名在父子进程中使用
无名管道任意两个进程 
管道的大小 管道数据满了之后会发生阻塞。
dup 复制文件描述符
两个指向同一个文件表关闭时需要全部关闭打开的文件描述符
close(1)关闭文件的写;标注输出 printf 直接答应到管道中
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <fcntl.h>
4 #include <string.h>
5 #include <assert.h>
6 int main()
7 {
8 char buff[128]={0};
9 int fd=open("fifo",O_RDONLY);
10 assert(fd!=-1);
11 printf("fd=%d\n",fd);
12 while(read(fd,buff,127)!=0)
13 {
14 printf("%s\n",buff);
15 }
16 close(fd);
17 
18 return 0;
19 }
dup的作用将当前的文件描述符去替换后面的问价描述符。 fw2=dup(fw)(两个指向的是同一个文件表)
6 int main()
7 {
8 //close(1);
9 char buff[128]={0};
10 int fd=open("fifo",O_WRONLY); // open("1.txt",O_WRONLY | O_CREAT ,0600)
11 assert(fd!=-1);
12 printf("fd=%d\n",fd);
13 dup2(fd,1);
14 while(1)
15 {
16 fgets(buff,128,stdin);
17 if(strncmp(buff,"end",3)==0)
18 {
19 break;
20 }
21 printf("%s\n",buff);
22 fflush(stdout);
23 }
24 close(fd);
25 return 0;
26 }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值