我正在尝试创建一个程序,使用户定义了许多子项。父母必须使用命名管道(这是一项要求)与他的孩子一起来回发送信息。所以,我需要创建一些等于我正在分叉的孩子数量的命名管道。我怎样才能有效地做到这一点,并让每个孩子知道他的烟斗名称是什么?
pid_t childpid;
for(i = 0; i < numWorker; i++){
// char *pipeName = "somename";
// change the pipeName to reflect the child by adding a suffix
// mkfifo(pipeName, 0666);
childpid = fork();
if(childpid < 0){
perror("fork\n");
}
else if(childpid == 0){
signal(SIGCONT, handleSignalChild);
// how can I open the fifo here and then carry on reading and writing
//inside the while() below?
break; // child exits the creation loop.
}
}
// Main program execution begins here
while(1){
if(childpid == 0){
// read and write to the already opened pipes.
//code to handle child execution.
}
else{
// open all fifo pipes and get ready to read and write stuff.
//code to handle parent execution.
}
}
编辑:重新提出问题以使其更有意义。