linux下验证管道的容量


验证管道大小思路:写端一直写,读端不读,当写满了,写端阻塞,就可以统计出管道的大小了。

#include<stdio.h>
#include<unistd.h>
#include<string.h>
#include<stdlib.h>


//匿名管道 单向的,只能用于有血缘关系的,常用于父子进程。


int main()
{
	int pipefd[2] = {0,0};
	if (pipe(pipefd) < 0)//int pipe(int pipefd[2]) 通过调用从pipe中拿出两个管道文件描述符,0表示读,1表示写。 成功的时候返回0,失败的时候返回-1.
	{
		perror("pipe");
		return 1;
	}

	pid_t id = fork();
	if(id < 0)
	{
		perror("fork");
		return 2;
	}
	else if (id == 0)
	{//child -> writer

		close(pipefd[0]); //关闭读端
		const char *msg = "h";
		int count = 0;
		while (1)
		{
			write(pipefd[1],msg,strlen(msg));  //往管道中写,所以是pipefd[1],
			count++;
			printf("count = %d\n",count);
		}

		close(pipefd[1]);  //写完关闭写端
		exit(0);
	}
	else
	{//father -> read

		close(pipefd[1]); //关闭写端

		while (1)
		{
			;
		}

		
		close(pipefd[0]);//读完,关闭读端
	}



	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值