2012年11月4日

摘要: 无名管道(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... 阅读全文
posted @ 2012-11-04 16:14 青莲蓄池 阅读(453) 评论(0) 推荐(0) 编辑

导航