1. 函數說明
pipe(建立管道):
1) 頭檔#include
2) 定義函數: int pipe(int filedes[2]);
3) 函數說明: pipe()會建立管道,並將檔案描述詞由參數filedes陣列傳回。
filedes[0]為管道中的讀取端
filedes[1]則為管道的寫入端。
4) 回傳值: 若成功則回傳零,否則回傳-1,錯誤原因存於errno。
錯誤代碼:
EMFILE 處理已使用檔案描述符最大量
ENFILE 系統已無檔案描述詞可用。
EFAULT 參數 filedes 陣列位址不合法。
2. 舉例
#include <unistd.h> #include <stdio.h> int main( void ) { int filedes[2]; char buf[80]; pid_t pid; pipe( filedes ); pid=fork(); if (pid > 0) { printf( "This is in the father process,here write a string to the pipe.\n" ); char s[] = "Hello world , this is write by pipe.\n"; write( filedes[1], s, sizeof(s) ); close( filedes[0] ); close( filedes[1] ); } else if(pid == 0) { printf( "This is in the child process,here read a string from the pipe.\n" ); read( filedes[0], buf, sizeof(buf) ); printf( "%s\n", buf ); close( filedes[0] ); close( filedes[1] ); } waitpid( pid, NULL, 0 ); return 0; }
運行結果:
[root@localhost src]# gcc pipe.c
[root@localhost src]# ./a.out is inhihij. string from the pipe.
This is in the father process,here write a string to the pipe.
Hello world , this is write by pipe.
NO