2)定義函數:intpipe(intfiledes[2]);3)函數說明:pipe()會建立管道,并將文件描寫敘述詞由參數filedes數組返回。filedes[0]為管道里的讀取端filedes[1]則為管道的寫入端。4)返回值:若成功則返回零,否則返回-1,錯誤原因存于errno中。錯誤代碼:EMFILE進程已用完文件描寫敘述詞最大量ENFILE系統已無文件描寫敘述詞可用。" />

日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Linux pipe函數

系統 2437 0

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

?

Linux pipe函數


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦?。。?/p>

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 乡城县| 金乡县| 葫芦岛市| 华安县| 当涂县| 大冶市| 会昌县| 金寨县| 成都市| 余干县| 姜堰市| 和硕县| 蕲春县| 嘉定区| 仁布县| 济源市| 博湖县| 清流县| 合作市| 苏尼特右旗| 陈巴尔虎旗| 修文县| 专栏| 陵水| 鄂伦春自治旗| 江孜县| 台中县| 固安县| 敦化市| 磐安县| 通渭县| 灯塔市| 新民市| 马关县| 平湖市| 竹北市| 亳州市| 合江县| 丰宁| 焦作市| 泊头市|