一. Linux进程间通信Ⅰ. 管道函数管道是有大小的,通过ulimit -a查看管道大小
man 2 pipe
#include <unistd.h>
int pipe(int pipefd[2]);
参数
文件描述符。
2020-05-13