使用fork,execvp执行UNIX命令

时间:2011-04-07 09:08:08

标签: c++

我正在尝试创建一个程序,该程序接收包含UNIX命令列表的输入文件,并按特定顺序执行这些命令。 我正在学习fork()wait()execvp()系统调用,并对等待和分叉模式有一些疑问。 这是我用于执行进程的结构。进程可以并行或顺序执行。我将在订购中决定这一点。 假设我必须按照A,B,C D,E的顺序执行进程。

这是我为此提出的结构。如果这是正确的,请告诉我。

ExecuteNodes function()

For loop {}from 0 to vector size // vector - this is the data structure that will have all the input file details 
{
         For loop {}// this is for my ordering logic. For all nodes I calculate the number of      nodes     that can execute paralley . Also using this loop to set the nodes ready for execution
         For loop {
           if that node is ready for execution.
              run a loop for the number of concurrent processes for that node .
              pid = fork()
              if(pid == 0)
              execvp(); 
         }
}

for loop {all nodes}
{
    wait()
} 

这种结构是否正确?请告诉我您的建议/意见。

2 个答案:

答案 0 :(得分:1)

...
if( pid == 0 )
  execvp();
else if ( pid == -1 )
  // handle errors
...

答案 1 :(得分:0)

您建议的结构不允许顺序执行,因为在所有节点都已执行之前,您不会调用wait。您可以使用wait()的一种变体,它允许WNOHANG选项检查子项的终止而不会阻塞。

当你调用fork()时,你需要检查-1表示错误,并检查0表示在子进程中已经返回了调用。

很难确切地知道要建议的结构,因为我不确定您需要哪些顺序约束。