Linux pipe函數

來源:互聯網
上載者:User

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);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.