STHO
2020-10-10 本文已影响0人
李伟13
管道实现进程间通讯
https://blog.csdn.net/skyroben/article/details/71513385
#include <unistd.h>
int pipe (int fd[2]); //返回:成功返回0,出错返回-1
fd参数返回两个文件描述符,fd[0]指向管道的读端,fd[1]指向管道的写端。fd[1]的输出是fd[0]的输入。
管道实现进程间通讯
https://blog.csdn.net/skyroben/article/details/71513385
#include <unistd.h>
int pipe (int fd[2]); //返回:成功返回0,出错返回-1
fd参数返回两个文件描述符,fd[0]指向管道的读端,fd[1]指向管道的写端。fd[1]的输出是fd[0]的输入。