Topic: No system command after fork

If you have a program that forks into a parent and child process, then after the fork the system command shell
function no-longer works from the parent.  It executes the command, but never returns control back to the program
which called it.

Is this a bug, or is there some good reason why it works this way?

Re: No system command after fork

Are you calling system() in C code?  What you describe sounds like execv behaviour.  Can you post some source code?