Pipe Capacity(管道容量)

结论:管道容量是 65536 字节

验证如下:

/*
 * Since Linux 2.6.11, the pipe capacity is 65536 bytes. from man 7 pipe
 * Linux test28 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
 */
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>

int main(void)
{
  int fds[2], flags, count = 0;

  if(0 != pipe(fds))
  {
    perror("pipe error");
    exit(EXIT_FAILURE);
  }

  flags = fcntl(fds[1], F_GETFL);
  /*
   * 写端 fds[1] 默认是阻塞模式,现改为非阻塞
   */
  fcntl(fds[1], F_SETFL, flags | O_NONBLOCK);
  while (1)
  {
    if (-1 == write(fds[1], "A", 1))
    {
      perror("write error");
      break;
    }

    count++;
  }

  printf("the pipe capcity is %d\n", count);

  return 0;
}
/*
 * write error: Resource temporarily unavailable
 * the pipe capcity is 65536
 */
  • 7
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值