Hello everyone, I am trying to execute a program from a parent using execl. I do the normal pipe setup and fork. Here is the trick... I need my children (there can be an arbitrary number of children) to all communicate with the parent.
Program "A" (parent) creates pipe forks and execl into "B" (child). In the main() function of program B I need to be able to read and write to the pipe.
Is there any way to access my pipe file descriptors in the child process after the excel takes over and executes my child process?
Thank you, ~Eric