Hello,
I'd like to write a program that creates multiple child processes in C. For instance, I begin with one process, this process creates only one child. Then the child process creates its own child etc.
I try to do it in a way so that the inital process awaits the ending only of its son but not of the other process. Can you help me to do that?