The highest priority eligible to run will be scheduled

Assignment Help Basic Computer Science
Reference no: EM13304387

The XINU Operating System currently implements a Pre-emptive Priority Scheduling Algorithm. It follows the idea: 'At any point in time, the highest priority eligible to run will be scheduled'. As you now know, process priority is part of the process table and this priority is used to order the processes in the ready queue. When it is time to schedule a process to run, the highest priority process from the ready queue is chosen for execution. Even though there may be other processes in the system with higher priorities than the currently running process, they may be waiting for a message, or waiting on a semaphore, and hence are not eligible to run. If an ineligible process becomes eligible, this process is placed in the ready queue according to its priority and the reschedule function is invoked. If the priority of this process is lower than that of the currently executing process, then the current process will continue to run. The XINU Scheduling algorithm is pre-emptive, which means that although the highest priority process could possibly run for a longer time, a regular clock interrupt will pre-empt the process to check if there is any new higher priority process. Note that in such a scenario, the NULLPROC runs only when there are no other process to run, as NULLPROC's priority is the lowest possible priority the system supports.
One major problem with the above scheduling algorithm is that a high priority process may never let a lower priority process run. This is called starvation. The two-level round robin scheduling algorithm is one way to solve this problem.

In the two-level round robin scheme, each process belongs to a paticualar group. As part of the periodic timer interrupt, the scheduler context switches out the existing process and picks a different process to run according to the following algorithm:

step #1: At group level, the scheduler should decide one group via round robin algorithm. It indicates each group should be chosen one after another. If one group has no process in ready queue, the scheduler just skips it.
step #2: Within the group chosed in step #1, the scheduler picks up one process, which is in ready queue, via round robin algorithm. Then this process is scheduled to run.
However, if there is only one process in ready queue, the same process is scheduled to run again. The specific variant of the two-level round robin scheme we will use is detailed below as part of the tasks.

4. What to do ?

Task 1:

Explain and code a simple main program to illustrate starvation in the existing XINU Scheduling algorithm. You need not submit the output of this code, but rather, a text document called "report.txt" with a written explanation of the method and the corresponding code, with an explaination of why your program simulates starvation.

Task 2: Implement Two-level Round Robin Scheme

As part of this task you will incorporate code to implement a a Two-level Round Robin Scheme. The following explains the scheme:

Each process is given a group name when it's created via create system call. Please adding an new argument after argument priority. The group name is a char array defined by users, which is similar as process name. And you could assume the group name is no more than 20 chars. Processes with the same group name belong to one group.
The scheduler chooses the process according to the algorithm above. And only processes in ready queue could be scheduled.
Process priority has no effect. All groups should be given equal importance and all ready processes in the same group should also be given equal importance
Newly created processes should be scheduled after all existing processes which are in the ready queue and belong to the same group.
Newly created group should be chosen after all existing groups.
When a new group or new process is created, you needn't reschedule processes immediately.
There are some default processes (main, null etc.) in XINU system. Please mark them with group name "SYSTEM PROCESS" and then they could be scheduled under our new scheduling policy.
The new algorithm should not replace the exisiting scheme. Rather, maintain a global flag as a boolean variable 'ROUND_ROBIN'. (Do not use #define) If ROUND_ROBIN = true, then the OS should follow Round Robin scheduling scheme. Else, it follows the original scheme. Note that the value of the variable will not change during run time.

Reference no: EM13304387

Questions Cloud

Accepts two int arguments and returns their sum : Assume the availability of a class named Arithmetic that provides a static method , add , that accepts two int arguments and returns their sum .
Utilizing supporting documentation obtained : Please provide a one page response to the following topic utilizing supporting documentation obtained from your textbooks and the Internet.
Decryption algorithm: reverse the encryption algorithm : Decryption algorithm: Reverse the encryption algorithm. The permutation, however, should (circular) shift the bit pattern by 1 bit to the right
An analysis of the security issues associated with batch fil : For this writing assignment you will be required to provide an analysis of the Security issues associated with batch files, Visual Basic and other forms of scripting.
The highest priority eligible to run will be scheduled : The XINU Operating System currently implements a Pre-emptive Priority Scheduling Algorithm. It follows the idea: 'At any point in time, the highest priority eligible to run will be scheduled'
Contrast, and summarize the most common procurement documen : Define, compare, contrast, and summarize the most common procurement documents used in industry.
Both the discussion and in the assignment tool : Post your response to the following questions in both the discussion and in the assignment tool. Name your assignment in the following manner: LastName_4A
Mechanism that supports process dispatching : The X25-Demodulator machine does not provide a mechanism for interrupts; any process in the X25 OS is non-preemptive. In addition, the OS does not provide a means for selecting the next job to run. Provide the design and justification for your..
The execution of the preceding two processes : Show all the possible interleaving of the execution of the preceding two processes.

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Indicate whether or not there is a carry

1 ) What is the base-10 equivalent of: 1111, a 4-bit one's complement number 4) Add the following 16-bit 2's complement numbers (represented in Hex): 78CF + FAB4 and indicate whether or not there is a carry and/or an overflow generated. Also, if n..

  Explaining database system of facebook and google

Does Facebook and Google use same database system? Facebook seems to run with the android platform using gmail address to retain information for user such as phone numbers and contacts.

  What is the numeric value of the binary representation

What is the numeric value of the binary representation 0.101101101101101101... in decimal and fraction form?

  Using a pld, develop an i/o port decoder

Using a PLD, develop an I/O port decoder that generates the following high-bank I/O strobes: 300DH, 300BH, 00B6H, and 00EEH.

  Importance of chain of custody in case of computer forensics

Explain importance of chain of custody in the case of computer forensics. You may show your viewpoint by giving examples showing that "common beliefs".

  Write a program that uses the brute-force approach

Write a program that uses the brute-force approach to count the number of inversions in the array and write a program that uses the divide-and-conquer technique to count the number of inversion in the array.

  Formulate problem as linear programming problem

Formulate the following problem as a linear programming problem and then solve the problem by Excel only. Only the Excel file which shows the problem has been solved by Solver.

  In which case there are no pricing changes

Finally, your management-side software should write to a file the status of the reservations; that is, which house is rented to whom, when, and for what price.

  Evaluate the cost of materials

Evaluate the cost of materials

  Provide injective function from to and explain why injective

Provide an injective function from ? to ? and explain why it's injective

  Code skeleton to declare a class named date

Complete the following code skeleton to declare a class named Date. The class should contain variables and functions to store and retrieve a data in the form 4/2/2012.

  What rc key value leave state vector during initialization

What RC4 key value will leave state vector, S unchanged during initialization? That is after the initial permutation of S, the entries of S will be equal to the values.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd