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

溫馨提示×

溫馨提示×

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

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

[Linux管道和IPC]在兄弟進程中使用管道

發布時間:2020-07-15 16:11:21 來源:網絡 閱讀:304 作者:銀河星君 欄目:編程語言
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <limits.h>
#include <string.h>
#include <errno.h>
#define BUFSIZE 4096  //定義一個最大的讀寫空間
int main(void)
{
    int fd[2];
    char buf[BUFSIZE] = "hello!I am your  brother!\n";        // 緩沖區
    pid_t pid;
    int len;
    if ( (pipe(fd)) < 0 )           //創建管道
     {
        perror("pipe failed\n");
     }
    if ( (pid = fork()) < 0 )        //創建第一個子進程
     {
        perror("fork failed\n");
     }
    else if ( pid == 0 )            //子進程
    {
        close ( fd[0] );                //關閉不使用的文件描述符
        write(fd[1], buf, strlen(buf));   //發送字符串
        exit(0);
     }
    if ( (pid = fork()) < 0 )             //創建第二個子進程
     {
        perror("fork failed\n");
     }
    else if ( pid > 0 )             //父進程
    {
        close ( fd[0] );
        close ( fd[1] );
        exit ( 0 );
     }
    else                       //第二個子進程中
    {
        close ( fd[1] );                  //關閉管道文件描述符
        len = read (fd[0], buf, BUFSIZE);  //讀取消息
        write(STDOUT_FILENO, buf, len); //將消息輸出到標準輸出
        exit(0);
     }
    return 0;
}


向AI問一下細節

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

AI

黄梅县| 奉新县| 高邮市| 孟连| 友谊县| 贡嘎县| 高清| 鄂托克旗| 丰县| 光泽县| 福建省| 五河县| 金山区| 新蔡县| 从江县| 雷山县| 凭祥市| 昭平县| 乳山市| 延寿县| 武安市| 宽甸| 师宗县| 青川县| 巴南区| 诸城市| 苍南县| 文化| 云安县| 扬州市| 文山县| 武夷山市| 隆德县| 永州市| 香河县| 九寨沟县| 临汾市| 和平县| 喀喇沁旗| 浦县| 武功县|