Linux 高性能服务器编程:高级I/O函数 5 bingliaolong Linux 3年前 (2021-11-28) 5 0 pipe #include <unistd.h> int pipe(int fd[2]); pipe用于创建一个管道,以实现进程间通信。 pipe函数的参数是一个包含两个int的数组指针。 该函数成功时返...