Advertisement
volkovich_maksim

8.18.a

Nov 28th, 2016
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <unistd.h>
  3. #include <sys/wait.h>
  4. #include <errno.h>
  5. #include <string.h>
  6. #include <stdlib.h>
  7.  
  8. //pr1|pr2|pr3
  9.  
  10. int main(int argc, char *argv[]){
  11.     int fd1[2], fd2[2];
  12.     int pid1,pid2,pid3/*,pid4*/;   
  13.  
  14.     if (pipe(fd1) < 0){
  15.         perror("pipe");
  16.         exit(1);
  17.     }
  18.     if (pipe(fd2) < 0){
  19.         perror("pipe");
  20.         exit(1);
  21.     }
  22.  
  23.     if ((pid1 = fork()) < 0){
  24.         perror("fork");
  25.         exit(1);
  26.     }else if (pid1 == 0){//son1
  27.         dup2(fd1[1], 1);
  28.         close(fd1[0]);
  29.         close(fd1[1]);
  30.         execlp(argv[1], argv[1], NULL);
  31.         perror("execlp");
  32.         _exit(1);
  33.     }
  34.  
  35.     if ((pid2 = fork()) < 0){
  36.         perror("fork");
  37.         exit(1);
  38.     }else if (pid2 == 0){//son2
  39.         dup2(fd1[0], 0);
  40.         dup2(fd2[1], 1);
  41.         close(fd2[1]);
  42.         close(fd2[0]);
  43.         close(fd1[0]);
  44.         close(fd1[1]);
  45.         execlp(argv[2], argv[2], NULL);
  46.         perror("execlp");
  47.         _exit(1);
  48.     }
  49.  
  50.     if ((pid3 = fork()) < 0){
  51.         perror("fork\n");
  52.         exit(1);
  53.     }else if (pid3 == 0){//son3
  54.         dup2(fd2[0], 0);
  55.         close(fd2[0]);
  56.         close(fd2[1]);
  57.         execlp(argv[3], argv[3], NULL);
  58.         perror("execlp\n");
  59.         _exit(1);
  60.     }
  61.  
  62.     close(fd1[0]);
  63.     close(fd1[1]);
  64.     close(fd2[0]);
  65.     close(fd2[1]);
  66.     wait(NULL);
  67.     wait(NULL);
  68.     wait(NULL);
  69.     wait(NULL);
  70.     return 0;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement