中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

0903使用pipe函數創建一個匿名管道,并使用write向管道的一端寫入數據

發布時間:2020-07-29 20:21:05 來源:網絡 閱讀:688 作者:銀河星君 欄目:編程語言

/*

  • 編寫一個程序,使用pipe函數創建一個匿名管道,并使用write向管道的一端寫入數據,
  • 使用read函數從管道的另一端讀取數據。
    */

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <limits.h>

#define BUFSIZE PIPE_BUF

int main(int argc, char *argv[])
{
int fd[2];
int len;
pid_t pid;
char buffer[BUFSIZ]="hello,Linux world!\n";

//create pipe
if(pipe(fd)<0)
{
    printf("pipe failed!\n");
    exit(1);
}
//create son process
if((pid=fork())<0)
{
    printf("fork failed!\n");
    exit(1);
}
else if(pid>0)// father process
{
    close(fd[0]);
    write(fd[0],buf,strlen(buf));//father process write data to pipe
    exit(0);
}
else
{
    close(fd[1]);//son process close the write  of pipe
    len=read(fd[0],buf,BUFSIZE);//son process read data from pipe
    if(len<0)
    {
        printf("process failed when read a pipe.\n");
        exit(1);
    }
    else
        write(STDOUT_FILENO,buf,len);//output to stdout
    exit(0);
}
//return 0;

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

佛山市| 黑山县| 富锦市| 云南省| 迭部县| 万年县| 德安县| 葵青区| 理塘县| 蒙山县| 萍乡市| 曲阜市| 河源市| 阳朔县| 若羌县| 吴川市| 屯留县| 正阳县| 江口县| 惠水县| 鸡东县| 凤庆县| 承德县| 林州市| 东源县| 衡南县| 双桥区| 兴仁县| 徐闻县| 怀宁县| 乌审旗| 临漳县| 鸡泽县| 苏尼特右旗| 阜新| 峨边| 新龙县| 安庆市| 尼木县| 拜泉县| 正安县|