标签:des style blog http color io os ar 使用
管道有两个局限性:(1)他是半双工(即数据只能在一个方向上流动)。(2)它只能在具有公共祖先的进程之间使用。一个管道由一个进程创建,然后该 进程调用fork,此后父子进程之间就可该管道。
#include<unistd.h>
int pipe(int files[2]);
#include <unistd.h> #include <stdio.h> #include <stdlib.h> #define MAXLINE (2014) int main(void) { int n, fd[2]; pid_t pid; char line[MAXLINE]; if (pipe(fd) < 0) printf("pipe error"); if((pid = fork()) < 0) printf("fork error"); else if (pid > 0) { /* parent */ close(fd[0]);/* close read */ printf ("the process pid %d\n", getpid()); printf ("the process write to pipe : hello world!\n"); write(fd[1], "hello world\n", 12); } else { /* child */ close(fd[1]); /* close write */ printf("the process pid %d\n", getpid()); n = read(fd[0], line, MAXLINE); write(STDOUT_FILENO, line, n); } exit(0); }
标签:des style blog http color io os ar 使用
原文地址:http://www.cnblogs.com/fangshenghui/p/4039833.html