CIS332 (Fall 1998) Principles of Operating Systems
Professor Franz J. Kurfess

Homework  Task  Deadline  Points  Student Name: 
CPU Scheduling Implementation Monday, Oct 19, 1998  20 

Addendum to Programming Assignment:

The name of the input file should be  'data'.
If you are using C, you may like to include the following to open an input file
with the above name :
 
            ..............
            FILE *input_file;
            input_file= fopen("data", "r");
            while(!feof(input_file)){
            ...........
            ..............
            }
            ......................

Please note that your program should be able to read input file with the name
as 'data'. If your program fails to do this, proper evaluation of your program
may not be possible and you may risk loosing many points.
Also note that you will have to send (email) only one file (include all the programs such as .h files, if you have any, in one file) preferably as an attachment.

Test your program with the numbers given in the CPU scheduling homework, and with several sets of numbers of you own choice. You need to submit your program by electronic mail to cis332fk@cis.njit.edu no later than Midnight on Monday, Oct 19, 1998. Please put "Homework 6" in the "Subject" line of the mail message.
Everybody has to submit their own implementation, no teamwork is allowed for the programming parts. We will check the submitted programs for similarities, and students submitting identical or very similar programs risk a lower grade.