kindprocessen
Kindprocessen, or child process, is a process created by another process, the parent. In most operating systems, processes are organized in a hierarchical tree. The child receives its own process identifier (PID) and typically inherits attributes from the parent, such as user credentials and some open file descriptors, but it has an independent execution context.
In Unix-like systems the common method to create a child is fork(), which creates a new process
The parent can wait for the child’s termination to obtain its exit status. If the parent exits
Inter-process communication mechanisms such as pipes, signals, and shared memory enable coordination between parent and child.