您好,登錄后才能下訂單哦!
#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; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。