Encyclopedia > Computer process

  Article Content

Computer process

A process is, roughly speaking, a task being run by a computer, often simultaneously with many other tasks. Many processes may exist simultaneously but they must take turns on the CPU (unless there are multiple CPU's available).

Processes are often called tasks in embedded operating systems.

Processes are typically managed by the operating system, which keeps them separated and allocates the resources they need so that they are less likely to interfere with each other and cause system failures. The operating system will also provide mechanisms for inter-process communication to enable processes to interact in safe and predictable ways.

In general, a process consists of:

  • Memory, typically a region of virtual memory.
  • Operating system resources that are allocated to the process, such as file descriptors (Unix terminology) or handles (Windows).
  • Security attributes, such as the process owner and the process's set of permissions.
  • Processor state, such as the content of registers. The state is stored in the actual registers when the process is executing, and in memory otherwise.

The last item, processor state, is associated with each of the process's threads in operating systems that support threads.

See Also



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Quadratic formula

... roots of both sides yields <math>x+\frac{b}{2a}=\frac{\pm\sqrt{b^2-4ac}}{2a}.</math> Subtracting b/(2a) from both sides, w ...

 
 
 
This page was created in 39.9 ms