<< Chapter < Page Chapter >> Page >

The barbershop problem

The original barbershop problem was proposed by Dijkstra. A variation of it appears in Silberschatz and Galvin’s OperatingSystems Concepts. A barbershop consists of a waiting room with n chairs, and the barber room containing the barber chair. If there are no customers to be served,the barber goes to sleep. If a customer enters the barbershop and all chairs are occupied, then the customer leaves the shop. If the barber is busy, but chairsare available, then the customer sits in one of the free chairs. If the barber is asleep, the customer wakes up the barber. Write a program to coordinate thebarber and the customers.

Scheduling

Until now we have talked about processes, from now on we will talk about resources, the things operated upon by processes. Resourcesrange from cpu time to disk space to channel I/O time.

Resources fall into two classes:

  • Preemptible: processor or I/O channel. Can take resource away, use it for something else, then give it back later.
  • Non-preemptible: once given, it cannot be reused until process gives it back. Examples are file space, terminal, and maybe memory.

OS makes two related kinds of decisions about resources:

  • Allocation: who gets what. Given a set of requests for resources, which processes should be given which resources in order to make most efficientuse of the resources? Implication is that resources are not easily preemptible.
  • Scheduling: how long can they keep it. When more resources are requested than can be granted immediately, in which order should they beserviced? Examples are processor scheduling (one processor, many processes), memory scheduling in virtual memory systems. Implication is that resource ispreemptible.

Cpu scheduling

Processes may be in any one of three general scheduling states:

  • Running.
  • Ready. That is, waiting for CPU time. Scheduler and dispatcher determine transitions between this and running state.
  • Blocked. Waiting for some other event: disk I/O, message, semaphore, etc. Transitions into and out of this state are caused by variousprocesses.

There are two parts to CPU scheduling:

  • The dispatcher provides the basic mechanism for running processes.
  • The scheduler is a piece of OS code that decides the priorities of processes and how long each will run.

This is an example of policy/mechanism separation.

Goals for Scheduling Disciplines

  • Efficiency of resource utilization (keep CPU and disks busy).
  • Minimize overhead (context swaps).
  • Minimize response time. (Define response time.)
  • Distribute cycles equitably. What does this mean?

Fcfs (also called fifo)

Run until finished.

  • In the simplest case this means uniprogramming.
  • Usually, "finished" means "blocked". One process can use CPU while another waits on a semaphore. Go to back of run queue when ready.
  • Problem: one process can monopolize CPU.

Solution: limit maximum amount of time that a process can run without a context switch. This time is called a time slice.

Round robin

Run process for one time slice, then move to back of queue. Each process gets equal share of the CPU. Most systems use somevariant of this. What happens if the time slice is not chosen carefully?

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Operating systems. OpenStax CNX. Aug 13, 2009 Download for free at http://cnx.org/content/col10785/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Operating systems' conversation and receive update notifications?

Ask