Difference between revisions of "QUANTUM"

From VSI OpenVMS Wiki
Jump to: navigation, search
(Created page with "'''QUANTUM''' is a system parameter that defines the following: * Processor time: maximum amount of processor time a process can receive before control...")
 
 
Line 1: Line 1:
'''QUANTUM''' is a [[System Parameters|system parameter]] that defines the following:
+
Quantum may also refer to a [[QUANTUM (System Parameter)|system parameter]].
  
* Processor time: maximum amount of processor time a process can receive before control passes to another process of equal priority that is ready to compute
+
'''Quantum''' is the period of time during which the system allocated the CPU resource to each process that is not waiting for other resources.
* Balance set residency: minimum amount of service a compute- state process must receive before being swapped out to secondary storage
+
During its quantum, a process can execute until any of the following events occur:
  
QUANTUM has the DYNAMIC and MAJOR attributes. On [[Alpha]] and [[Integrity]] servers, QUANTUM also has the AUTOGEN attribute.
+
* The process is preempted by a higher priority process.
 
+
* The process voluntarily yields the CPU by requesting a wait state for some purpose (for example, to wait for the completion of a user I/O request).
[[Category:System Parameters]]
+
* The process enters an involuntary wait state, such as when it triggers a hard page fault (one that must be satisfied by reading from disk).

Latest revision as of 06:23, 3 July 2019

Quantum may also refer to a system parameter.

Quantum is the period of time during which the system allocated the CPU resource to each process that is not waiting for other resources. During its quantum, a process can execute until any of the following events occur:

  • The process is preempted by a higher priority process.
  • The process voluntarily yields the CPU by requesting a wait state for some purpose (for example, to wait for the completion of a user I/O request).
  • The process enters an involuntary wait state, such as when it triggers a hard page fault (one that must be satisfied by reading from disk).