Fork-Exec-Wait Pattern
- Tags
- comp-arch
Is a common programming pattern where a process calls fork followed by exec in the
child-process and wait
in the parent-process. This pattern allows the parent to
monitor and control the execution of the child process.