CS3530 Assignment 3
Kennesaw State University Department of Computer Science Operating Systems CS3530/01 Assignment # 3 / Scheduling Dalibor Labudovic 06/19/12013 Initial Problem Statement: Study the behavior of three OS scheduling policies FCFS, SJF and RR using the following three simulation models: batmfcfs.cpp (Batch OS with FCFS scheduling) batmsjf.cpp (Batch OS with SJF scheduling) tsmult.cpp (Time-sharing RR scheduling) Copy these files from the "/home/jgarrido/psim3" directory on the CS3 server. Compile and link the first program. Execute the program and take note of the performance metrics computed. Repeat for the other two programs. In the last part of your report include your answers to the following questions: 1. What would observable in the model with RR scheduling for a single-class system? 2. Explain how multiprogramming is made possible for these models. How is this implemented? 3. Explain the chang...