Chapter 6: Synchronization Tools: Silberschatz, Galvin and Gagne ©2018 Operating System Concepts 10 Edition
Chapter 6: Synchronization Tools: Silberschatz, Galvin and Gagne ©2018 Operating System Concepts 10 Edition
Tools
Operating System Concepts – 10th Edition Silberschatz, Galvin and Gagne ©2018
Chapter 6: Synchronization Tools
Background
The Critical-Section Problem
Peterson’s Solution
Hardware Support for Synchronization
Mutex Locks
Semaphores
Liveness
Evaluation
Operating System Concepts – 10th Edition 6.2 Silberschatz, Galvin and Gagne ©2018
Objectives
Operating System Concepts – 10th Edition 6.3 Silberschatz, Galvin and Gagne ©2018
Background
Processes can execute concurrently
May be interrupted at any time, partially completing
execution
Concurrent access to shared data may result in data
inconsistency
Maintaining data consistency requires mechanisms to ensure
the orderly execution of cooperating processes
Illustration of the problem:
Suppose that we wanted to provide a solution to the
consumer-producer problem that fills all the buffers. We can
do so by having an integer counter that keeps track of the
number of full buffers. Initially, counter is set to 0. It is
incremented by the producer after it produces a new buffer
and is decremented by the consumer after it consumes a
buffer.
Operating System Concepts – 10th Edition 6.4 Silberschatz, Galvin and Gagne ©2018
Producer
while (true) {
/* produce an item in next produced */
Operating System Concepts – 10th Edition 6.5 Silberschatz, Galvin and Gagne ©2018
Consumer
while (true) {
while (counter == 0)
; /* do nothing */
next_consumed = buffer[out];
out = (out + 1) % BUFFER_SIZE;
counter--;
/* consume the item in next consumed */
}
Operating System Concepts – 10th Edition 6.6 Silberschatz, Galvin and Gagne ©2018
Race Condition
Operating System Concepts – 10th Edition 6.7 Silberschatz, Galvin and Gagne ©2018
Problem Description
Operating System Concepts – 10th Edition 6.8 Silberschatz, Galvin and Gagne ©2018
Critical Section Problem
Consider system of n processes {p0, p1, … pn-1}
Each process has critical section segment of code
Process may be changing common variables,
updating table, writing file, etc
When one process in critical section, no other may
be in its critical section
Critical section problem is to design protocol to solve
this
Each process must ask permission to enter critical
section in entry section, may follow critical section with
exit section, then remainder section
Operating System Concepts – 10th Edition 6.9 Silberschatz, Galvin and Gagne ©2018
Critical Section
Operating System Concepts – 10th Edition 6.10 Silberschatz, Galvin and Gagne ©2018
Solution to Critical-Section Problem
1. Mutual Exclusion - If process Pi is executing in its critical
section, then no other processes can be executing in their
critical sections
2. Progress - If no process is executing in its critical section and
there exist some processes that wish to enter their critical
section, then the selection of the processes that will enter the
critical section next cannot be postponed indefinitely
3. Bounded Waiting - A bound must exist on the number of
times that other processes are allowed to enter their critical
sections after a process has made a request to enter its critical
section and before that request is granted
Assume that each process executes at a nonzero speed
No assumption concerning relative speed of the n
processes
Operating System Concepts – 10th Edition 6.11 Silberschatz, Galvin and Gagne ©2018
Critical-Section Handling in OS
Two approaches depending on if kernel is preemptive or non-
preemptive
Preemptive – allows preemption of process when running
in kernel mode
Non-preemptive – runs until exits kernel mode, blocks, or
voluntarily yields CPU
Essentially free of race conditions in kernel mode
Operating System Concepts – 10th Edition 6.12 Silberschatz, Galvin and Gagne ©2018
Software Solution (Attempt 1)
The global variable turn is used to indicate the next process to enter the
critical section. The initial value of turn can be 1 or 2.
Shared
int turn = 2;
Process 1 (P1) Process 2 (P2)
Operating System Concepts – 10th Edition 6.14 Silberschatz, Galvin and Gagne ©2018
Software Solution (Attempt 2)
Shared
P2_inside=false;
P1_inside=false
Operating System Concepts – 10th Edition 6.16 Silberschatz, Galvin and Gagne ©2018
Software Solution (Attempt 3)
Shared
P1_wants_to_enter=false;
P2_wants_to_enter=false
(1)
Context switch P1_wants_to_enter is set to true
(1) P2_wants_to_enter is set to true
Context switch
Operating System Concepts – 10th Edition 6.18 Silberschatz, Galvin and Gagne ©2018
Peterson’s Solution
Not guaranteed to work on modern architectures! (But good
algorithmic description of solving the problem)
Two process solution
Assume that the load and store machine-language
instructions are atomic; that is, cannot be interrupted
The two processes share two variables:
int turn;
boolean flag[2]
Operating System Concepts – 10th Edition 6.19 Silberschatz, Galvin and Gagne ©2018
Algorithm for Process Pi
while (true){
flag[i] = true; (1)
turn = j; (2)
while (flag[j] && turn = = j) (3)
;
Operating System Concepts – 10th Edition 6.20 Silberschatz, Galvin and Gagne ©2018
Peterson’s Solution (Cont.)
Provable that the three CS requirement are met:
1. Mutual exclusion is preserved
Pi enters CS only if:
either flag[j] = false or turn = i
2. Progress requirement is satisfied
3. Bounded-waiting requirement is met
Operating System Concepts – 10th Edition 6.21 Silberschatz, Galvin and Gagne ©2018
Peterson’s Solution
Pi Pj
Comments
Flag[i] is set to true
turn is set to Pj
Pi enters the while loop
Operating System Concepts – 10th Edition 6.23 Silberschatz, Galvin and Gagne ©2018
Peterson’s Solution
Two threads share the data:
while (!flag)
;
print x
Thread 2 performs
x = 100;
flag = true
Operating System Concepts – 10th Edition 6.24 Silberschatz, Galvin and Gagne ©2018
Peterson’s Solution
100 is the expected output.
However, the operations for Thread 2 may be reordered:
flag = true;
x = 100;
If this occurs, the output may be 0!
The effects of instruction reordering in Peterson’s Solution
This allows both processes to be in their critical section at the same time!
Operating System Concepts – 10th Edition 6.25 Silberschatz, Galvin and Gagne ©2018
Synchronization Hardware
Many systems provide hardware support for implementing the
critical section code.
Uniprocessors – could disable interrupts
Currently running code would execute without preemption
Generally too inefficient on multiprocessor systems
Operating systems using this not broadly scalable
Operating System Concepts – 10th Edition 6.26 Silberschatz, Galvin and Gagne ©2018
Solution to Critical-section Problem Using Locks
while (true) {
acquire lock
critical section
release lock
remainder section
}
Operating System Concepts – 10th Edition 6.27 Silberschatz, Galvin and Gagne ©2018
Mutex Locks
OS designers build software tools to solve critical section
problem
Simplest is mutex lock
Protect a critical section by first acquire() a lock then
release() the lock
Boolean variable indicating if lock is available or not
Calls to acquire() and release() must be atomic
Atomic = non-interruptable.
Operating System Concepts – 10th Edition 6.28 Silberschatz, Galvin and Gagne ©2018
Mutex Lock Definitions
acquire() {
while (!available)
; /* busy wait */
available = false;
}
release() {
available = true;
}
Operating System Concepts – 10th Edition 6.29 Silberschatz, Galvin and Gagne ©2018
Semaphore
Synchronization tool that provides more sophisticated ways for process to
synchronize their activities.
Semaphore S – integer variable
Can only be accessed via two indivisible (atomic) operations
wait() and signal()
(Originally called P() and V())
Operating System Concepts – 10th Edition 6.30 Silberschatz, Galvin and Gagne ©2018
Semaphore Usage
Counting semaphore – integer value can range over an unrestricted
domain
Binary semaphore – integer value can range only between 0 and 1
Same as a mutex lock
Can solve various synchronization problems
Consider P1 and P2 that require S1 to happen before S2
Create a semaphore “synch” initialized to 0
P1:
S1;
signal(synch);
P2:
wait(synch);
S2;
Can implement a counting semaphore S as a binary semaphore
Operating System Concepts – 10th Edition 6.31 Silberschatz, Galvin and Gagne ©2018
Semaphore Implementation
Must guarantee that no two processes can execute the wait()
and signal() on the same semaphore at the same time
Thus, the implementation becomes the critical section problem
where the wait and signal code are placed in the critical
section
Could now have busy waiting in critical section
implementation
But implementation code is short
Little busy waiting if critical section rarely occupied
Note that applications may spend lots of time in critical sections
and therefore this is not a good solution
Operating System Concepts – 10th Edition 6.32 Silberschatz, Galvin and Gagne ©2018
Semaphore Implementation with no Busy waiting
Operating System Concepts – 10th Edition 6.33 Silberschatz, Galvin and Gagne ©2018
Implementation with no Busy waiting (Cont.)
wait(semaphore *S) {
S->value--;
if (S->value < 0) {
add this process to S->list;
block();
}
}
signal(semaphore *S) {
S->value++;
if (S->value <= 0) {
remove a process P from S->list;
wakeup(P);
}
}
Operating System Concepts – 10th Edition 6.34 Silberschatz, Galvin and Gagne ©2018
Problems with Semaphores
Operating System Concepts – 10th Edition 6.35 Silberschatz, Galvin and Gagne ©2018
Liveness
Processes may have to wait indefinitely while trying to acquire a
synchronization tool such as a mutex lock or semaphore.
Waiting indefinitely violates the progress and bounded-waiting criteria
discussed at the beginning of this chapter.
Liveness refers to a set of properties that a system must satisfy to ensure
processes make progress.
Indefinite waiting is an example of a liveness failure.
Operating System Concepts – 10th Edition 6.36 Silberschatz, Galvin and Gagne ©2018
Liveness
Deadlock – two or more processes are waiting indefinitely for an
event that can be caused by only one of the waiting processes
Let S and Q be two semaphores initialized to 1
P0 P1
wait(S); wait(Q);
wait(Q); wait(S);
... ...
signal(S); signal(Q);
signal(Q); signal(S);
Operating System Concepts – 10th Edition 6.37 Silberschatz, Galvin and Gagne ©2018
End of Chapter 6
Operating System Concepts – 10th Edition Silberschatz, Galvin and Gagne ©2018