Definition of Child process

FOLDOC
child process
<operating system> A process created by another process (the parent process). 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 boot time and never terminates. A child process inherits most of its attributes, such as open files, from its parent. In fact in Unix, a child process is created (using fork) as a copy of the parent. The chid process can then overlay itself with a different program (using exec) as required.
(1997-11-22)

Search Dictionary:
Search Web Search Dictionary



Child process definition was found in categories: Language, Idioms & Slang(1)  Encyclopedia(1)  

Child process Definition from Language, Idioms & Slang Dictionaries & Glossaries

hEnglish - advanced version
child process

child process
a process created by another process (the parent process). 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 boot time and never terminates. a child process inherits most of its attributes, such as open files, from its parent. in fact in unix, a child process is created (using fork) as a copy of the parent. the chid process can then overlay itself with a different program (using exec) as required.



Child process Definition from Encyclopedia Dictionaries & Glossaries

Wikipedia English - The Free Encyclopedia
Child process
A child process is a computer process created by another process (the parent process).

A child process inherits most of its attributes, such as open files, 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 more at Wikipedia.org...