What is round-robin scheduling? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T02:05:26Zhttp://stackoverflow.com/feeds/question/79389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79389/what-is-round-robin-scheduling1What is round-robin scheduling?Benoit2008-09-17T02:43:34Z2008-09-19T15:59:01Z
<p>In a multitasking operating system context, sometimes you hear the term round-robin scheduling. What does it refer to?<br />
What other kind of scheduling is there?</p>
http://stackoverflow.com/questions/79389/what-is-round-robin-scheduling/79410#794102Answer by etchasketch for What is round-robin scheduling?etchasketch2008-09-17T02:45:01Z2008-09-17T02:45:01Z<p><a href="http://en.wikipedia.org/wiki/Round_robin_scheduling" rel="nofollow">Round robin scheduling.</a></p>
<p><a href="http://en.wikipedia.org/wiki/Category:Scheduling_algorithms" rel="nofollow">See also.</a></p>
http://stackoverflow.com/questions/79389/what-is-round-robin-scheduling/79426#794263Answer by Swati for What is round-robin scheduling?Swati2008-09-17T02:47:44Z2008-09-17T02:47:44Z<p><strong>Round Robin Scheduling</strong></p>
<p>If you are a host in a party of 100 guests, round-robin scheduling would mean that you spend 1 minute (a fixed amount) per guest. You go through each guest one-by-one, and after 100 minutes, you would have spent 1 minute with each guest. More on <a href="http://en.wikipedia.org/wiki/Round-robin_scheduling" rel="nofollow" title="Round-robin scheduling">Wikipedia</a>.</p>
<p>There are many other types of scheduling, such as priority-based (i.e. most important people first), first-come-first-serve, earliest-deadline-first (i.e. person leaving earliest first), etc. You can start off by googling for scheduling algorithms or check out <a href="http://en.wikipedia.org/wiki/Scheduling_algorithm" rel="nofollow" title="scheduling algorithms">scheduling at Wikipedia</a></p>
http://stackoverflow.com/questions/79389/what-is-round-robin-scheduling/79431#794310Answer by mbowcock for What is round-robin scheduling?mbowcock2008-09-17T02:48:13Z2008-09-17T02:48:13Z<p>Round robin is a simple scheduling algorithm where time is divided evenly among jobs without priority.</p>
<p>For example - if you have 5 processes running - each process will be allowed to run for 1/5 a unit of time before another process is allowed to run. Round robin is typically easy to implement in an OS.</p>
http://stackoverflow.com/questions/79389/what-is-round-robin-scheduling/83324#833241Answer by InSciTek Jeff for What is round-robin scheduling?InSciTek Jeff2008-09-17T13:40:38Z2008-09-18T04:17:00Z<p>The answers here and even the Wikipedia article describe round-robin scheduling to inherently include periodic timeslicing. While this is very common, I believe that Round-Robin scheduling and timeslicing are <strong><em>not</em></strong> exactly the same thing. Certainly, for timeslicing to make sense, round-robin schedling is implied when rotating to each task, however you can do round-robin scheduling without having timeslicing. That is, each task at the same priority in the round-robin rotation can be allowed to run until they reach a resource block condition and only then having the next task in the rotation run. In other words, when equal priority tasks exist, the reschedling points are <strong><em>not</em></strong> time pre-emptive.</p>
<p>The above idea is actually realized specifically in the case of Wind River's VxWorks kernel. Within their priority scheme, tasks of each priority run round robin but do not timeslice without specifically enabling that feature in the kernel. The reason for this flexibility is to avoid the overhead of timeslicing tasks that are already known to run into a block within a well bounded time.</p>
<p>Therefore, while timeslicing based scheduling implies round-robin scheduling, round-robin scheduling does not require equal time based timeslicing.</p>
http://stackoverflow.com/questions/79389/what-is-round-robin-scheduling/84198#841983Answer by unwieldy for What is round-robin scheduling?unwieldy2008-09-17T15:03:50Z2008-09-19T15:59:01Z<p>Timeslicing is inherent to any round-robin scheduling system in practice, AFAIK.</p>
<p>I disagree with InSciTek Jeff's implication that the following <em>is</em> round-robin scheduling:</p>
<blockquote>
<p>That is, each task at the same priority in the round-robin rotation can be allowed to run until they reach a resource blocking condition before yeilding to the next task in the rotation.</p>
</blockquote>
<p>I do not see how this could be considered round-robin. This is actually preemptive scheduling. However, it is possible to have a scheduling algorithm which has elements of both round-robin and preemptive scheduling, which VxWorks does if round-robin scheduling and preemption are both enabled (round-robin is disabled by default). The way to enable round-robin scheduling is to provide a non-zero value in <em>kernelTimeSlice</em>.</p>
<p>I do agree with this statement:</p>
<blockquote>
<p>Therefore, while timeslicing based scheduling implies round-robin scheduling, round-robin scheduling does not require equal time based timeslicing.</p>
</blockquote>
<p>You are right that it doesn't require equal time. Preemption can muck with that. And actually in VxWorks, if a task is preempted during round-robin scheduling, when the task gets control again it will execute for the rest of the time it was allocated. </p>
<p>Edit directed at InSciTek Jeff (I don't have comment privileges)
Yes, I was referring to task locking/interrupt disabling, although I obviously didn't express that very well. You preempted me (ha!) with your second comment. I hope to debate the more salient point, that you believe round-robin scheduling can exist without time slicing. Or did you just mean equal time based time slicing? I disagree with the former, but agree with the latter. I am eager to learn. Thanks.</p>
<p>Edit2 directed at Jeff:</p>
<blockquote>
<p>Round-robin can exist without timeslicing. That is exactly what happens in VxWorks when kernelTimeSlice is disabled (zero).</p>
</blockquote>
<p>I disagree with this statement. See <a href="http://www.slac.stanford.edu/exp/glast/flight/sw/vxdocs/vxworks/guide/c-basic.html" rel="nofollow">this document</a> section 2.2.3 with the heading Round-Robin Scheduling.</p>
<blockquote>
<p>Round-robin scheduling uses time
slicing to achieve fair allocation of
the CPU to all tasks with the same
priority. Each task, in a group of
tasks with the same priority, executes
for a defined interval or time slice.
Round-robin scheduling is enabled by
calling kernelTimeSlice( ), which
takes a parameter for a time slice, or
interval. [...] If round-robin
scheduling is enabled, and preemption
is enabled for the executing task, the
system tick handler increments the
task's time-slice count.</p>
</blockquote>
<p>Timeslicing is inherent in round-robin scheduling. Otherwise you are relying on a task to give up CPU control, which round-robin scheduling is intended to solve.</p>