Currently there may be errors shown on top of a page, because of a missing Wiki update (PHP version and extension DPL3).
Navigation
Topics Help • Register • News • History • How to • Sequences statistics • Template prototypes

Idle cycle

From Prime-Wiki
Revision as of 12:03, 12 February 2019 by Karbon (talk | contribs) (restored)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Most programs either run in a short amount of time or wait for user interaction and then use CPU time in response to user requirements.

It is expected that the amount of CPU time is not too long in order not to degrade the performance of other programs that might be running in the same computer.

When all programs are waiting for user response or for some event to occur, the operating system executes the so called idle cycle which does not perform anything. It normally executes some processor instruction that makes the CPU run cooler until some event happens.

The programs for distributed computing projects run all the time thus there is no idle cycle. In order not to degrade the operation of other programs, they run at a lower priority, so these programs can respond quickly to user requirements.

External links