-1

このプログラムは、父親と 2 人の子供を作成します。チェーン文字があり、父親は 2 つのパイプを埋めます。最初のパイプには数字、2 番目のパイプには文字を入力し、最初の子供は最初のパイプから読み取り、いくらかを返します。彼が得た数、次男は2番目のパイプから読んで、彼が得た手紙の数を返します.

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>

main()
{
    printf("I am the father, I will create 2 sons, the first will read the numbers , the second will read the letters\n");
    char *word="alibas123sam";

    printf("Now 2 pipes will be created\n");
    int fd1[2];
    int fd2[2];
    pipe(fd1); pipe(fd2);
    printf("Now the father will write numbers in the first pipe, and letters in the second\n");
    int i;
    char numbers[20]; int j=0;
    char caracters[20]; int k=0;
    for (i=0;i<20;i++)
    {
        if(word[i]>='0' && word[i]<='9') //if number
        {
            close(fd1[0]); //closing reading
            write(fd1[1],&word[i],1);

        }
        else
        {
            close(fd2[0]);  
            write(fd2[1],&word[i],1);
        }

    }
    printf("The father has wrote in the 2 pipes, now its time for the sons\n");
    int f=fork();
    if(f==0) //first son
    {
        for(i=0;i<20;i++) {         
            close(fd1[1]); //closing writing
            read(fd1[0],&numbers[j],1);
            j++;

        }
        printf("first son read everything, he got %d Numbers\n", j);
    }
    else
    {
        f=fork();
        if(f==0)
        {
            for(i=0;i<20;i++) {         
            close(fd2[1]); //closing writing
            read(fd2[0],&caracters[k],1);
            k++;

        }   
        printf("second son read everything, he got %d caracters\n", k);
    }
}} 

エラー:

Disallowed system call: SYS_pipe
4

1 に答える 1

1

この問題は、フォークする前にファイル記述子を閉じると発生する可能性があります。コードを次のように再配置する

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>

main()
{
    printf("I am the father, I will create 2 sons, the first will read the numbers , the second will read the letters\n");
    char *word="alibas123sam";

    printf("Now 2 pipes will be created\n");
    int fd1[2];
    int fd2[2];
    pipe(fd1); pipe(fd2);
    printf("Now the father will write numbers in the first pipe, and letters in the second\n");
    int i;
    char numbers[20]; int j=0;
    char caracters[20]; int k=0;
    for (i=0;i<20;i++)
    {
        if(word[i]>='0' && word[i]<='9') //if number
        {
            close(fd1[0]); //closing reading
            write(fd1[1],&word[i],1);

        }
        else
        {
            close(fd2[0]);  
            write(fd2[1],&word[i],1);
        }

    }
    printf("The father has wrote in the 2 pipes, now its time for the sons\n");
    int f=fork();
    if(f==0) //first son
    {
        for(i=0;i<20;i++) {         
            close(fd1[1]); //closing writing
            read(fd1[0],&numbers[j],1);
            j++;

        }
        printf("first son read everything, he got %d Numbers\n", j);
    }
    else
    {
        f=fork();
        if(f==0)
        {
            for(i=0;i<20;i++) {         
            close(fd2[1]); //closing writing
            read(fd2[0],&caracters[k],1);
            k++;

        }   
        printf("second son read everything, he got %d caracters\n", k);
    }
}} 

動作するようでした。

于 2012-04-23T06:12:41.363 に答える