3

我正在 Ubuntu 中学习进程及其行为,但我对 wait() 有点困惑。所以我的问题是:

  1. while(wait(NULL)>0);语句如何 正在工作中?
  2. wait()中NULL的目的是什么?

我已经在终端中看到了输出,但是即使它执行了 wait() 函数,父级也在执行并生成子级。父级执行不应该停止吗?这是代码:

int main(int argc, char *argv[])
{
pid_t childid;

if(argc!=2)
{
    printf("Please provide an argument in terminal! \n");
    return 0;
}

int i,n=atoi(argv[1]);

for(i=0;i<n;i++)
{
    childid=fork();

    if(childid==0)
    {
        printf("Inside Child process! \n My id is %d\n",getpid());
        break; // creating fan process structure
    }
    else
        if(childid>0)
        {
            printf("Inside Parent Process! \n My id is %d\n",getpid());
        }
}

while(wait(NULL)>0); 

printf("After While Statment!\n My id is %d\n My parent ID is %d\n Child id is %d\n",getpid(),getppid(),childid);

}

我知道这是一个非常蹩脚的问题,但这是人们学习的方式:)

谢谢

4

1 回答 1

4

while(wait(NULL)>0);语句如何 正在工作中?

函数wait,等待任何子进程终止,如果成功,则返回终止子进程的进程标识符。如果没有子进程,则返回-1。

在您的代码中,父进程基本上等待它创建的所有子进程的终止。

对于任何孩子,此调用将立即返回 -1,因为他们尚未创建任何进程。

wait() 中 NULL的目的是什么? 如果你看到wait的原型,是这样的,

pid_t wait(int *status);

父进程可以在变量状态中获取子进程的退出状态(我们需要在等待函数中传递一个整数的地址,以更新该整数),然后使用 WEXITSTATUS 宏来提取该值。

传递 NULL(我们传递 NULL,因为变量是指针类型)意味着,程序员对该值不感兴趣,他正在通知等待调用。

我稍微修改了您的代码,以解释等待函数的返回值和非 NULL 参数的使用。所有的孩子现在都返回一个值(循环索引 i),它是由父级获取的。

PL。看看这是否有帮助,

#include<stdio.h>
#include<sys/types.h>
#include<sys/wait.h>
#include<stdlib.h>

int main(int argc, char *argv[])
{
  pid_t childid;
  int ret;
  int status;

 if(argc!=2)
 {
    printf("Please provide an argument in terminal! \n");
    return 0;
 }

int i,n=atoi(argv[1]);

for(i=0;i<n;i++)
{
  childid=fork();

  if(childid==0){
    printf("Inside Child process! \n My id is %d\n",getpid());
    break; // creating fan process structure
  }
  else if(childid > 0){
        printf("Inside Parent Process! \n My id is %d\n",getpid());
  }
}

//The line below, will be immediatly false for all  the children
while ((ret= wait(&status))>0)
{
  printf("After While My id is %d and my  child with pid =%d exiting with return value=%d\n" ,
  getpid(),ret, WEXITSTATUS(status));
}
//The if below will be true for the children only
if ((0 > ret) && (childid == 0)){
   printf("Child with id %d exiting and my parent's id is %d\n", getpid(), getppid());
   exit(i);
 }
else{
   printf("Parent Finally Exiting\n");
 }
}
于 2012-09-23T11:46:45.883 回答