C - meaning of wait(NULL) when executing fork() in parallel

后端 未结 1 1223
情书的邮戳
情书的邮戳 2021-01-18 15:57

In the code below, do the forks actually run in parallel or one after another?

What is the meaning of wait(NULL) ?

(The program creates an n num

相关标签:
1条回答
  • 2021-01-18 16:34

    They do run in parallel, up until the point that one of them waits.

    wait(NULL) or more accurately wait(0) means wait until a state change in the child process. To find out about Unix / Linux C api calls, type man <function Name> on the command line. You'll need to get used to reading those pages, so better start now.

    In your case

    man wait
    

    would have given you what you needed.

    Since you've only fork(...)ed once, you have only one child. The parent waits until it changes state, and since the child's state during the fork is the same as the parent's state prior to the fork (that of running), the likely outcome is that the parent waits until the child dies. Then the parent will continue executing, but since it doesn't have much to do after the wait(...) call, it will quickly exit too.

    0 讨论(0)
提交回复
热议问题