Chemistry Reference and  Research
           
 
Periodic Table
- standard table
- large table
 
Chemical Elements
- by name
- by symbol
- by atomic number
 
Chemical Properties
 
Chemical Reactions
 
Organic Chemistry
 
Branches of Chemistry
Analytical chemistry
Biochemistry
Computational Chemistry
Electrochemistry
Environmental chemistry
Geochemistry
Inorganic chemistry
Materials science
Medicinal chemistry
Nuclear chemistry
Organic chemistry
Pharmacology
Physical chemistry
Polymer chemistry
Supramolecular Chemistry
Thermochemistry

Process control block

A Process Control Block (PCB) is a data structure in the operating system kernel representing the state of a given process.

Implementations differ, but in general a PCB will contain:

  • The ID of the process (PID)
  • Register values for the process
  • The Program Counter for the process
  • The Memory Management Unit (MMU) for the process
  • A list of open files & sockets
  • Process accounting information, such as when the process was last run, how much CPU time it has accumulated, etcetera.

During a context switch, the running process is stopped and another process gets a chance to run. The kernel must stop the execution of the running process, copy out the values in hardware registers to its PCB, and update the hardware registers with the values of the new process.

01-04-2007 01:16:19
The contents of this article are licensed from Wikipedia.org under the GNU Free Documentation License. How to see transparent copy