Fork

See also: The Software Cycle | Processor]

  1. A separation from current development.
  2. In processors, a separation from a child process.

1. Forked development processes come from one single development effort and usually continue concurrently. Occasionally, a forked project is dropped in favor of the previous and, other times, the main project is dropped.

Examples:

2. The fork() and fork1() functions create a new process.

The new process (child process) is an exact copy of the calling process (parent process). The child process inherits the following attributes from the parent process. From the UNIX MANual page

Examples: [1]

TakeDown.NET -> “Fork