摘要:
无名管道(pipe)的创建实例,一下程序在子进程中写入数据,在父进程中读取数据View Code 1 #include <unistd.h> 2 #include <stdio.h> 3 #include <stdlib.h> 4 5 int main() 6 { 7 pid_t pid; 8 int pipedes[2]; 9 char s[14] = "test message!";10 char d[14] = {0};11 12 if(pipe(pipedes) == -1)//创建管道13 {14 perro... 阅读全文