如何通过管道将最后一个孩子的号码发送给父母?

时间:2016-03-31 16:22:05

标签: c pipe fork parent-child

所以我有父进程和5个子进程。我希望父母与孩子1,孩子1和孩子2,...,孩子5和父母沟通。

我能够与除最后一次连接之外的所有孩子进行通信 - 从子5到父进程。

这是我的代码

int main(void){
pid_t child[CHILDS+1];
int aux = 0, id, i, num, pipes[CHILDS][2];

for(i = 0; i < CHILDS +1; i++){

    if((pipe(pipes[i])) == -1){
        perror("Pipe failed");
        return 1;
    }
}

id = babyMaker(child);

srand((unsigned) getpid());
num = rand() % 50 + 1;

if(id == 0){
    printf("Parent number: %d\n", num);
    close(pipes[i][0]);
    close(pipes[CHILDS][1]);

    for(i = 0; i < CHILDS; i++){
        if(i != id){
            close(pipes[i][0]);
            close(pipes[i][1]); 
        }
    }

    write((pipes[0][1]), &num, sizeof(int));
    close(pipes[0][1]);


    read(pipes[CHILDS][0], &aux, sizeof(int));

    while(wait(NULL) > 0);

    close(pipes[CHILDS][0]);

    if(aux > num){
        num = aux;
    }

    printf("Greatest number: %d\n", num);

}else{
    close(pipes[id-1][1]);
    close(pipes[id][0]);

    for(i = 0; i < CHILDS; i++){
        if(i != id && i != id-1){
            close(pipes[i][0]);
            close(pipes[i][1]); 
        }
    }

    printf("Child %d with number: %d\n",id, num);

    read((pipes[id-1][0]), &aux, sizeof(int));
    close(pipes[id-1][0]);

    if(num < aux){
        num = aux;
    }

    write((pipes[id][1]), &num, sizeof(int));
    close(pipes[id][1]);

    printf("\nChild %d received the number: %d\n", id, aux);
    exit(id);
}

return 0;
}

babyMaker在哪里我使用fork()为父级返回0,为子级返回1到5。

CHILDS只是标题上的已定义变量。

我想检查孩子的号码是否大于收到的号码,如果是,请发送。如果没有发送该进程的原始号码。父母打印的人数最多。

我一直想弄明白,却找不到我所缺少的东西。如果您需要更多信息,请告诉我们。

编辑1:因为在这里运行代码可能与babyMaker和头文件有关。

babyMaker

int babyMaker(pid_t *child){
int i;

for(i = 0; i < CHILDS; i++){
        if((child[i] = fork()) == 0){
            return i+1;
        }
    }
return 0;
}

头文件

#ifndef HEAD_H

#define HEAD_H

#include <stdio.h>
#include <stdlib.h>
#define CHILDS 5

#endif

在主要部分添加#include“head.h”,一切都应该有效

1 个答案:

答案 0 :(得分:1)

对于这一行:

id = babyMaker(child);

id的值为1到5。

这意味着这一行:

close(pipes[id][0]);

可以成为

close(pipes[5][0]);

无效,因为它被定义为管道[5] [2]。这是一个错误的错误。

此外,由于同样的原因,这些行无效:

close(pipes[CHILDS][1]);
read(pipes[CHILDS][0], &aux, sizeof(int));
close(pipes[CHILDS][0]);

也许你的意思是这一行:

int aux = 0, id, i, num, pipes[CHILDS][2];

是这样的:

int aux = 0, id, i, num, pipes[CHILDS+1][2];