1. 関数の説明
pipe (パイプラインの作成):
1) ヘッダー ファイル #includef55648144b4a1c5cce7ad2f6519be0f3
2) 関数の定義: int Pipe(int filedes[2]);
3) 関数の説明: Pipe()パイプラインが確立され、ファイル記述子がパラメータ filedes 配列から返されます。 [Filedes [0] はパイプの読み取り側です。
FileDes [1] はパイプラインの書き込み側です。
4) 戻り値: 成功した場合は 0 を返し、それ以外の場合は -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
これは子プロセス内にあります。パイプからの文字列。
これは親プロセスにあり、ここでパイプに文字列を書き込みます。
こんにちは、これはパイプによる書き込みです。
パイプ内のデータが読み取られるとき、パイプは空です。後続の read() 呼び出しはデフォルトでブロックされ、データが書き込まれるまで待機します。非ブロックに設定する必要がある場合は、次の設定を行うことができます:
FCNTL (FileDes [0], F_SETFL, O_NONBLOCK);