this is my question on fork()
and the respective wait()
that will take place:
In my main()
, I call a function, let's say function()
that uses the fork()
system call, but I want function()
to return without waiting for the children to terminate, and thus main()
has to wait for them before terminating.
So, is it possible for main()
to call wait()
on children that have been fork()
ed in the body of another function called my this main()
?
If yes, do I have to pass the children's pid's to main()
through a variable?
Yes, main can wait for children which forked in sub-functions. wait () waits for any child to terminate.
You will still want to pass the return value of fork() to the main function, because you will need it to decide whether you are the child or the parent process.