91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

進程通信(管道 單向通信)

發布時間:2020-07-25 20:39:51 來源:網絡 閱讀:183 作者:秋笙夏笛 欄目:編程語言
 1 #include<stdio.h>
 2#include<sys/wait.h>
 3#include<unistd.h>
 4#include<string.h>
 5#include<stdlib.h>
 6int main()
 7 {
 8    int pipefd[2];
 9    if(pipe(pipefd)==-1)
 10    {
 11     perror("pipe");
 12     return -1;
 13    }
 14   pid_t pid=fork();
 15   if(pid<0)
 16    {
 17      perror("pid");
 18      return -1;
 19    }
 20   else if(pid==0)
 21    {
 22       close(pipefd[0]);
 23       char buf[20]="we are young";
 24        int i=0;
 25       while(i<10)
 26     {
 27       write(pipefd[1],buf,strlen(buf));
 28       sleep(1);
 29       i++;
 30     }
 31      exit(1);
 32    }
 33   else
 34    {
 35     close(pipefd[1]);
 36     char buf[200];
 37     int j=0;
 38     while(j<10)
 39     {
 40     memset(buf,'\0',sizeof(buf));
 41     ssize_t size= read(pipefd[0],buf,sizeof(buf));
 42       if(size>0)
 43       printf("%s\n",buf);
 44      j++;
 45     }
 46    if(waitpid(pid,NULL,0)==pid)
 47    {
 48       printf("wait success\n");
 49     }
 50    }
 51   return 0;
 52 }
 
 
 Makefile:
 1 Pipe:pipe.c
 2         gcc -o $@ $^
 3.PHONY:clean
 4clean:
 5         rm -f pipe

進程通信(管道  單向通信)

向AI問一下細節

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

AI

息烽县| 元氏县| 东台市| 岚皋县| 兴宁市| 扎鲁特旗| 廊坊市| 湖南省| 林甸县| 宣恩县| 黄山市| 峨边| 阳春市| 邢台市| 巴南区| 博野县| 钦州市| 察哈| 阜南县| 台江县| 额尔古纳市| 建湖县| 南汇区| 徐闻县| 连州市| 天柱县| 德阳市| 凤凰县| 陆河县| 佳木斯市| 绍兴市| 和平区| 克拉玛依市| 耿马| 柘城县| 闽侯县| 霍林郭勒市| 西乌珠穆沁旗| 峨山| 望城县| 千阳县|