首頁  >  文章  >  php教程  >  Linux pipe函數

Linux pipe函數

高洛峰
高洛峰原創
2016-12-13 11:34:301578瀏覽

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.

當管道中的資料被讀取後,管道為空。一個隨後的read()呼叫將預設的被阻塞,等待某些資料寫入。

若需要設定為非阻塞,則可做下列設定:

        fcntl(filedes[0], F_SETFL, O_NONBLOCK);

   NO 

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn