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

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

Linux pipe函數(shù)

系統(tǒng) 2429 0

1. 函數(shù)說明

pipe(建立管道):
1) 頭文件 #include<unistd.h>
2) 定義函數(shù): int pipe(int filedes[2]);
3) 函數(shù)說明: pipe()會建立管道,并將文件描寫敘述詞由參數(shù)filedes數(shù)組返回。
????????????? filedes[0]為管道里的讀取端
????????????? filedes[1]則為管道的寫入端。
4) 返回值:? 若成功則返回零,否則返回-1,錯誤原因存于errno中。

??? 錯誤代碼:
???????? EMFILE 進程已用完文件描寫敘述詞最大量
??????? ?ENFILE 系統(tǒng)已無文件描寫敘述詞可用。
???????? EFAULT 參數(shù) filedes 數(shù)組地址不合法。

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;

}


    

執(zhí)行結(jié)果:


[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.

當管道中的數(shù)據(jù)被讀取后,管道為空。一個隨后的read()調(diào)用將默認的被堵塞,等待某些數(shù)據(jù)寫入。

若須要設(shè)置為非堵塞,則可做例如以下設(shè)置:

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

?

Linux pipe函數(shù)


更多文章、技術(shù)交流、商務合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

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

【本文對您有幫助就好】

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

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 镇康县| 尚义县| 监利县| 峨边| 彭水| 昭平县| 新河县| 临沂市| 南靖县| 绥阳县| 东宁县| 屏山县| 安阳市| 柞水县| 滕州市| 诏安县| 行唐县| 深水埗区| 庆安县| 谷城县| 容城县| 海兴县| 凯里市| 无棣县| 柯坪县| 平顶山市| 鄄城县| 邵武市| 塔河县| 蛟河市| 建德市| 隆回县| 凤凰县| 广安市| 县级市| 双鸭山市| 罗城| 岑溪市| 威信县| 阿拉善盟| 油尖旺区|