UNIX implements through the fork() and exec() system calls an elegant two-step mechanism for
process creation and execution. fork() is used to
create the image of a
process using the one of an existing one, and exec is used to execute a program by overwriting that image with the program's one.
read more >>