如何用n读取管道中的所有值。儿童过程

时间:2018-06-04 15:29:51

标签: c pipe fork posix

怎么可能? 例如:我有10个子进程:

for(int i = 0; i < 9; i++){
   pid = fork();
   if(pid == 0){
       int e = ( read from pipe) // pseudo_code
       ..something..
   }
}

例如我的问题是:如果我有10个整数,我怎么能只用10个子进程阅读所有?

0 个答案:

没有答案