Question: In this assignment, you will be writing a program that reads a list of process start times and durations from stdin. That list will be

In this assignment, you will be writing a program that reads a list of process start times and durations from stdin. That list will be used four times to run through the following CPU scheduling algorithms:

First Come, First Served

Shortest Job First

Shortest Remaining Time First

Round Robin

Your program will show three statistics; the average process response time, the average process wait time, and the average process turnaround time for each scheduling algorithm. The time quantum for the Round Robin scheduler is 100ms. Your program only needs to work with a maximum of 100 processes.

C Language is the preferred choice for coding

Hints:

Don't overcomplicate this assignment. Keep your process start times in one integer array, your burst times in another integer array, and then refer to those processes via other arrays.

Make four functions, one for each scheduling mechanism. Pass the input data to each function as a parameter. Do not modify your original arrays as you will be reusing the data in those arrays multiple times.

This program is simply an adder of process run times to a clock. Use the value of the clock to determine if new processes need to be added to your queue.

Some students have tried to write a program that increments the clock one tick at a time. This is the difficult way to do it and is also incorrect.

The context switch cost is negligible and is not figured into this assignment.

Output:

With this process listIn this assignment, you will be writing a program that reads a, the output of your program should look like this:

# ./assn3 First Come, First Served Avg. Resp.:276.40, Avg. T.A.:448.90, Avg. Wait:276.40 Shortest Job First Avg. Resp.:202.90, Avg. T.A.:375.40, Avg. Wait:202.90 Shortest Remaining Time First Avg. Resp.:148.30, Avg. T.A.:353.30, Avg. Wait:180.80 Round Robin with Time Quantum of 100 Avg. Resp.:133.90, Avg. T.A.:555.90, Avg. Wait:383.40

Please note that each average displayed shows a result up to two decimal places.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!