Sunteți pe pagina 1din 67

Concurrency: Mutual Exclusion

and Synchronization
Chapter 5

1
Concurrency
• Multiple applications
• Structured applications
• Operating system structure

2
Concurrency

3
Difficulties of Concurrency
• Sharing of global resources
• Operating system managing the
allocation of resources optimally
• Difficult to locate programming errors

4
Currency
• Communication among processes
• Sharing resources
• Synchronization of multiple processes
• Allocation of processor time

5
Concurrency
• Multiple applications
– Multiprogramming
• Structured application
– Application can be a set of concurrent
processes
• Operating-system structure
– Operating system is a set of processes or
threads

6
A Simple Example
void echo()
{
chin = getchar();
chout = chin;
putchar(chout);
}

7
A Simple Example
Process P1 Process P2
. .
chin = getchar(); .
. chin = getchar();
chout = chin; chout = chin;
putchar(chout); .
. putchar(chout);
. .

8
Operating System Concerns
• Keep track of various processes
• Allocate and deallocate resources
– Processor time
– Memory
– Files
– I/O devices
• Protect data and resources
• Output of process must be independent of the
speed of execution of other concurrent
processes

9
Process Interaction
• Processes unaware of each other
• Processes indirectly aware of each other
• Process directly aware of each other

10
11
Competition Among
Processes for Resources
• Mutual Exclusion
– Critical sections
• Only one program at a time is allowed in its
critical section
• Example only one process at a time is allowed
to send command to the printer
• Deadlock
• Starvation

12
Requirements for Mutual
Exclusion
• Only one process at a time is allowed in
the critical section for a resource
• A process that halts in its noncritical
section must do so without interfering
with other processes
• No deadlock or starvation

13
Requirements for Mutual
Exclusion
• A process must not be delayed access to
a critical section when there is no other
process using it
• No assumptions are made about relative
process speeds or number of processes
• A process remains inside its critical
section for a finite time only

14
Mutual Exclusion:
Hardware Support
• Interrupt Disabling
– A process runs until it invokes an operating
system service or until it is interrupted
– Disabling interrupts guarantees mutual
exclusion
– Processor is limited in its ability to
interleave programs
– Multiprocessing
• disabling interrupts on one processor will
not guarantee mutual exclusion

15
Mutual Exclusion:
Hardware Support
• Special Machine Instructions
– Performed in a single instruction cycle
– Access to the memory location is blocked
for any other instructions

16
Mutual Exclusion:
Hardware Support
• Test and Set Instruction
boolean testset (int i) {
if (i == 0) {
i = 1;
return true;
}
else {
return false;
}
}
17
Mutual Exclusion:
Hardware Support
• Exchange Instruction
void exchange(int register,
int memory) {
int temp;
temp = memory;
memory = register;
register = temp;
}
18
Mutual Exclusion

19
Mutual Exclusion Machine
Instructions
• Advantages
– Applicable to any number of processes on
either a single processor or multiple
processors sharing main memory
– It is simple and therefore easy to verify
– It can be used to support multiple critical
sections

20
Mutual Exclusion Machine
Instructions
• Disadvantages
– Busy-waiting consumes processor time
– Starvation is possible when a process leaves
a critical section and more than one process
is waiting.
– Deadlock
• If a low priority process has the critical region
and a higher priority process needs, the higher
priority process will obtain the processor to wait
for the critical region

21
Semaphores
• Special variable called a semaphore is
used for signaling
• If a process is waiting for a signal, it is
suspended until that signal is sent

22
Semaphores
• Semaphore is a variable that has an
integer value
– May be initialized to a nonnegative number
– Wait operation decrements the semaphore
value
– Signal operation increments semaphore
value

23
Semaphore Primitives

24
Binary Semaphore Primitives

25
Mutual Exclusion Using
Semaphores

26
27
28
Producer/Consumer Problem
• One or more producers are generating
data and placing these in a buffer
• A single consumer is taking items out of
the buffer one at time
• Only one producer or consumer may
access the buffer at any one time

29
Producer
producer:
while (true) {
/* produce item v */
b[in] = v;
in++;
}

30
Consumer
consumer:
while (true) {
while (in <= out)
/*do nothing */;
w = b[out];
out++;
/* consume item w */
}

31
Producer/Consumer Problem

32
Producer with Circular Buffer
producer:
while (true) {
/* produce item v */
while ((in + 1) % n == out)
/* do nothing */;
b[in] = v;
in = (in + 1) % n
}
33
Consumer with Circular
Buffer
consumer:
while (true) {
while (in == out)
/* do nothing */;
w = b[out];
out = (out + 1) % n;
/* consume item w */
}

34
35
36
37
38
39
Monitors
• Monitor is a software module
• Chief characteristics
– Local data variables are accessible only by
the monitor
– Process enters monitor by invoking one of
its procedures
– Only one process may be executing in the
monitor at a time

40
41
42
43
44
Message Passing
• Enforce mutual exclusion
• Exchange information

send (destination, message)


receive (source, message)

45
Synchronization
• Sender and receiver may or may not be
blocking (waiting for message)
• Blocking send, blocking receive
– Both sender and receiver are blocked until
message is delivered
– Called a rendezvous

46
Synchronization
• Nonblocking send, blocking receive
– Sender continues on
– Receiver is blocked until the requested
message arrives
• Nonblocking send, nonblocking receive
– Neither party is required to wait

47
Addressing
• Direct addressing
– Send primitive includes a specific identifier
of the destination process
– Receive primitive could know ahead of time
which process a message is expected
– Receive primitive could use source
parameter to return a value when the
receive operation has been performed

48
Addressing
• Indirect addressing
– Messages are sent to a shared data structure
consisting of queues
– Queues are called mailboxes
– One process sends a message to the mailbox
and the other process picks up the message
from the mailbox

49
S1

S1 P o rt R1 P o rt R1

Sn

( a ) On e t o o n e ( b ) Ma n y t o o n e

R1 S1 R1

S1 Ma ilb o x Ma ilb o x

Rn Sn Rn

( c ) On e t o m a n y ( d ) Ma n y t o m a n y

Fig u re 5 . 1 8 In d ire c t P ro c e s s Co m m u n ic a t io n
50
Message Format

51
52
53
Readers/Writers Problem
• Any number of readers may
simultaneously read the file
• Only one writer at a time may write to
the file
• If a writer is writing to the file, no reader
may read it

54
55
56
CPU SCHEDULER
CPU scheduling is a basis of
multiprogrammed OS.
By switching CPU among processes, the
OS makes the computer more productive.
In multiprogrammed OS, some process
has to keep running all the time in CPU
without keeping it idle. This will lead to
maximum CPU utilization.
• Whenever the CPU becomes idle, the
OS must select one of the processes in
the ready queue to be executed.
• The selection process is carried out by
the short-term scheduler (or CPU
scheduler).
CPU – I/O Burst Cycle
• Process execution consists of a cycle of CPU
execution and I/O wait. Processes alternate
between these two states.
• Process execution begins with a CPU burst.
That is followed by an I/O burst, then another
CPU burst, then another I/O burst, and so on.
• Eventually, the last CPU burst will end with a
system request to terminate execution, rather
than with another I/O burst.
Alternating sequence of CPU & I/O bursts
CPU scheduling decisions
• 1. When a process switches from the running state to
the waiting state
• 2. When a process switches from the running state to
the ready state
• 3. When a process switches from the waiting state to
the ready state
• 4. When a process terminates
• In the situations (1) and (4) above, there is no choice
for scheduling. A new process has to be taken from
ready queue. This is called as non-preemptive
scheduling.
• But, in the situations (2) and (3), there will be
preemptive scheduling.
Dispatcher
The dispatcher is the module that gives
control of the CPU to the processs
elected by the short-term scheduler. This
function involves:
• Switching context
• Switching to user mode
• Jumping to the proper location in the
user program to restart that program
Scheduling Criteria`
• Different scheduling algorithms have different properties to support different
types of processes. There are many criteria to compare CPU scheduling
algorithms as given below:
• CPU Utilization: CPU must be as busy as possible. CPU utilization may
range from 0% to 100%. The real time systems have CPU utilization as 40% to
90%.
• Throughput: The number of processes completed per time unit is called as
throughput.
• Turnaround time: The interval from the time of submission of a process to
the time of completion is the turnaround time. Turnaround time is the sum of the
periods spent waiting to get into memory, waiting in the ready queue, executing
on the CPU, and doing I/O.
• Waiting Time: The CPU-scheduling algorithm does not affect the amount of
time during which a process executes or does I/O; it affects only the amount of
time that a process spends waiting in the ready queue. Waiting time is the sum of
the periods spent waiting in the ready queue.
• Response Time: The time duration from the submission of a request till the
first response received is known as response time.
• The optimization criteria for CPU
scheduling will be –
• Maximum CPU utilization
• Maximum throughput
• Minimum turnaround time
• Minimum waiting time
• Minimum response time
SCHEDULING ALGORITHMS

• First Come, First Serve Scheduling


• FCFS is the simplest algorithm which is
managed by a simple FIFO queue. When
a process enters the ready queue, its PCB
is linked onto the tail of the queue.
• When the CPU is free, it is allocated to
the process at the head of the queue.
Example 1: The three processes P1 , P2 ,
and P3 arrive at a time 0 with the CPU
burst time given as below. Calculate
average waiting time and average
turnaround time.
Process Burst Time
P1 24
P2 3
P3 3
• Solution: Suppose, the processes
arrive in the order P1, P2 , P3, then
the Gantt Chart for
• the schedule is –
• P1 P2 P3
• 0 24 27 30
• We can observe that,
• Waiting time for P1 = 0
• Waiting time for P2 = 24

S-ar putea să vă placă și