Operating System
Programming and Technical
Q. What is busy waiting?
A. The repeated execution of a loop of code while waiting for an event to occur is called busy-waiting.
The CPU is not engaged in any real productive activity during this period, and the process does not progress toward completion
Read Solution (Total 2)
-
- its a technique in which a process is repeatedly checks to see if a condition is true
- 9 years agoHelpfull: Yes(0) No(0)
- technique in which a process repeatedly check to see if a codition is true ,such as lock is availale to enter in critical section.
- 9 years agoHelpfull: Yes(0) No(0)
Operating System Other Question