answersLogoWhite

0

An example of Process Scheduling

Updated: 12/18/2022
User Avatar

Wiki User

15y ago

Best Answer

Scheduling: FCFS [60]

* assume processes arrive in this order: P1, P2, P3 * nonpreemptive scheduling * average waiting time: (0+24+27)/3=17 ms PIDBurstP124P23P33 Gantt chart 0242730

* assume processes arrive in this order: P2, P3, P1 * average waiting time: (6+0+3)/3=3 ms

PIDBurstP23P33P124 Gantt chart 03630

* in general, FCFS average waiting time is not minimal * in general, better to process shortest jobs first

Scheduling: Round Robin (RR) [61]

* similar to FCFS, but preemption to switch between processes * time quantum (time slice) is a small unit of time (10 to 100 ms) * process is executed on the CPU for at most one time quantum * implemented by using the ready queue as a circular queue * head process gets the CPU * uses less than a time quantum IMPLIES gives up the CPU voluntarily * uses full time quantum IMPLIES timer will cause an interrupt * context switch will be executed * process will be put at the tail of queue

[III.B] Scheduling: RR [62]

* assume processes arrive in this order: P1, P2, P3 * preemptive scheduling * time quantum: 4 ms * P1 uses a full time quantum; P2, P3 use only a part of a quantum * P1 waits 0+6=6; P2 waits 4; P3 waits 7 * average waiting time: (6+4+7)/3=5.66 ms

PIDBurstP124P23P33 Gantt chart 047101418222630

* very large time quantum IMPLIES RR = FCFS * very small time quantum IMPLIES context switch is too much overhead * quantum approximately CPU burst IMPLIES better turnaround * rule of thumb: 80% should finish burst in 1 quantum

Scheduling: Shortest-Job-First (SJF) [63]

* assume the next burst time of each process is known * SJF selects process which has the shortest burst time * optimal algorithm because it has the shortest average waiting time * impossible to know in advance * OS knows the past burst times - make a prediction using an average * nonpreemptive * or preemptive: * shortest-remaining-time-first * interrupts running process if a new process enters the queue * new process must have shorter burst than remaining time

Scheduling: SJF [64]

* assume all processes arrive at the same time: P1, P2, P3, P4 * nonpreemptive scheduling * average waiting time: (3+16+9+0)/4=7 ms

PIDBurstP16P28P37P43 Gantt chart 0391624

* SJF is optimal: shortest average waiting time * but burst times are not known in advance * next_predicted burst time by (weighted) average of past burst times * * next_predict = last_observed + last_predict * next_predict = initialized value (usually 0) * next_predict = last_observed

SJF: Weighted Average Burst [65]

: : : recent and past history the same time 0 1 2 3 4 5 6 7 Burst ()

6 4 6 4 13 13 13 Guess () 10 8 6 6 5 9 11 12

Scheduling: SJF [66]

* assume processes arrive at 1 ms intervals: P1, P2, P3, P4 * preemptive scheduling: shortest-remaining-time-first* P1 waits 0+(10-1)=9; P2 waits 1-1=0 * P3 waits 17-2=15; P4 waits 5-3=2 * average waiting time: (9+0+15+2)/4=6.5 ms

PIDBurstArrivalP180P241P392P453 Gantt chart 015101726

* nonpremptive SJF: 7.75 ms

Scheduling: Priority (PRIO) [67]

* assume a priority is associated with each process * select highest priority process from the ready queue * let be the (predicted) next CPU burst of a process * SJF is a special case of priority scheduling * assume: high numbers IMPLY high priority * then priority is * assume: low numbers IMPLY high priority * then priority is * equal-priority processes are scheduled in FCFS order * PRIO can be preemptive or nonpreemptive * priorities can be defined internally* memory requirements, number of open files, burst times * priorities can be defined externally * user, department, company

Scheduling: PRIO [68]

* assume all processes arrive at the same time: P1, P2, P3, P4, P5 * nonpreemptive scheduling * high priority: low number * some OS use a high number!!! See VOS. * average waiting time is: (6+0+16+18+1)/5=8.2 ms

PIDBurstPriorityP1103P211P323P414P552 Gantt chart 0161618 19

* indefinite blocking (starvation): low priority process never runs * aging: low priorities increase with waiting time, will eventually run

VOS Scheduling: PRIO, FCFS, SJF [69]

for (i=1; i<=10; i++){ /* 10 CPU BURSTS */

for (j=1;j<=HOWLONG;j++) /* 1 CPU BURST */

pm_busywait(); /* PID1:long PID2:medium PID 3:short*/

pm_yield(); /* GO BACK TO READY QUEUE */

}

PRIOFCFSSJFPIDBurstpriority=fixedpriority=equalpriority=1/burst1long21low2medium3 high1medium3short1 low1high

* schedulers favor different PIDs * SUMMARY shows CPU burst (running) time for each PID * SUMMARY shows waiting time for each PID in ready queue * Gantt chart shows how long each PID is on the CPU * schedulers have different performance

VOS Scheduling: PRIO [70]

================================================================

FREE SUSPENDED READY RUNNING WAITING RECEIVING SLEEPING WRITING READ

PID time cnt time cnt time cnt time cnt time cnt time cnt time cnt time cnt ...

--- ---- --- ---- --- ---- --- ---- --- ---- --- ---- --- ---- --- ---- ---

0 0 1 0 0 72 2 17 3 0 0 0 0 0 0 0 0

1 29 2 1 1 25 11 34 11 0 0 0 0 0 0 0 0

2 64 2 0 1 1 11 24 11 0 0 0 0 0 0 0 0

3 16 2 1 1 58 11 14 11 0 0 0 0 0 0 0 0

4 89 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0

5 89 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0

6 89 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0

7 89 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0

8 89 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0

9 89 2 0 1 0 1 0 1 0 0 0 0 0 0 0 0

---- --- ---- --- ---- --- ---- --- ---- --- ---- --- ---- --- ---- ---

TOT 643 14 2 4 156 36 89 37 0 0 0 0 0 0 0 0

Utilization: 80.9 %Busy

Throughput : 2.0 Jobs/Min

Wait Time : 28.0 Sec/Job

Burst Time : 24.0 Sec/Job

VOS Scheduling: PRIO [71]

Scheduling Algorithm: PRIO

>>> SUMMARY (READY) <<< >>>>>>>>>>> SUMMARY (RUNNING) <<<<<<<<<<

PID TOT Wait Time TOT Burst Time / Cnt = Single Burst

=========

1 25 34 11 3.1

2 1 24 11 2.2

3 58 14 11 1.3

Sum Wait Time: 84 /3 Jobs Sum Burst Time: 72 /3 Jobs

Avg Wait Time: 28 Sec/Job Avg Burst Time: 24 Sec/Job

Longest Wait: 58(PID: 3) Longest Single Burst: 3.1(PID: 1)

Shortest Wait: 1(PID: 2) Shortest Single Burst: 1.3(PID: 3)

* other algorithms will have different average wait time

VOS Scheduling: PRIO [72]

Gantt chart of CPU Usage (Last Scheduler: PRIO)

------------------+-----------+---+-----+---+---+-----+---+--

PID |0 |2 |2 |2 |2 |2 |2 |2

------------------+-----------+---+-----+---+---+-----+---+--

time 9 15 17 20 22 24 27 29

--+-----+---+---+-+-----+-------+-----+-----+-------+-----+--

PID |2 |2 |2 |2|1 |1 |1 |1 |1 |1 |1

--+-----+---+---+-+-----+-------+-----+-----+-------+-----+--

time 31 34 36 3839 42 46 49 52 56 59

------+-----+-----+-------+-+---+-+---+-+-+---+-+---+-+------

PID |1 |1 |1 |1|3 |3|3 |3|3|3 |3|3 |3|3

------+-----+-----+-------+-+---+-+---+-+-+---+-+---+-+------

time 63 66 69 7374 7677 798081 8384 8687

* other algorithms will favor different PIDs

Mechanism (how) vs. Policy (what) [73]

mechanism * how to do something * implementation or function with parameters * used in many ways (by policies) * OS may be micro kernel - only basic mechanisms * policies are decided at the user level

policy * what or when to do something * set of rules * use mechanisms by setting parameters * important choices in the design of the OS * mechanisms should be separate from policies

Mechanism vs. Policy: Examples [74]

Timer(x sec) * Policy 1: if LOW_PRIORITY Timer(0.1) else Timer(1.0) * Policy 2: if LOW_PRIORITY Timer(0.1) else Timer(0.2)

Schedule(job) * Policy 1: Schedule(I/O Job A); Schedule(CPU Job B) * Policy 2: Schedule(CPU Job A); Schedule(I/O Job B)

Preempt(job) * Policy 1: if A.running greater than 0.1 sec then Preempt(Job A) * Policy 2: if A.running greater than 0.2 sec then Preempt(Job A)

Remove_From

Ready_Q(job) * Policy 1: Remove_Ready_Q(oldest job): FCFS * Policy 2: Remove_Ready_Q(highest priority job): PRIO * Policy 3: Remove_Ready_Q(shortest job): SJF

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: An example of Process Scheduling
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between preemptive and non preemptive scheduling?

1.) in preemptive scheduling we prempt the currently executing process, in non preemptive scheduling we allow the current process to finish its CPU burst time... 2.) in preemptive scheduling the process is forcibly sent to waiting state when a process with higher priority comes to CPU, in non preeemptive scheduling the process at running state can not be forced to leave the CPU until it completes........


What is a preemptive and non preemptive algorithm and explain with example?

Preemptive scheduler reruns scheduling decision when process becomes ready. If the new process has priority over running process, the CPU preempts the running process and executes the new process. Non-preemptive scheduler only does scheduling decision when running process voluntarily gives up CPU. In effect, it allows every running process to finish its CPU burst.


Difference between preemptive and non preemptive system.with example?

Preemptive scheduling allows a process to be interrupted in the midst of its execution, taking the CPU away and allocating it to another process.Non-preemptive scheduling ensures that a process relinquishes control of the CPU only when it finishes with its current CPU burst.


What is pre-emptive multitasking?

In preemptive multitasking scheduling processes , scheduler can interrupt one running process and and allocate CUP to another process without letting the complete the task of first process. Window 95 introduced preemptive scheduling and Mac also uses this scheduling process. Bharat Rawal


What is RRscheduling?

This refers to Round Robin scheduling, a method implemented in various situations that require scheduling algorithms e.g in memory management within a CPU. If for example you have 5 processes loaded in memory, RR scheduling would allocate an even number of time quanta from the processor to each process in turn, returning back to the first process and continuing as new processes are added and old ones are completed.


What do you mean by non-preemptive shortest job first scheduling explain with an example?

Non pre-emptive means once CPU starts executing one process, it will not be taken out of the CPU until it is terminated or it has to wait for some event. In preemptive SJF scheduling, current running process is moved to the ready queue when a new process with a shorter CPU burst joins the ready queue.


What kind of process algorithm is used in mac os x?

scheduling algorithm


Definition of scheduling in operating system?

the objective of multiprograming is to have some processs running at aal time,so as to maximizing cpu utillization .this process is called scheduling.


Dynamic job shop scheduling?

dynamic job shop scheduling is the scheduling of the machine it can processes different jobs at time. it switches from one job to another job. in real time process jobs are executed based on the time.


Explain with an example first come first serve scheduling algorithm?

By far the simplest CPU-scheduling algorithm is the first-come, first-served (FCFS) scheduling algorithm. With this scheme, the process that requests the CPU first is allocated the CPU first. The implementation of the FCFS policy is easily managed with a FIFO queue. When a process enters the ready queue, its PCB is linked onto the tail of the queue. When the CPU is free, it is allocated to the process at the head of the queue. The running process is then removed from the queue. The code for FCFS scheduling is simple to write and understand. The average waiting time under the FCFS policy, however, is often quite long. Consider the following set of processes that arrive at time 0, with the length of the CPU-burst time given in milliseconds:


How do you do work scheduling?

There is work scheduling software that makes organizing meetings and conferences very easy. Business scheduling software even enables employees outside the office to conference with those there. myVRM is one example of such software.


How do you creating a scheduling poliy in unix with example?

You don't indicate what area you are asking about for scheduling - job, task, sequencing, kernel, so it is not possible to give a concise answer.