1. 功能說明
pipe(管道建設):
1) 頭 #include<unistd.h>
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
This is in the child process,here read a string from the pipe.
This is in the father process,here write a string to the pipe.
Hello world , this is write by pipe.
當管道中的資料被讀取後,管道為空。一個隨後的read()呼叫將預設的被堵塞。等待某些資料寫入。
若須要設定為非堵塞。則可做例如以下設定:
fcntl(filedes[0], F_SETFL, O_NONBLOCK);
fcntl(filedes[1], F_SETFL, O_NONBLOCK);