Ask Computer Engineering Expert

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.

Computer Engineering, Engineering

  • Category:- Computer Engineering
  • Reference No.:- M9883710

Have any Question?


Related Questions in Computer Engineering

Does bmw have a guided missile corporate culture and

Does BMW have a guided missile corporate culture, and incubator corporate culture, a family corporate culture, or an Eiffel tower corporate culture?

Rebecca borrows 10000 at 18 compounded annually she pays

Rebecca borrows $10,000 at 18% compounded annually. She pays off the loan over a 5-year period with annual payments, starting at year 1. Each successive payment is $700 greater than the previous payment. (a) How much was ...

Jeff decides to start saving some money from this upcoming

Jeff decides to start saving some money from this upcoming month onwards. He decides to save only $500 at first, but each month he will increase the amount invested by $100. He will do it for 60 months (including the fir ...

Suppose you make 30 annual investments in a fund that pays

Suppose you make 30 annual investments in a fund that pays 6% compounded annually. If your first deposit is $7,500 and each successive deposit is 6% greater than the preceding deposit, how much will be in the fund immedi ...

Question -under what circumstances is it ethical if ever to

Question :- Under what circumstances is it ethical, if ever, to use consumer information in marketing research? Explain why you consider it ethical or unethical.

What are the differences between four types of economics

What are the differences between four types of economics evaluations and their differences with other two (budget impact analysis (BIA) and cost of illness (COI) studies)?

What type of economic system does norway have explain some

What type of economic system does Norway have? Explain some of the benefits of this system to the country and some of the drawbacks,

Among the who imf and wto which of these governmental

Among the WHO, IMF, and WTO, which of these governmental institutions do you feel has most profoundly shaped healthcare outcomes in low-income countries and why? Please support your reasons with examples and research/doc ...

A real estate developer will build two different types of

A real estate developer will build two different types of apartments in a residential area: one- bedroom apartments and two-bedroom apartments. In addition, the developer will build either a swimming pool or a tennis cou ...

Question what some of the reasons that evolutionary models

Question : What some of the reasons that evolutionary models are considered by many to be the best approach to software development. The response must be typed, single spaced, must be in times new roman font (size 12) an ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As