Get premium membership and access questions with answers, video lessons as well as revision papers.

Describe round robin scheduling. What is the parameter associated with the scheduler? What is the issue in choosing the parameter?

      

Describe round robin scheduling. What is the parameter associated with the scheduler? What is the issue in choosing the parameter?

  

Answers


Faith
Round-robin scheduling works by giving each process a “timeslice” to run in, implemented by a ready
queue and a regular timer interrupt. When a timeslice expires, the next process pre-empts the current
process and runs for its timeslice, putting the pre-empted process at the end of the queue. The
parameter concerned with it is the timeslice, which has to be exactly the right size. If it was too short,
there is a large overhead every time it expires and the context switches, if it was too long, then we might
end up with an unresponsive system.
Titany answered the question on April 26, 2022 at 13:37


Next: What is the difference between preemptive scheduling and non-preemptive scheduling? What is the issue with the latter?
Previous: The traditional UNIX scheduler is a priority-based round robin scheduler (also called a multi-level round robin scheduler). How does the scheduler go about favouring I/O bound...

View More Operating Systems Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions