管道:當從一個進程鏈接數據流到另外一個進程時,使用術語管道(pipe)。
# include <unistd.h> html
int pipe(int filedes[2]); //建立管道學習
pipe()說明: spa
返回值:0成功,-1出錯。htm
若是調用成功,則進程此時由了兩個額外的打開文件描述符,filedes[0]中的值是管道的讀取端,而filedes[1]是管道的寫入端。
#include<unistd.h> blog
#include<sys/types.h> 繼承
#include<errno.h> 進程
#include<stdio.h>ip
#include<stdlib.h>
int main(){ 內存
int pipe_fd[2]; get
pid_t pid;
char buf_r[100];
char *p_wbuf;
int r_num;
memset(buf_r,0,sizeof(buf_r));
//建立管道
if(pipe(pipe_fd)<0){
printf("pipe create error/n");
return -1;
}
if((pid=fork())==0){
//表示在子進程中
printf("/n");
//關閉管道寫描述符,進行管道讀操做
close(pipe_fd[1]);
sleep(2);
//管道描述符中讀取
if((r_num=read(pipe_fd[0],buf_r,100))>0){
printf("%d numbers read from the pipe is %s/n",r_num,buf_r);
}
close(pipe_fd[0]);
exit(0);
}
else if(pid>0){
//表示在父進程中,父進程寫
//關閉管道讀描述符,進行管道寫操做
close(pipe_fd[0]);
if(write(pipe_fd[1],"Hello",5)!=-1)
printf("parent write1 success!/n");
if(write(pipe_fd[1],"Pipe",5)!=1)
printf("parent write2 success!/n");
close(pipe_fd[1]);
sleep(3);
waitpid(pid,NULL,0);
exit(0);
}
}
管道讀寫注意事項: 1.必須在系統調用fork()中調用pipe(),不然子進程將不會繼承文件描述符; 2.當使用半雙工管道時,任何關聯的進程都必須共享一個相關的祖先進程。
轉載聲明: 本文轉自 http://hi.baidu.com/glowzrf/blog/item/2e3edd17ed23b8044b90a70e.html
======================================================================
擴展參考:
命名管道FIFO——Linux筆記
http://hi.baidu.com/glowzrf/blog/item/dcaf96fb28c941136d22eb9f.html
信號——Linux學習筆記
http://hi.baidu.com/glowzrf/blog/item/2828d6ce8a17d63cb700c8e9.html
守護進程——Linux學習筆記
http://hi.baidu.com/glowzrf/blog/item/35fd44949629781bd31b70d7.html
共享內存——Linux學習筆記
http://hi.baidu.com/glowzrf/blog/item/9a2e97e7e9f1272bb938208d.html