Child Process Article Index for
Child
Website Links For
Child
 

Information About

Child Process




A child process inherits most of its Attribute s, such as open File s, from its parent. In UNIX , a child process is in fact created (using Fork ) as a copy of the parent. The child process can then Overlay itself with a different program (using Exec ) as required.

Each process may create many child processes but will have only one parent process, except for the very first process which has no parent. The first process, called Init in UNIX, is started by the Kernel at Booting time and never terminates.


SEE ALSO