What is busy waiting?

Answers were Sorted based on User's Feedback



What is busy waiting?..

Answer / v.vijayakumar

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.

Is This Answer Correct ?    82 Yes 11 No

What is busy waiting?..

Answer / preet baidwan

while any process is in its critical section , any other process that tries to enter its critical section must loop continously in the entry code.this continue looping is clearly a problem in a real multiprogramming system. where a single CPU is shared among many processes. Busy waiting wastes CPU cycles that could have been used by some process in more productive way. This type of semaphore is also called a spinlock.

Is This Answer Correct ?    45 Yes 4 No

What is busy waiting?..

Answer / mohd dilshad

busy-waiting or spinning is a technique in which a process
repeatedly checks to see if a condition is true, such as
whether keyboard input is available, or if a lock is
available. Spinning can also be used to generate an
arbitrary time delay, a technique that was necessary on
systems that lacked a method of waiting a specific length
of time. On modern computers with widely differing
processor speeds, spinning as a time delay technique often
produces unpredictable results unless code is implemented
to determine how quickly the processor can execute a "do
nothing" loop.

Is This Answer Correct ?    18 Yes 17 No

Post New Answer

More Operating Systems General Concepts Interview Questions

What are the different types of fragmentation?

0 Answers  


What do you mean by a semaphore?

0 Answers   Flextronics,


How you can detect deadlock condition?

0 Answers  


Explain what is meant by repetition of information and inability to represent information. Explain why each of these properties may indicate a bad relational database design.

0 Answers  


What is the latest version of mint?

0 Answers  






Can you please explain the difference between demand-paging and pre-paging?

0 Answers  


Explain the concept of real-time operating systems?

0 Answers  


What is a root program?

0 Answers  


How do an incremental process model and certification work together to produce high quality software? In your own words, describe the intent of certification in the clean room software engineering context.

0 Answers  


Explain binary semaphore and its functionality.

0 Answers   Accenture,


What are the various ipc mechanisms?

0 Answers  


If there are too many page faults what is the problem?

2 Answers   Verifone,


Categories