0

次のファイル (file.txt) を 1 行ずつ読み取ります。

    1
   -5
   6
  -8
  -33
  21

親は負の数をプロセスに送信し、正の数を 2 番目のプロセスに送信します。

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/wait.h>

void Fils1(int *tube1)
{
  int n;
  int cpt = 0;
  close (tube1[1]);

  while (read (tube1[0], &n, 1) >0)
  {
    cpt+=n;
  }

  printf("Son 1, count : %i \n", cpt);
  exit (1) ;
}

void Fils2(int *tube2)
{
  int n;
  int cpt = 0;
  close (tube2[1]);

  while (read (tube2[0], &n, 1) >0)
  {
    cpt+=n;
  }

  printf("Son 2, count : %i \n", cpt);
  exit (1) ;
}


int main(int argc, char *argv[])
{
 FILE* file;
 int n;

 file = fopen (argv[1], "r");

 if (file == NULL){
      printf("Error open file %s\n", argv[1]);
      exit(1);
  }

 int tube1[2];
 int tube2[2];


 if (pipe(tube1) != 0)
 {
   fprintf(stderr, "Error tube 1\n");
   return EXIT_FAILURE;
 }


 if (pipe(tube2) != 0)
 {
   fprintf(stderr, "Error tube 2\n");
   return EXIT_FAILURE;
 }

 int pid1 = fork();

 if(pid1 == 0)
 {
    printf("Creation of the first son ! \n");
    Fils1 (tube1);
 }
 else
 {
    int pid2 = fork();
    if(pid2 == 0)
    {
      printf("Creation of the second son ! \n");
      Fils2 (tube2);
    }
    else
    {
       printf("I'm the father! \n");

       close (tube1[0]);
       close (tube2[0]);

       while (!feof(file))
       {
         fscanf (file,"%d",&n);
         if (n>0)
         {
             write (tube1[1], &n, 1);
         }
         else
         {
           write (tube2[1], &n, 1);
         }
       }
      fclose (file); 

      if(wait(NULL) == -1)
      {
        printf("Error wait()\n");
        exit(1);
      }
    }
 }

 return EXIT_SUCCESS;
}

それぞれの息子が数えて、それを画面に表示します。

私が実行すると、それしかありません:

I'm the father!
Creation of the first son!
Creation of the second son!

私も期待すると

   Son1, count : 28
   Son2, count : 46
4

1 に答える 1

3

問題は、必要に応じてパイプを閉じていないことです。

  • Child1 は閉じる必要がありますtube2(両端)
  • Child2 は閉じる必要がありますtube1(両端)。
  • 親は書き込み終了を閉じる必要があります ( の後while)
于 2012-04-26T16:26:14.400 に答える