摘要: #include <unistd.h>#include <stdio.h>#include <stdlib.h>#include <string.h> int main(int argc, char **argv){ int fd[2]; int pid; pipe(fd); int rpipe = fd[0]; int wpipe = fd[1]; pid = fork(); if (pid == 0) { /* 子进程关掉读的那端,只用写的一端 */ close(rpipe); /* 把标准... 阅读全文
posted @ 2013-04-06 21:25 greencolor 阅读(133) 评论(0) 推荐(0) 编辑