Hi, I've read through various documentation on the "fork" command, and basically the fork just seems to execute the same program all over again.
I would like for a parent program to spawn 6 children, and be aware whenever one child finishes, so that it can call another child in its place. Furthermore, these children should be just calls to a particular subroutine within the program. How can I go about doing this?
Thanks